* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(to bottom right, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
    color: #f1f5f9;
    line-height: 1.6;
    min-height: 100vh;
}

.age-verify {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
}

.age-verify.hidden {
    display: none;
}

.verify-panel {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 3rem;
    border-radius: 18px;
    max-width: 500px;
    text-align: center;
    border: 3px solid #60a5fa;
    box-shadow: 0 25px 80px rgba(96, 165, 250, 0.4);
}

.verify-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.verify-panel h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.verify-panel p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.verify-subtext {
    color: #cbd5e1;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.verify-buttons {
    display: flex;
    gap: 1rem;
}

.verify-yes,
.verify-no {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Exo 2', sans-serif;
}

.verify-yes {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: #fff;
}

.verify-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.5);
}

.verify-no {
    background: #64748b;
    color: #f1f5f9;
}

.verify-no:hover {
    background: #94a3b8;
}

.navbar {
    background: rgba(30, 58, 138, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #3b82f6;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 100%;
    padding: 1rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.brand-logo span {
    font-family: 'Russo One', sans-serif;
    font-size: 1.8rem;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #fbbf24;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fbbf24;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hero {
    padding: 5rem 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(30, 64, 175, 0.15) 100%);
    border-bottom: 2px solid rgba(59, 130, 246, 0.4);
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 3.5rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-tags {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-tags span {
    background: rgba(59, 130, 246, 0.3);
    border: 2px solid #3b82f6;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e3a8a;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-family: 'Russo One', sans-serif;
}

.hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.content {
    max-width: 100%;
    padding: 4rem 2.5rem;
    margin: 0 auto;
}

h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.8rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about {
    background: rgba(30, 58, 138, 0.4);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.notices {
    background: linear-gradient(180deg, #1e40af 0%, #3b82f6 100%);
}

.notice-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.notice-box {
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.notice-box.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(30, 64, 175, 0.3) 100%);
    border: 2px solid #3b82f6;
}

.notice-box.gold {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(245, 158, 11, 0.3) 100%);
    border: 2px solid #fbbf24;
}

.notice-box:hover {
    transform: translateY(-8px);
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-box h3 {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 700;
}

.notice-box p {
    font-size: 1rem;
    line-height: 1.7;
}

.game-area {
    background: rgba(30, 58, 138, 0.4);
}

.game-desc {
    text-align: center;
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

.game-box {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #3b82f6;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
    margin-bottom: 2rem;
}

.game-frame {
    width: 100%;
    height: 650px;
    border: none;
}

.game-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tip {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    padding: 1.2rem;
    border-radius: 10px;
}

.perks {
    background: linear-gradient(180deg, #3b82f6 0%, #1e40af 100%);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.perk {
    background: rgba(30, 58, 138, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.perk:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(59, 130, 246, 0.3);
}

.perk-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.perk h3 {
    font-size: 1.4rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 700;
}

.perk p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.final-cta {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(30, 64, 175, 0.2) 100%);
    border-top: 2px solid #3b82f6;
}

.cta-inner {
    text-align: center;
    padding: 3rem;
    background: rgba(30, 58, 138, 0.5);
    border-radius: 20px;
    border: 2px solid #3b82f6;
}

.cta-inner h2 {
    margin-bottom: 1rem;
}

.cta-inner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-link {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: #fff;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Russo One', sans-serif;
}

.cta-link:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.5);
}

footer {
    background: rgba(30, 58, 138, 0.95);
    border-top: 3px solid #3b82f6;
    padding: 3rem 2.5rem 1.5rem;
}

.footer-content {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #fbbf24;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.4);
    color: #64748b;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 68px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(30, 58, 138, 0.98);
        padding: 2rem;
        transition: left 0.3s;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 1rem 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .nav-wrapper {
        padding: 1rem 1.5rem;
    }

    .content {
        padding: 3rem 1.5rem;
    }

    .hero {
        padding: 4rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .game-frame {
        height: 450px;
    }

    .verify-panel {
        margin: 1rem;
        padding: 2rem;
    }

    .verify-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .brand-logo span {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .verify-panel h2 {
        font-size: 1.6rem;
    }
}