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

body {
    font-family: 'Roboto', sans-serif;
    background: #0f0f0f;
    color: #f5f5f5;
    line-height: 1.6;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-gate.active {
    display: flex;
}

.gate-container {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    padding: 50px 45px;
    border-radius: 23px;
    text-align: center;
    max-width: 530px;
    box-shadow: 0 26px 72px rgba(6, 182, 212, 0.4);
}

.gate-icon {
    font-size: 66px;
    margin-bottom: 23px;
}

.gate-container h2 {
    font-size: 32px;
    margin-bottom: 19px;
    font-weight: 900;
}

.gate-container p {
    font-size: 17px;
    margin-bottom: 16px;
}

.gate-info {
    font-size: 15px;
    opacity: 0.91;
    font-style: italic;
}

.gate-controls {
    display: flex;
    gap: 21px;
    margin-top: 37px;
    justify-content: center;
}

.gate-btn {
    padding: 16px 44px;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gate-yes {
    background: #fef08a;
    color: #0891b2;
}

.gate-yes:hover {
    background: #fde047;
    transform: translateY(-3px);
    box-shadow: 0 9px 27px rgba(254, 240, 138, 0.4);
}

.gate-no {
    background: #b91c1c;
    color: white;
}

.gate-no:hover {
    background: #991b1b;
    transform: translateY(-3px);
    box-shadow: 0 9px 27px rgba(185, 28, 28, 0.4);
}

/* Navigation */
.top-nav {
    background: rgba(15, 15, 15, 0.96);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #06b6d4;
}

.nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 19px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
}

.logo-title {
    font-size: 24px;
    font-weight: 900;
    color: #22d3ee;
}

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

.burger-line {
    display: block;
    width: 28px;
    height: 3px;
    background: #22d3ee;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-burger.open .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-burger.open .burger-line:nth-child(2) {
    opacity: 0;
}

.nav-burger.open .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-item {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.current {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    transform: translateY(-2px);
}

/* Hero Area */
.hero-area {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #22d3ee 100%);
    padding: 83px 32px;
    text-align: center;
}

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.hero-title {
    font-size: 53px;
    font-weight: 900;
    margin-bottom: 21px;
    color: #ffffff;
}

.hero-lead {
    font-size: 23px;
    margin-bottom: 34px;
    opacity: 0.96;
}

.hero-pills {
    display: flex;
    gap: 21px;
    justify-content: center;
    flex-wrap: wrap;
}

.pill {
    background: rgba(254, 240, 138, 0.23);
    padding: 13px 26px;
    border-radius: 23px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #fef08a;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Notices Section */
.notices-section {
    padding: 66px 0;
}

.notices-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.notice-item {
    padding: 35px;
    border-radius: 18px;
    border: 3px solid;
    transition: all 0.3s ease;
}

.cyan-notice {
    background: rgba(6, 182, 212, 0.13);
    border-color: #06b6d4;
}

.teal-notice {
    background: rgba(8, 145, 178, 0.13);
    border-color: #0891b2;
}

.red-notice {
    background: rgba(185, 28, 28, 0.13);
    border-color: #b91c1c;
}

.notice-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.3);
}

.notice-icon {
    font-size: 51px;
    margin-bottom: 19px;
}

.notice-item h3 {
    font-size: 23px;
    margin-bottom: 16px;
    font-weight: 700;
}

.notice-item p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.93;
}

/* Featured Game */
.featured-game {
    padding: 66px 0;
    background: rgba(15, 15, 15, 0.7);
    border-radius: 23px;
}

.featured-header {
    text-align: center;
    margin-bottom: 47px;
}

.featured-title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #22d3ee;
}

.featured-subtitle {
    font-size: 18px;
    opacity: 0.88;
}

.game-container {
    max-width: 1080px;
    margin: 0 auto 37px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
}

.game-frame {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.game-info {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(6, 182, 212, 0.16);
    padding: 20px 26px;
    border-radius: 12px;
    border-left: 5px solid #22d3ee;
}

.info-emoji {
    font-size: 23px;
}

.info-content {
    font-size: 15px;
    line-height: 1.7;
}

/* Intro Section */
.intro-section {
    padding: 73px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 26px;
    color: #fef08a;
    font-weight: 900;
}

.intro-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.85;
    opacity: 0.93;
}

.intro-stats {
    display: flex;
    gap: 27px;
    margin-top: 37px;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(6, 182, 212, 0.16);
    padding: 23px 27px;
    border-radius: 13px;
    text-align: center;
    border: 2px solid #06b6d4;
}

.stat-figure {
    font-size: 39px;
    font-weight: 900;
    color: #fef08a;
    margin-bottom: 6px;
}

.stat-text {
    font-size: 14px;
    opacity: 0.91;
}

.intro-visual {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 47px rgba(6, 182, 212, 0.3);
}

/* Perks Section */
.perks-section {
    padding: 73px 0;
    background: rgba(15, 15, 15, 0.7);
    border-radius: 23px;
    text-align: center;
}

.perks-heading {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 50px;
    color: #22d3ee;
}

.perks-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 32px;
}

.perk-card {
    background: rgba(6, 182, 212, 0.13);
    padding: 35px;
    border-radius: 16px;
    border: 2px solid rgba(6, 182, 212, 0.4);
    transition: all 0.3s ease;
}

.perk-card:hover {
    transform: translateY(-6px);
    border-color: #22d3ee;
    box-shadow: 0 12px 37px rgba(34, 211, 238, 0.3);
}

.perk-symbol {
    font-size: 49px;
    margin-bottom: 20px;
}

.perk-card h3 {
    font-size: 21px;
    margin-bottom: 15px;
    color: #fef08a;
}

.perk-card p {
    font-size: 15px;
    line-height: 1.75;
    opacity: 0.92;
}

/* Play Page */
.play-header {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    padding: 70px 32px;
    text-align: center;
}

.play-heading {
    font-size: 47px;
    font-weight: 900;
    margin-bottom: 17px;
    color: #ffffff;
}

.play-text {
    font-size: 21px;
    opacity: 0.96;
}

.play-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.gameplay-section {
    padding: 50px 0 80px;
}

.gameplay-box {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
    margin-bottom: 41px;
}

.gameplay-frame {
    width: 100%;
    height: 740px;
    border: none;
    display: block;
}

.gameplay-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
}

.tip-card {
    background: rgba(6, 182, 212, 0.13);
    padding: 30px;
    border-radius: 14px;
    border: 2px solid rgba(6, 182, 212, 0.4);
}

.tip-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #22d3ee;
}

.tip-card p {
    font-size: 15px;
    line-height: 1.75;
    opacity: 0.92;
}

.alert-card {
    border-color: #b91c1c;
    background: rgba(185, 28, 28, 0.13);
}

.alert-card h3 {
    color: #b91c1c;
}

/* Document Pages */
.doc-wrapper {
    max-width: 970px;
    margin: 0 auto;
    padding: 50px 32px 83px;
}

.doc-container {
    background: rgba(15, 15, 15, 0.8);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(6, 182, 212, 0.4);
}

.doc-heading {
    font-size: 47px;
    font-weight: 900;
    margin-bottom: 17px;
    color: #22d3ee;
    text-align: center;
}

.doc-date {
    text-align: center;
    font-size: 14px;
    opacity: 0.76;
    margin-bottom: 47px;
}

.doc-content h2 {
    font-size: 30px;
    margin-top: 44px;
    margin-bottom: 20px;
    color: #fef08a;
    font-weight: 700;
}

.doc-content h2:first-child {
    margin-top: 0;
}

.doc-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: #22d3ee;
}

.doc-content p {
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.85;
    opacity: 0.93;
}

.doc-content ul {
    margin: 18px 0 18px 36px;
    opacity: 0.93;
}

.doc-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.doc-summary {
    background: rgba(254, 240, 138, 0.18);
    padding: 36px;
    border-radius: 14px;
    margin-top: 44px;
    border-left: 6px solid #fef08a;
}

.doc-summary h3 {
    color: #fef08a;
    margin-top: 0;
}

.alert-block {
    background: rgba(185, 28, 28, 0.14);
    padding: 36px;
    border-radius: 14px;
    margin-bottom: 36px;
    border-left: 6px solid #b91c1c;
}

.alert-block h2 {
    color: #b91c1c;
    margin-top: 0;
}

/* Footer */
.site-footer {
    background: #0a0a0a;
    padding: 60px 32px 26px;
    margin-top: 83px;
    border-top: 4px solid #06b6d4;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    max-width: 1320px;
    margin: 0 auto 41px;
}

.footer-block h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fef08a;
    font-weight: 700;
}

.footer-block p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.89;
}

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

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

.footer-list a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.87;
    transition: all 0.3s ease;
}

.footer-list a:hover {
    opacity: 1;
    color: #22d3ee;
    padding-left: 9px;
}

.footer-credits {
    text-align: center;
    padding-top: 36px;
    border-top: 2px solid rgba(6, 182, 212, 0.3);
}

.footer-credits p {
    font-size: 14px;
    opacity: 0.82;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background: rgba(15, 15, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
        padding: 26px 0;
        gap: 0;
    }

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

    .nav-item {
        display: block;
        margin: 12px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 19px;
    }

    .notices-row {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 460px;
    }

    .gameplay-frame {
        height: 530px;
    }

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

    .perks-layout {
        grid-template-columns: 1fr;
    }

    .doc-container {
        padding: 33px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 37px;
    }
}

@media (max-width: 480px) {
    .gate-container {
        padding: 37px 25px;
        margin: 20px;
    }

    .gate-controls {
        flex-direction: column;
    }

    .gate-btn {
        width: 100%;
    }

    .hero-title {
        font-size: 30px;
    }

    .content-wrapper,
    .play-wrapper {
        padding: 0 20px;
    }

    .doc-wrapper {
        padding: 37px 20px 66px;
    }
}