* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --background: #0f172a;
    --surface: #1e293b;
    --surface-light: #334155;
    --text: #f8fafc;
    --text-secondary: #94a3b8;
    --border: #334155;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-premium: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
    --gradient-pro: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-primary: 0 0 30px rgba(99, 102, 241, 0.3);
    --glow-secondary: 0 0 30px rgba(139, 92, 246, 0.3);
    --glow-accent: 0 0 30px rgba(245, 158, 11, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

#app {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    padding-bottom: 80px;
    background: transparent;
}

/* Screen Management */
.screen {
    display: none;
    min-height: 100vh;
    animation: fadeIn 0.3s ease;
}

.screen.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
    }
}

/* Container */
.container {
    padding: 20px;
}

/* Loading Screen */
#loading-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.loader {
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--surface-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite, glow 2s ease-in-out infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Logo Animation */
.logo-animation {
    margin-bottom: 30px;
}

.logo-icon {
    font-size: 100px;
    animation: bounce 2s infinite, pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 14px;
    color: var(--text);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15), var(--glow-primary);
    transform: translateY(-2px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    accent-color: var(--primary);
}

/* Buttons */
.btn {
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    animation: shimmer 3s ease infinite;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6), var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background: var(--surface-light);
}

.btn-large {
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

.btn-premium {
    background: var(--gradient-premium);
    color: white;
    width: 100%;
}

.btn-pro {
    background: var(--gradient-pro);
    color: white;
    width: 100%;
}

.phone-btn {
    width: 100%;
    margin-bottom: 12px;
    background: var(--surface);
    border: 2px solid var(--border);
}

/* Headers */
.app-header {
    text-align: center;
    margin-bottom: 30px;
}

.app-header h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 14px;
}

.screen-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.screen-header h1 {
    font-size: 24px;
    font-weight: 700;
}

.back-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--surface);
    border: 2px solid var(--border);
    color: var(--text);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: var(--surface-light);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    gap: 16px;
}

.menu-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: slideUp 0.5s ease forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.menu-card:hover::before {
    left: 100%;
}

.menu-card:nth-child(1) { animation-delay: 0.1s; }
.menu-card:nth-child(2) { animation-delay: 0.2s; }
.menu-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3), var(--glow-primary);
}

.card-icon {
    font-size: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.menu-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.menu-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.menu-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.step.active {
    background: var(--gradient);
    border-color: var(--primary);
    color: white;
}

.step.completed {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.step-line {
    width: 30px;
    height: 2px;
    background: var(--border);
    transition: all 0.3s ease;
}

.step-line.completed {
    background: var(--success);
}

/* Creation Steps */
.creation-step {
    display: none;
}

.creation-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.creation-step h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.creation-step p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Status Message */
.status-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    display: none;
}

.status-message.success {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    display: block;
}

.status-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
    display: block;
}

/* Template Options */
.template-options {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.template-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.template-card.selected {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.template-preview {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.template-name {
    font-weight: 600;
    color: var(--primary);
}

/* Time Options */
.time-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.hidden {
    display: none !important;
}

/* Battle Cards */
.battles-list,
.contests-list {
    display: grid;
    gap: 16px;
}

.battle-card,
.contest-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    animation: slideUp 0.5s ease forwards;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.battle-card::before,
.contest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    background-size: 200% 200%;
    animation: shimmer 3s ease infinite;
}

.battle-card:hover,
.contest-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3), var(--glow-primary);
}

.battle-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.battle-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.battle-card-channel {
    color: var(--text-secondary);
    font-size: 14px;
}

.battle-card-prize {
    background: var(--gradient-premium);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.battle-card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.battle-detail {
    font-size: 13px;
    color: var(--text-secondary);
}

.battle-detail span {
    color: var(--text);
    font-weight: 500;
}

.battle-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.participants-count {
    font-size: 14px;
    color: var(--text-secondary);
}

.time-remaining {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-secondary);
}

/* Profile Card */
.profile-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.profile-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.avatar-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--gradient);
    background-size: 200% 200%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    animation: shimmer 3s ease infinite, pulse 3s ease-in-out infinite;
    box-shadow: var(--glow-primary);
}

.premium-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: var(--gradient-premium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 3px solid var(--surface);
}

.profile-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.profile-card > p {
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.profile-id {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-6px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.3), var(--glow-primary);
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Premium Section */
.premium-section {
    margin-top: 32px;
}

.premium-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.premium-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.premium-card.pro {
    border-color: var(--secondary);
}

.premium-card.pro::before {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.premium-card.pro:hover {
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3), var(--glow-secondary);
}

.premium-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.3), var(--glow-accent);
}

.premium-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.premium-header h4 {
    font-size: 20px;
    font-weight: 700;
}

.premium-tag {
    background: var(--gradient-premium);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.premium-features {
    list-style: none;
    margin-bottom: 16px;
}

.premium-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.premium-pricing {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Tabs */
.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: var(--surface);
    padding: 6px;
    border-radius: 12px;
}

.tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background: var(--gradient);
    color: white;
}

/* Ranking List */
.ranking-list {
    display: grid;
    gap: 12px;
}

.ranking-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ranking-item:hover {
    transform: translateX(8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3), var(--glow-primary);
}

.ranking-position {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.ranking-item:hover .ranking-position {
    transform: scale(1.1);
}

.ranking-item:nth-child(1) .ranking-position {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
}

.ranking-item:nth-child(2) .ranking-position {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    color: #1a1a1a;
}

.ranking-item:nth-child(3) .ranking-position {
    background: linear-gradient(135deg, #cd7f32 0%, #daa06d 100%);
    color: #1a1a1a;
}

.ranking-info {
    flex: 1;
}

.ranking-username {
    font-weight: 600;
    margin-bottom: 4px;
}

.ranking-stats {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Battle Info Card */
.battle-info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.battle-info-card h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.battle-details {
    display: grid;
    gap: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.detail-icon {
    font-size: 20px;
}

/* Battle Rules */
.battle-rules {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.battle-rules h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.battle-rules ul {
    list-style: none;
}

.battle-rules li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--glass-border);
    display: flex;
    justify-content: space-around;
    padding: 12px 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 12px;
}

.nav-item.active {
    background: rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.nav-item.active .nav-icon {
    transform: scale(1.2);
}

.nav-icon {
    font-size: 24px;
    transition: all 0.3s ease;
}

.nav-label {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-item.active .nav-label {
    color: var(--primary);
}

/* Intro Slider */
.intro-slider {
    position: relative;
    min-height: 400px;
    margin-bottom: 24px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-content {
    text-align: center;
    padding: 40px 20px;
}

.slide-icon {
    font-size: 100px;
    margin-bottom: 28px;
    animation: float 3s ease-in-out infinite, pulse 4s ease-in-out infinite;
    filter: drop-shadow(0 8px 16px rgba(99, 102, 241, 0.4));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.slide h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    transform: scale(1.3);
    background: var(--primary);
}

.dot.active {
    background: var(--gradient);
    background-size: 200% 200%;
    animation: shimmer 2s ease infinite;
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.slider-controls {
    display: flex;
    gap: 12px;
}

.slider-controls button {
    flex: 1;
}

/* Responsive */
@media (max-width: 380px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
