* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: #0d0221;
    color: #f0f0f0;
    line-height: 1.6;
}

/* Age Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 2, 33, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.age-modal.hidden {
    display: none;
}

.age-card {
    background: linear-gradient(135deg, #1e0836 0%, #3d1a6b 100%);
    padding: 50px 40px;
    border-radius: 18px;
    max-width: 480px;
    text-align: center;
    border: 3px solid #daa520;
    box-shadow: 0 0 50px rgba(218, 165, 32, 0.4);
}

.age-star {
    font-size: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(218, 165, 32, 0.6));
}

.age-card h2 {
    color: #daa520;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 800;
}

.age-card p {
    font-size: 16px;
    margin-bottom: 14px;
    color: #d8d8d8;
}

.age-buttons {
    display: flex;
    gap: 18px;
    margin-top: 30px;
    justify-content: center;
}

.confirm-age, .deny-age {
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.confirm-age {
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    color: #0d0221;
}

.confirm-age:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 30px rgba(218, 165, 32, 0.5);
}

.deny-age {
    background: #2d2d2d;
    color: #f0f0f0;
}

.deny-age:hover {
    background: #454545;
}

/* Site Header */
.site-header {
    background: linear-gradient(135deg, #1e0836 0%, #3d1a6b 100%);
    box-shadow: 0 3px 20px rgba(218, 165, 32, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-star {
    font-size: 30px;
    filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.6));
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #daa520;
}

.site-navigation {
    display: flex;
    gap: 8px;
}

.nav-link {
    color: #f0f0f0;
    text-decoration: none;
    padding: 11px 22px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(218, 165, 32, 0.2);
    color: #daa520;
}

.nav-link.active-link {
    background: rgba(218, 165, 32, 0.3);
    color: #daa520;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu span {
    width: 28px;
    height: 3px;
    background: #daa520;
    transition: all 0.3s ease;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #2d0a59 0%, #5a1e8f 50%, #8a2db9 100%);
    padding: 90px 30px;
    text-align: center;
}

.hero-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.hero-heading {
    font-size: 56px;
    font-weight: 800;
    color: #daa520;
    margin-bottom: 22px;
    text-shadow: 0 0 35px rgba(218, 165, 32, 0.7);
}

.hero-tagline {
    font-size: 26px;
    color: #f0e68c;
    margin-bottom: 28px;
    font-weight: 600;
}

.hero-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 38px;
    color: #e8e8e8;
}

.hero-button {
    display: inline-block;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    color: #0d0221;
    padding: 16px 48px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
}

.hero-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(218, 165, 32, 0.5);
}

/* Main Wrapper */
.main-wrapper {
    padding: 0 30px;
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.content-heading {
    font-size: 42px;
    color: #daa520;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 800;
}

/* Intro Section */
.intro-paragraph {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.info-card {
    background: linear-gradient(135deg, #1e0836 0%, #3d1a6b 100%);
    padding: 38px;
    border-radius: 14px;
    border: 2px solid #daa520;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(218, 165, 32, 0.4);
}

.card-icon {
    font-size: 52px;
    margin-bottom: 22px;
}

.card-heading {
    color: #daa520;
    font-size: 23px;
    margin-bottom: 16px;
    font-weight: 700;
}

.card-description {
    font-size: 16px;
    line-height: 1.7;
}

/* Game Section */
.game-intro {
    text-align: center;
    font-size: 17px;
    margin-bottom: 35px;
    color: #c8c8c8;
}

.game-box {
    background: #000;
    padding: 28px;
    border-radius: 16px;
    border: 3px solid #daa520;
    box-shadow: 0 0 45px rgba(218, 165, 32, 0.3);
}

.game-embed {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 12px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.feature-card {
    background: linear-gradient(135deg, #1e0836 0%, #3d1a6b 100%);
    padding: 32px;
    border-radius: 14px;
    border: 1px solid #5a1e8f;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #daa520;
    transform: translateY(-6px);
}

.feature-number {
    font-size: 40px;
    font-weight: 800;
    color: #daa520;
    margin-bottom: 18px;
}

.feature-title {
    color: #daa520;
    font-size: 21px;
    margin-bottom: 14px;
    font-weight: 700;
}

.feature-text {
    font-size: 15px;
    line-height: 1.6;
}

/* Responsibility Area */
.responsibility-box {
    background: linear-gradient(135deg, #1e0836 0%, #3d1a6b 100%);
    padding: 42px;
    border-radius: 14px;
    border: 2px solid #daa520;
}

.responsibility-text {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
}

.support-buttons {
    display: flex;
    gap: 22px;
    margin-top: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.support-button {
    background: rgba(218, 165, 32, 0.2);
    color: #daa520;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid #daa520;
    font-weight: 700;
    transition: all 0.3s ease;
}

.support-button:hover {
    background: #daa520;
    color: #0d0221;
}

/* Page Title */
.page-title {
    background: linear-gradient(135deg, #2d0a59 0%, #5a1e8f 100%);
    padding: 85px 30px;
    text-align: center;
}

.page-title h1 {
    font-size: 52px;
    color: #daa520;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-title p {
    font-size: 21px;
    color: #f0e68c;
}

/* Guide Section */
.guide-box {
    background: linear-gradient(135deg, #1e0836 0%, #3d1a6b 100%);
    padding: 38px;
    border-radius: 14px;
    border: 2px solid #daa520;
}

.guide-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 26px;
}

.specs-section h3 {
    color: #daa520;
    font-size: 26px;
    margin-bottom: 22px;
    font-weight: 700;
}

.specs-items {
    list-style: none;
    padding: 0;
}

.specs-items li {
    padding: 13px 0;
    border-bottom: 1px solid rgba(218, 165, 32, 0.3);
    font-size: 15px;
}

.specs-items li:last-child {
    border-bottom: none;
}

/* Player Section */
.player-box {
    background: #000;
    padding: 28px;
    border-radius: 16px;
    border: 3px solid #daa520;
}

.player-embed {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 12px;
}

/* Notes Section */
.notes-heading {
    color: #daa520;
    font-size: 34px;
    text-align: center;
    margin-bottom: 38px;
    font-weight: 700;
}

.notes-layout {
    display: grid;
    gap: 28px;
}

.note-item {
    display: flex;
    gap: 22px;
    background: linear-gradient(135deg, #1e0836 0%, #3d1a6b 100%);
    padding: 32px;
    border-radius: 14px;
    border: 2px solid #daa520;
    align-items: flex-start;
}

.note-icon {
    font-size: 42px;
    flex-shrink: 0;
}

.note-content h4 {
    color: #daa520;
    font-size: 21px;
    margin-bottom: 10px;
    font-weight: 700;
}

.note-content p {
    font-size: 15px;
    line-height: 1.6;
}

/* Terms Section */
.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
}

.terms-block {
    background: linear-gradient(135deg, #1e0836 0%, #3d1a6b 100%);
    padding: 36px;
    border-radius: 14px;
    margin-bottom: 32px;
    border: 1px solid #5a1e8f;
}

.terms-block h2 {
    color: #daa520;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.terms-block p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.terms-block ul {
    margin-left: 32px;
    margin-bottom: 16px;
}

.terms-block li {
    margin-bottom: 11px;
    line-height: 1.6;
}

.highlight-block {
    border: 3px solid #daa520;
    box-shadow: 0 0 35px rgba(218, 165, 32, 0.3);
}

/* Site Footer */
.site-footer {
    background: linear-gradient(135deg, #1e0836 0%, #3d1a6b 100%);
    padding: 52px 30px;
    border-top: 3px solid #daa520;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-star {
    font-size: 30px;
}

.footer-text {
    font-size: 28px;
    font-weight: 800;
    color: #daa520;
}

.footer-copyright {
    color: #c8c8c8;
    margin-bottom: 28px;
}

.footer-menu {
    display: flex;
    gap: 26px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #daa520;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #f0e68c;
}

.footer-support {
    padding-top: 28px;
    border-top: 1px solid rgba(218, 165, 32, 0.3);
}

.support-label {
    color: #daa520;
    font-weight: 700;
    margin-bottom: 16px;
}

.support-list {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
}

.support-list a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-list a:hover {
    color: #daa520;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }

    .site-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #1e0836 0%, #3d1a6b 100%);
        flex-direction: column;
        padding: 22px;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .site-navigation.active {
        max-height: 420px;
    }

    .nav-link {
        display: block;
        padding: 15px;
    }

    .hero-heading {
        font-size: 40px;
    }

    .hero-tagline {
        font-size: 21px;
    }

    .content-heading {
        font-size: 34px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .game-embed {
        height: 450px;
    }

    .player-embed {
        height: 550px;
    }

    .age-card {
        margin: 22px;
        padding: 38px 28px;
    }

    .age-star {
        font-size: 68px;
    }

    .age-card h2 {
        font-size: 27px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .support-buttons {
        flex-direction: column;
    }

    .footer-menu {
        flex-direction: column;
        gap: 16px;
    }

    .support-list {
        flex-direction: column;
    }

    .hero-banner {
        padding: 72px 22px;
    }

    .page-title {
        padding: 72px 22px;
    }

    .page-title h1 {
        font-size: 40px;
    }
}
