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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    color: #1F2937;
    background: #F3F4F6;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 45px;
    height: 45px;
}

.logo-text {
    color: white;
    font-size: 1.6em;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 5px;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1.05em;
}

.nav-item:hover,
.nav-item.active {
    background: rgba(251, 191, 36, 0.2);
    color: #FBBF24;
}

/* Hero Header */
.hero-header {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    position: relative;
    padding: 100px 30px;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="rgba(251,191,36,0.3)"/><circle cx="90" cy="30" r="3" fill="rgba(251,191,36,0.2)"/><circle cx="50" cy="70" r="2.5" fill="rgba(251,191,36,0.25)"/><circle cx="30" cy="90" r="2" fill="rgba(251,191,36,0.3)"/></svg>');
    background-size: 300px 300px;
    opacity: 0.4;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(251, 191, 36, 0.25);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(251, 191, 36, 0.4);
    font-size: 1.05em;
}

/* Main Wrapper */
.main-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
}

/* Welcome Card */
.welcome-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 60px;
    border-top: 5px solid #FBBF24;
}

.section-heading {
    font-size: 2.5em;
    font-weight: 900;
    color: #1E40AF;
    margin-bottom: 30px;
}

.section-heading.centered {
    text-align: center;
}

.welcome-text {
    font-size: 1.15em;
    color: #4B5563;
    margin-bottom: 25px;
    line-height: 1.9;
}

/* Pillars Section */
.pillars-section {
    margin-bottom: 60px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.pillar-card {
    padding: 45px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.pillar-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.blue-pillar {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
}

.gold-pillar {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.indigo-pillar {
    background: linear-gradient(135deg, #4F46E5 0%, #4338CA 100%);
}

.pillar-emoji {
    font-size: 4em;
    margin-bottom: 25px;
}

.pillar-card h3 {
    font-size: 1.7em;
    font-weight: 700;
    margin-bottom: 20px;
}

.pillar-card p {
    font-size: 1.08em;
    line-height: 1.8;
    opacity: 0.96;
}

/* Game Display */
.game-display {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}

.game-display-header {
    margin-bottom: 40px;
}

.game-description {
    text-align: center;
    font-size: 1.15em;
    color: #6B7280;
    max-width: 800px;
    margin: 20px auto 0;
}

.game-embed-area {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 4px 20px rgba(0,0,0,0.06);
}

.game-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Info Cards Section */
.info-cards-section {
    margin-bottom: 60px;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 35px;
}

.info-card {
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-left: 6px solid #FBBF24;
}

.info-card-title {
    font-size: 1.8em;
    font-weight: 700;
    color: #1E40AF;
    margin-bottom: 25px;
}

.info-card p {
    font-size: 1.08em;
    color: #4B5563;
    margin-bottom: 20px;
    line-height: 1.9;
}

/* Features Showcase */
.features-showcase {
    background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
    padding: 60px 50px;
    border-radius: 25px;
    color: white;
    margin-bottom: 60px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 3em;
    flex-shrink: 0;
}

.feature-content strong {
    display: block;
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #FBBF24;
}

.feature-content p {
    font-size: 1.05em;
    opacity: 0.92;
    line-height: 1.7;
}

/* Commitment Section */
.commitment-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}

.commitment-content p {
    font-size: 1.15em;
    color: #4B5563;
    margin-bottom: 25px;
    line-height: 1.9;
}

/* Footer */
.page-footer {
    background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
    color: white;
    padding: 60px 30px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    margin-bottom: 40px;
}

.footer-heading {
    font-size: 1.4em;
    font-weight: 700;
    color: #FBBF24;
    margin-bottom: 20px;
}

.footer-text {
    color: #D1D5DB;
    margin-bottom: 15px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #E5E7EB;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05em;
}

.footer-links a:hover {
    color: #FBBF24;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
    color: #9CA3AF;
}

/* Age Verify Modal */
.age-verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

.age-verify-modal.show {
    display: flex;
}

.age-verify-card {
    background: white;
    padding: 60px 50px;
    border-radius: 25px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
    border-top: 6px solid #FBBF24;
}

.age-verify-icon {
    font-size: 6em;
    margin-bottom: 25px;
}

.age-verify-title {
    font-size: 2.3em;
    font-weight: 900;
    color: #1E40AF;
    margin-bottom: 20px;
}

.age-verify-text {
    font-size: 1.2em;
    color: #374151;
    margin-bottom: 15px;
}

.age-verify-subtext {
    font-size: 1em;
    color: #6B7280;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 35px;
}

.age-verify-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-verify-btn {
    padding: 18px 45px;
    font-size: 1.15em;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-yes {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16,185,129,0.35);
}

.btn-no {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: white;
}

.btn-no:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220,38,38,0.35);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 81px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 81px);
        background: linear-gradient(180deg, #1E3A8A 0%, #1E40AF 100%);
        flex-direction: column;
        padding: 30px 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-item {
        padding: 15px 20px;
        border-radius: 10px;
    }

    .hero-header {
        padding: 60px 25px;
    }

    .hero-title {
        font-size: 2.3em;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .main-wrapper {
        padding: 40px 20px;
    }

    .welcome-card,
    .game-display,
    .commitment-section {
        padding: 35px 25px;
    }

    .section-heading {
        font-size: 2em;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .features-showcase {
        padding: 40px 30px;
    }

    .age-verify-card {
        margin: 20px;
        padding: 40px 30px;
    }

    .age-verify-buttons {
        flex-direction: column;
    }

    .age-verify-btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .logo-text {
        font-size: 1.3em;
    }

    .hero-title {
        font-size: 1.9em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .section-heading {
        font-size: 1.7em;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}
