* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #f0f0f0;
    line-height: 1.6;
    min-height: 100vh;
}

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-modal.hidden {
    display: none;
}

.age-modal-inner {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 55px 45px;
    border-radius: 15px;
    max-width: 540px;
    width: 90%;
    text-align: center;
    border: 3px solid #ffd700;
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
}

.age-icon {
    font-size: 80px;
    margin-bottom: 25px;
}

.age-modal-inner h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 42px;
    color: #ffd700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.age-modal-inner p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #d0d0d0;
    line-height: 1.7;
}

.age-buttons {
    display: flex;
    gap: 18px;
    margin-top: 35px;
    justify-content: center;
}

.btn-enter,
.btn-exit {
    padding: 16px 38px;
    font-size: 16px;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enter {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.btn-enter:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
}

.btn-exit {
    background: linear-gradient(135deg, #555555 0%, #333333 100%);
    color: white;
}

.btn-exit:hover {
    background: linear-gradient(135deg, #666666 0%, #444444 100%);
    transform: translateY(-3px);
}

.topbar {
    background: rgba(20, 20, 20, 0.95);
    border-bottom: 3px solid #ffd700;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.main-nav {
    padding: 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 5%;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Bebas Neue', cursive;
    font-size: 34px;
    color: #ffd700;
    letter-spacing: 3px;
}

.logo-mark {
    font-size: 40px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu span {
    width: 30px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.menu-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.menu-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.menu-links a:hover,
.menu-links a.active {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

@media (max-width: 968px) {
    .mobile-menu {
        display: flex;
        z-index: 1001;
    }

    .menu-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(20, 20, 20, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding-top: 110px;
        gap: 0;
    }

    .menu-links.active {
        left: 0;
    }

    .menu-links li {
        margin: 0;
    }

    .menu-links a {
        display: block;
        padding: 28px;
        font-size: 22px;
    }
}

.hero-banner {
    padding: 110px 5%;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(45, 45, 45, 0.1) 100%);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.hero-inner h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 64px;
    color: #ffd700;
    margin-bottom: 28px;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.hero-desc {
    font-size: 21px;
    color: #d8d8d8;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-badge {
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid #ffd700;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.warnings {
    padding: 85px 5%;
    background: rgba(45, 45, 45, 0.5);
}

.warnings-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.warnings-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    color: #ffd700;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.warning-item {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #ffd700;
    transition: all 0.3s ease;
}

.warning-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.warning-icon {
    font-size: 56px;
    margin-bottom: 18px;
}

.warning-item h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    color: #ffd700;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.warning-item p {
    font-size: 16px;
    color: #d0d0d0;
    line-height: 1.7;
}

.featured {
    padding: 85px 5%;
    background: rgba(26, 26, 26, 0.8);
}

.featured-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.section-heading {
    font-family: 'Bebas Neue', cursive;
    font-size: 52px;
    color: #ffd700;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 19px;
    color: #d0d0d0;
    text-align: center;
    margin-bottom: 50px;
}

.game-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 38px;
    align-items: start;
}

.game-screen {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #ffd700;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

.game-screen iframe {
    width: 100%;
    height: 600px;
    display: block;
}

.game-sidebar {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 38px;
    border-radius: 12px;
    border: 2px solid #ffd700;
}

.game-sidebar h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 30px;
    color: #ffd700;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.game-sidebar p {
    font-size: 16px;
    color: #d0d0d0;
    margin-bottom: 24px;
    line-height: 1.7;
}

.game-attributes {
    list-style: none;
    margin: 24px 0;
}

.game-attributes li {
    font-size: 15px;
    color: #d0d0d0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.game-attributes span {
    color: #ffd700;
    font-weight: 700;
    margin-right: 8px;
}

.game-link {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Bebas Neue', cursive;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 18px;
}

.game-link:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.about {
    padding: 85px 5%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(45, 45, 45, 0.08) 100%);
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.about-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 38px;
    margin-top: 50px;
}

.about-col {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 38px;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.about-col h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    color: #ffd700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.about-col p {
    font-size: 16px;
    color: #d0d0d0;
    margin-bottom: 14px;
    line-height: 1.8;
}

.numbers {
    padding: 95px 5%;
    text-align: center;
    background: rgba(26, 26, 26, 0.8);
}

.numbers-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.numbers-display {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.number-card {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 48px 58px;
    border-radius: 12px;
    border: 2px solid #ffd700;
    transition: all 0.3s ease;
}

.number-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.number {
    font-family: 'Bebas Neue', cursive;
    font-size: 58px;
    color: #ffd700;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.number-label {
    font-size: 17px;
    color: #d0d0d0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.values {
    padding: 85px 5%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(45, 45, 45, 0.08) 100%);
}

.values-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.values-intro {
    font-size: 18px;
    color: #d0d0d0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-card {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 36px;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.value-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 40px;
    color: #ffd700;
    display: block;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.value-card h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.value-card p {
    font-size: 15px;
    color: #d0d0d0;
    line-height: 1.7;
}

.site-footer {
    background: rgba(20, 20, 20, 0.95);
    border-top: 3px solid #ffd700;
    padding: 65px 5% 32px;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 45px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 26px;
    color: #ffd700;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 15px;
    color: #d0d0d0;
    margin-bottom: 18px;
    line-height: 1.7;
}

.footer-links,
.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-menu a {
    color: #ffd700;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-menu a:hover {
    color: #ffed4e;
    padding-left: 8px;
}

.footer-base {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.footer-base p {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.footer-tagline {
    font-weight: 700;
    color: #ffd700;
}

.play-main .play-top {
    padding: 85px 5%;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(45, 45, 45, 0.1) 100%);
}

.play-top-wrapper h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 52px;
    color: #ffd700;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.play-top-wrapper p {
    font-size: 19px;
    color: #d0d0d0;
    max-width: 850px;
    margin: 0 auto;
}

.play-game {
    padding: 65px 5%;
    background: rgba(26, 26, 26, 0.8);
}

.play-game-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.game-container {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #ffd700;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

.game-container iframe {
    width: 100%;
    height: 700px;
    display: block;
}

.play-guide {
    padding: 65px 5%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(45, 45, 45, 0.08) 100%);
}

.play-guide-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.guide-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.guide-section {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 38px;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.guide-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 26px;
    color: #ffd700;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.guide-section ul {
    list-style: none;
}

.guide-section li {
    font-size: 15px;
    color: #d0d0d0;
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
}

.guide-section li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 14px;
}

.play-alert {
    padding: 65px 5%;
    background: rgba(26, 26, 26, 0.8);
}

.play-alert-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.alert-bar {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 42px;
    border-radius: 12px;
    border: 2px solid #ffd700;
    display: flex;
    gap: 28px;
    align-items: center;
}

.alert-symbol {
    font-size: 60px;
    flex-shrink: 0;
}

.alert-message h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 26px;
    color: #ffd700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.alert-message p {
    font-size: 16px;
    color: #d0d0d0;
    line-height: 1.7;
}

.legal-main {
    padding: 65px 5%;
    background: rgba(26, 26, 26, 0.8);
}

.legal-doc {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 60px;
    border-radius: 12px;
    border: 2px solid #ffd700;
}

.legal-doc h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 52px;
    color: #ffd700;
    margin-bottom: 18px;
    text-align: center;
    letter-spacing: 2px;
}

.legal-updated {
    text-align: center;
    font-size: 16px;
    color: #888;
    margin-bottom: 50px;
    font-style: italic;
}

.legal-sec {
    margin-bottom: 38px;
}

.legal-sec h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 30px;
    color: #ffd700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
}

.legal-sec p {
    font-size: 16px;
    color: #d0d0d0;
    margin-bottom: 14px;
    line-height: 1.8;
}

.legal-emphasis {
    background: rgba(255, 215, 0, 0.1);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid #ffd700;
    margin-top: 40px;
}

.key-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.key-box {
    background: rgba(20, 20, 20, 0.6);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    font-size: 15px;
    color: #d0d0d0;
}

.key-box strong {
    color: #ffd700;
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

@media (max-width: 1200px) {
    .game-layout {
        grid-template-columns: 1fr;
    }

    .game-screen iframe {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-inner h1,
    .section-heading,
    .play-top-wrapper h1,
    .legal-doc h1 {
        font-size: 38px;
    }

    .hero-desc,
    .section-subtitle,
    .play-top-wrapper p {
        font-size: 17px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .warning-grid,
    .about-columns,
    .guide-sections {
        grid-template-columns: 1fr;
    }

    .numbers-display {
        flex-direction: column;
    }

    .game-container iframe {
        height: 400px;
    }

    .alert-bar {
        flex-direction: column;
        text-align: center;
    }

    .legal-doc {
        padding: 40px 26px;
    }

    .legal-sec h2 {
        font-size: 24px;
    }

    .age-modal-inner {
        padding: 40px 30px;
    }

    .age-modal-inner h2 {
        font-size: 32px;
    }

    .age-buttons {
        flex-direction: column;
    }
}
