/* ====================================
   CASINO STRATEGY - EDUCATIONAL DESIGN
   Яркий, современный, образовательный дизайн
   ==================================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Vibrant Color Scheme - Фиолетовые и оранжевые тона */
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: #A78BFA;
    --secondary: #F97316;
    --accent: #06B6D4;
    --dark: #18181B;
    --dark-light: #27272A;
    --text: #FAFAFA;
    --text-muted: #A1A1AA;
    --bg: #09090B;
    --bg-card: #18181B;
    --bg-purple: #1E1B2E;
    --white: #FFFFFF;
    --success: #22C55E;
    --warning: #EAB308;
    --danger: #EF4444;
    --border: #3F3F46;
    
    /* Gradients - яркие */
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --gradient-secondary: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    --gradient-accent: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
    
    /* Shadows - яркие с цветом */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.2);
    --shadow-lg: 0 10px 20px rgba(139, 92, 246, 0.3);
    --shadow-xl: 0 20px 40px rgba(139, 92, 246, 0.4);
    
    /* Border Radius - большие */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent horizontal scroll on mobile */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* === HEADER - Яркий === */
.header {
    background: rgba(24, 24, 27, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid transparent;
    border-image: var(--gradient-primary) 1;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover::before {
    transform: scaleX(1);
}

.logo-img {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.logo-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation - Яркая */
.nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

/* === HERO - Мощный === */
.hero {
    background: linear-gradient(135deg, #1E1B2E 0%, #09090B 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 80px rgba(139, 92, 246, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* === STATS - Яркие === */
.stats-section {
    background: var(--bg-purple);
    padding: 4rem 0;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--primary);
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* === SECTIONS === */
.section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* === CASINO CARDS - Яркие === */
.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.casino-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.casino-card:hover::before {
    opacity: 0.1;
}

.casino-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--shadow-xl);
}

.casino-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.casino-logo {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #27272A 0%, #18181B 100%);
    border-bottom: 2px solid var(--border);
    font-size: 5rem;
    position: relative;
}

.casino-logo img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 5px 20px rgba(139, 92, 246, 0.3));
}

.casino-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.casino-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--white);
    line-height: 1.2;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.star {
    color: #FBBF24;
    font-size: 1rem;
    filter: drop-shadow(0 2px 5px rgba(251, 191, 36, 0.5));
    line-height: 1;
}

.star-empty {
    opacity: 0.3;
}

.rating-number {
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1rem;
    margin-left: 0.25rem;
    white-space: nowrap;
}

.casino-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    font-size: 0.95rem;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: rgba(139, 92, 246, 0.15);
    color: var(--primary);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: var(--transition);
}

.feature-tag:hover {
    background: rgba(139, 92, 246, 0.25);
    transform: scale(1.05);
}

/* === BUTTONS - Яркие === */
.casino-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.btn {
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    flex: 1;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    flex: 1;
}

.btn-secondary:hover {
    background: var(--gradient-secondary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px) scale(1.05);
}

/* === FOOTER - Яркий === */
.footer {
    background: var(--dark-light);
    border-top: 2px solid transparent;
    border-image: var(--gradient-primary) 1;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-text {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.footer-copyright,
.footer-disclaimer {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.age-restriction {
    display: inline-block;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 800;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .casinos-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .hero {
        padding: 5rem 0;
    }
    
    .section {
        padding: 5rem 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Header */
    .header {
        padding: 1rem 0;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-img {
        width: 38px;
        height: 38px;
    }
    
    /* Hero */
    .hero {
        padding: 3.5rem 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }
    
    /* Stats */
    .stats-section {
        padding: 2.5rem 0;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
    
    /* Sections */
    .section {
        padding: 3.5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
        padding: 0 0.5rem;
        margin-bottom: 3rem;
    }
    
    .section-header-center {
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .section-title-gradient {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-desc {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Casino Cards */
    .casinos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .casino-card {
        border-radius: var(--radius-lg);
        max-width: 100%;
    }
    
    .casino-card:hover {
        transform: translateY(-5px) rotate(0deg);
    }
    
    .casino-badge {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.3rem 0.7rem;
        font-size: 0.7rem;
        border-radius: 15px;
    }
    
    .casino-logo {
        height: 120px;
    }
    
    .casino-logo img {
        max-width: 65%;
        max-height: 65%;
    }
    
    .casino-body {
        padding: 1.25rem;
    }
    
    .casino-name {
        font-size: 1.15rem;
        margin-bottom: 0.65rem;
        line-height: 1.3;
    }
    
    .casino-rating {
        gap: 0.35rem;
        margin-bottom: 0.65rem;
        flex-wrap: nowrap;
    }
    
    .star {
        font-size: 0.85rem;
        line-height: 1;
    }
    
    .rating-number {
        font-size: 0.95rem;
        margin-left: 0.2rem;
        flex-shrink: 0;
    }
    
    .casino-features {
        gap: 0.4rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-tag {
        padding: 0.3rem 0.65rem;
        font-size: 0.7rem;
        border-radius: 15px;
    }
    
    .casino-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .casino-actions {
        flex-direction: column;
        gap: 0.65rem;
    }
    
    .btn {
        padding: 0.75rem 1.15rem;
        font-size: 0.85rem;
        letter-spacing: 0.3px;
        width: 100%;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: translateY(-2px) scale(1.02);
    }
    
    /* Section with casinos */
    section[style*="padding: 4rem"] {
        padding: 3rem 0 !important;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
        margin-top: 4rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-text,
    .footer-links a {
        font-size: 0.95rem;
    }
    
    .footer-socials {
        gap: 0.85rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .social-link:hover {
        transform: translateY(-3px) rotate(0deg);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 0.85rem;
    }
    
    .header {
        padding: 0.85rem 0;
    }
    
    .logo {
        font-size: 1.15rem;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    .hero {
        padding: 2.5rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .stat-item {
        padding: 1.25rem;
        border-radius: var(--radius-md);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .section-header-center {
        margin-bottom: 2rem;
        padding: 0 0.25rem;
    }
    
    .section-title-gradient {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-desc {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .casinos-grid {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .casino-card {
        margin: 0;
    }
    
    .casino-badge {
        top: 0.65rem;
        right: 0.65rem;
        padding: 0.25rem 0.6rem;
        font-size: 0.65rem;
        border-radius: 12px;
    }
    
    .casino-logo {
        height: 100px;
        font-size: 3.5rem;
    }
    
    .casino-logo img {
        max-width: 60%;
        max-height: 60%;
    }
    
    .casino-body {
        padding: 1rem;
    }
    
    .casino-name {
        font-size: 1.05rem;
        margin-bottom: 0.6rem;
    }
    
    .casino-rating {
        gap: 0.3rem;
        margin-bottom: 0.6rem;
        flex-wrap: nowrap;
    }
    
    .star {
        font-size: 0.75rem;
        line-height: 1;
    }
    
    .rating-number {
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    
    .casino-features {
        gap: 0.35rem;
        margin-bottom: 0.65rem;
    }
    
    .feature-tag {
        padding: 0.25rem 0.55rem;
        font-size: 0.65rem;
        border-radius: 12px;
    }
    
    .casino-description {
        font-size: 0.825rem;
        line-height: 1.5;
        margin-bottom: 0.85rem;
    }
    
    .casino-actions {
        gap: 0.6rem;
    }
    
    .btn {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
        letter-spacing: 0.2px;
    }
    
    /* Section with casinos */
    section[style*="padding: 4rem"] {
        padding: 2.5rem 0 !important;
    }
    
    .btn-timeline {
        padding: 0.85rem 1.75rem;
        font-size: 0.875rem;
    }
    
    .footer {
        padding: 2.5rem 0 1.25rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-title {
        font-size: 1.05rem;
    }
    
    .footer-text,
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
    }
    
    .footer-copyright,
    .footer-disclaimer {
        font-size: 0.85rem;
    }
    
    .age-restriction {
        padding: 0.5rem 1rem;
        font-size: 1rem;
        border-radius: 20px;
    }
    
    /* Mobile Menu Button */
    .mobile-menu-btn {
        gap: 5px;
    }
    
    .mobile-menu-btn span {
        width: 26px;
        height: 2.5px;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--dark-light);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 2px solid var(--border);
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), padding 0.4s ease;
}

.mobile-menu.active {
    display: block;
    max-height: 600px;
    padding: 2rem 1.5rem;
}

.mobile-menu-list {
    list-style: none;
}

.mobile-menu-list li {
    padding: 1.2rem;
    border-bottom: 1px solid var(--border);
    transform: translateX(-100%) rotate(-5deg);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.mobile-menu.active .mobile-menu-list li {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
}

.mobile-menu.active .mobile-menu-list li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-list li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-list li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-list li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-list li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu-list li:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu-list li:last-child {
    border-bottom: none;
}

.mobile-menu-list a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    transition: var(--transition);
    position: relative;
    padding-left: 1.5rem;
}

.mobile-menu-list a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary);
    transform: translateX(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-list a:hover {
    color: var(--primary);
    transform: translateX(10px);
}

.mobile-menu-list a:hover::before {
    transform: translateX(0);
    opacity: 1;
}

/* Анимации */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bounce-in {
    animation: bounceIn 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:active {
        transform: scale(0.95);
    }
    
    .casino-card:active {
        transform: scale(0.98);
    }
    
    .game-card-modern:active {
        transform: scale(0.98);
    }
    
    .nav-link:hover::before,
    .nav-link::before {
        display: none;
    }
    
    /* Disable hover effects on touch devices */
    .casino-card:hover::before,
    .game-card-modern:hover::before {
        display: none;
    }
}

/* ===================================
   NEW DYNAMIC EDUCATIONAL LAYOUT
   =================================== */

/* Hero Dynamic - Centered with Animation */
.hero-dynamic {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1E1B2E 0%, #09090B 50%, #1A1625 100%);
}

.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    animation: floating 20s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-center {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(139, 92, 246, 0.15);
    border: 2px solid rgba(139, 92, 246, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

.hero-title-xl {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
}

.text-gradient-purple {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle-large {
    font-size: 1.35rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--border);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-stats-inline {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-inline {
    text-align: center;
}

.stat-inline strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-inline span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Game Selection - Modern Cards */
.game-selection {
    padding: 6rem 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-gradient {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.games-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.game-card-modern {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.game-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.game-card-modern:hover::before {
    transform: scaleX(1);
}

.game-card-modern:hover {
    transform: translateY(-10px) rotate(2deg);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.game-card-header {
    padding: 2.5rem 2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.game-icon-large {
    font-size: 5rem;
    filter: drop-shadow(0 5px 15px rgba(139, 92, 246, 0.4));
}

.difficulty-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.difficulty-badge.easy {
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
}

.difficulty-badge.medium {
    background: rgba(251, 191, 36, 0.2);
    color: var(--warning);
}

.difficulty-badge.hard {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger);
}

.game-card-body {
    padding: 0 2rem 2rem;
}

.game-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.game-desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.game-stats-mini {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.mini-stat i {
    color: var(--primary);
}

.game-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topic-pill {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--primary);
    padding: 0.4rem 0.9rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.game-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient-primary);
    color: white;
    padding: 1.25rem 2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
}

.game-card-link:hover {
    background: var(--gradient-secondary);
}

/* Timeline for Strategies */
.strategies-timeline {
    padding: 6rem 0;
    background: var(--dark-light);
}

.timeline-wrapper {
    max-width: 900px;
    margin: 3rem auto;
    position: relative;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.5);
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.timeline-badge {
    background: rgba(139, 92, 246, 0.15);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.timeline-level {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.timeline-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.timeline-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.timeline-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.timeline-link:hover {
    color: var(--primary-light);
}

.timeline-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-timeline {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.btn-timeline:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

/* Learning Path Section */
.learning-path-section {
    padding: 6rem 0;
}

.learning-path-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.learning-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    color: var(--secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.learning-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.learning-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.learning-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.learning-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-muted);
}

.btn-learning {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-secondary);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.btn-learning:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.6);
}

.learning-path-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.visual-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.visual-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px) rotate(2deg);
}

.visual-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.visual-card h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.visual-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Bankroll CTA Banner */
.bankroll-cta {
    padding: 6rem 0;
    background: var(--dark-light);
}

.bankroll-banner {
    position: relative;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 4rem;
    text-align: center;
    overflow: hidden;
}

.bankroll-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.1) 10px,
        rgba(255,255,255,0.1) 20px
    );
}

.bankroll-content {
    position: relative;
    z-index: 1;
}

.bankroll-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.bankroll-banner h2 {
    color: white;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.bankroll-banner p {
    color: rgba(255,255,255,0.95);
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.btn-bankroll {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-bankroll:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Warning Section */
.warning-section {
    padding: 4rem 0;
}

.warning-box {
    background: var(--bg-card);
    border: 3px solid var(--warning);
    border-radius: var(--radius-xl);
    padding: 3rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.warning-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.warning-content h3 {
    color: var(--warning);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.warning-content p {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.warning-footer {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.age-badge {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.warning-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.warning-link:hover {
    color: var(--primary-light);
}

/* Responsive for new layouts */
@media (max-width: 1024px) {
    .learning-path-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .games-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .hero-dynamic {
        padding: 5rem 0;
    }
    
    .bankroll-banner {
        padding: 3rem 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Hero Dynamic */
    .hero-dynamic {
        padding: 3.5rem 0;
    }
    
    .hero-badge-large {
        font-size: 0.9rem;
        padding: 0.65rem 1.25rem;
    }
    
    .hero-title-xl {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle-large {
        font-size: 1.15rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats-inline {
        gap: 2rem;
    }
    
    .stat-inline strong {
        font-size: 1.75rem;
    }
    
    .stat-inline span {
        font-size: 0.9rem;
    }
    
    /* Game Selection */
    .game-selection {
        padding: 4rem 0;
    }
    
    .section-header-center {
        margin-bottom: 3rem;
    }
    
    .section-title-gradient {
        font-size: 2.25rem;
    }
    
    .section-desc {
        font-size: 1.05rem;
    }
    
    .games-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .game-card-modern:hover {
        transform: translateY(-5px) rotate(0deg);
    }
    
    .game-card-header {
        padding: 2rem 1.5rem 1.25rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .game-icon-large {
        font-size: 4rem;
    }
    
    .difficulty-badge {
        padding: 0.35rem 0.9rem;
        font-size: 0.75rem;
    }
    
    .game-card-body {
        padding: 0 1.5rem 1.5rem;
    }
    
    .game-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .game-desc {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .game-stats-mini {
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .mini-stat {
        font-size: 0.85rem;
    }
    
    .game-topics {
        justify-content: center;
    }
    
    .topic-pill {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }
    
    .game-card-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Timeline */
    .strategies-timeline {
        padding: 4rem 0;
    }
    
    .timeline-wrapper {
        margin: 2.5rem auto;
    }
    
    .timeline-wrapper::before {
        left: 15px;
    }
    
    .timeline-item {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .timeline-marker {
        width: 45px;
        height: 45px;
        font-size: 1.15rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content:hover {
        transform: translateX(5px);
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .timeline-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.85rem;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
    
    .timeline-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .timeline-meta {
        font-size: 0.85rem;
    }
    
    .btn-timeline {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    /* Learning Path */
    .learning-path-section {
        padding: 4rem 0;
    }
    
    .learning-badge {
        font-size: 0.85rem;
        padding: 0.45rem 1rem;
    }
    
    .learning-title {
        font-size: 2.25rem;
    }
    
    .learning-desc {
        font-size: 1.05rem;
    }
    
    .learning-steps {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .btn-learning {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .learning-path-visual {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .visual-card {
        padding: 1.75rem;
    }
    
    .visual-icon {
        font-size: 2.75rem;
    }
    
    .visual-card h4 {
        font-size: 1.05rem;
    }
    
    /* Bankroll CTA */
    .bankroll-cta {
        padding: 4rem 0;
    }
    
    .bankroll-banner {
        padding: 3rem 2rem;
    }
    
    .bankroll-icon {
        font-size: 4rem;
        margin-bottom: 1.25rem;
    }
    
    .bankroll-banner h2 {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
    
    .bankroll-banner p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .btn-bankroll {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    /* Warning Section */
    .warning-section {
        padding: 3rem 0;
    }
    
    .warning-box {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
        gap: 1.5rem;
    }
    
    .warning-icon {
        font-size: 3.5rem;
    }
    
    .warning-content h3 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .warning-content p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .warning-footer {
        flex-direction: column;
        justify-content: center;
        gap: 1.25rem;
    }
    
    .age-badge {
        font-size: 1.1rem;
        padding: 0.65rem 1.35rem;
    }
}

@media (max-width: 480px) {
    .hero-badge-large {
        font-size: 0.85rem;
        padding: 0.6rem 1.1rem;
    }
    
    .hero-title-xl {
        font-size: 2rem;
    }
    
    .hero-subtitle-large {
        font-size: 1.05rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .hero-stats-inline {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .stat-inline strong {
        font-size: 1.5rem;
    }
    
    .section-title-gradient {
        font-size: 2rem;
    }
    
    .section-desc {
        font-size: 1rem;
    }
    
    .game-icon-large {
        font-size: 3.5rem;
    }
    
    .game-title {
        font-size: 1.6rem;
    }
    
    .timeline-wrapper::before {
        left: 12px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1.25rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .learning-title {
        font-size: 2rem;
    }
    
    .learning-desc {
        font-size: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .visual-card {
        padding: 1.5rem;
    }
    
    .visual-icon {
        font-size: 2.5rem;
    }
    
    .bankroll-banner {
        padding: 2.5rem 1.5rem;
    }
    
    .bankroll-icon {
        font-size: 3.5rem;
    }
    
    .bankroll-banner h2 {
        font-size: 2rem;
    }
    
    .bankroll-banner p {
        font-size: 1.05rem;
    }
    
    .btn-bankroll,
    .btn-learning,
    .btn-timeline {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .warning-box {
        padding: 2rem;
    }
    
    .warning-icon {
        font-size: 3rem;
    }
    
    .warning-content h3 {
        font-size: 1.6rem;
    }
    
    .warning-content p {
        font-size: 0.95rem;
    }
    
    .age-badge {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
}
