* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0d0d0d;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.age-gate.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gate-content {
    text-align: center;
    max-width: 550px;
    padding: 60px 50px;
    border: 2px solid #ff3333;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.gate-logo {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ff3333;
    letter-spacing: 3px;
}

.gate-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}

.gate-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #aaa;
}

.gate-notice {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

.gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.gate-btn {
    padding: 16px 45px;
    font-size: 17px;
    font-weight: 700;
    border: 2px solid #ff3333;
    background: transparent;
    color: #ff3333;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.gate-btn.enter:hover {
    background: #ff3333;
    color: #000;
}

.gate-btn.exit:hover {
    border-color: #666;
    color: #666;
}

/* Top Bar */
.topbar {
    background: #000;
    border-bottom: 2px solid #ff3333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.topbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-symbol {
    font-size: 34px;
}

.logo-name {
    font-size: 32px;
    font-weight: 700;
    color: #ff3333;
    letter-spacing: 2px;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: 2px solid #ff3333;
    padding: 10px;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: #ff3333;
    transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.main-nav {
    display: flex;
    gap: 45px;
}

.nav-link {
    color: #999;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ff3333;
}

/* Hero Area */
.hero-area {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    opacity: 0.95;
}

.hero-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.hero-inner {
    max-width: 900px;
}

.hero-heading {
    font-size: 80px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.hero-subheading {
    font-size: 28px;
    color: #ff3333;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-line {
    width: 120px;
    height: 3px;
    background: #ff3333;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 20px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 60px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 48px;
    font-weight: 700;
    color: #ff3333;
    line-height: 1;
}

.stat-text {
    font-size: 16px;
    color: #777;
    margin-top: 8px;
    letter-spacing: 1px;
}

/* Critical Info */
.critical-info {
    padding: 80px 0;
    background: #000;
}

.info-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.info-heading {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 2px;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.info-box {
    background: #1a1a1a;
    padding: 40px 35px;
    border-left: 4px solid #ff3333;
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateX(10px);
}

.box-label {
    font-size: 18px;
    color: #ff3333;
    font-weight: 700;
    margin-bottom: 20px;
}

.info-box h3 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.info-box p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.8;
}

/* Platform Info */
.platform-info {
    padding: 80px 0;
}

.platform-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: 2px;
}

.content-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.text-block {
    font-size: 18px;
    color: #aaa;
    line-height: 1.9;
    margin-bottom: 25px;
}

.feature-list {
    background: #1a1a1a;
    padding: 40px 35px;
    border-left: 4px solid #ff3333;
}

.feature-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #2a2a2a;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-mark {
    color: #ff3333;
    font-size: 20px;
    font-weight: 700;
}

.feature-text {
    font-size: 17px;
    color: #ccc;
}

/* Game Showcase */
.game-showcase {
    padding: 80px 0;
    background: #000;
}

.showcase-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.showcase-subtitle {
    text-align: center;
    font-size: 18px;
    color: #777;
    margin-bottom: 50px;
}

.game-container {
    background: #1a1a1a;
    padding: 20px;
    border: 2px solid #ff3333;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    background: #000;
}

.game-tech-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    color: #777;
    font-weight: 600;
    font-size: 15px;
}

/* Value Props */
.value-props {
    padding: 80px 0;
}

.props-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.prop-card {
    background: #1a1a1a;
    padding: 40px 35px;
    border-bottom: 3px solid #ff3333;
    transition: all 0.3s ease;
}

.prop-card:hover {
    transform: translateY(-5px);
    background: #222;
}

.prop-num {
    font-size: 24px;
    color: #ff3333;
    font-weight: 700;
    margin-bottom: 15px;
}

.prop-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.prop-card p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.7;
}

/* Page Header */
.page-header {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    text-align: center;
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-title {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.page-desc {
    font-size: 20px;
    color: #aaa;
    max-width: 800px;
    margin: 0 auto;
}

/* Guidelines */
.guidelines {
    padding: 60px 0;
}

.guidelines-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.guideline-box {
    background: #1a1a1a;
    padding: 40px 35px;
    border-left: 4px solid #ff3333;
}

.guideline-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ff3333;
    margin-bottom: 25px;
}

.guideline-box ul {
    list-style: none;
    padding: 0;
}

.guideline-box li {
    padding: 12px 0;
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid #2a2a2a;
}

.guideline-box li:last-child {
    border-bottom: none;
}

/* Legal Page */
.legal-page {
    background: #0d0d0d;
    padding: 70px 0;
    min-height: calc(100vh - 200px);
}

.legal-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.legal-title {
    font-size: 56px;
    font-weight: 700;
    color: #ff3333;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.legal-date {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}

.legal-content {
    background: #1a1a1a;
    padding: 50px 45px;
}

.legal-item {
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 1px solid #2a2a2a;
}

.legal-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-item h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.legal-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ccc;
    margin: 25px 0 15px;
}

.legal-item p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.9;
    margin-bottom: 15px;
}

.legal-item ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-item li {
    margin-bottom: 12px;
    color: #aaa;
    line-height: 1.8;
}

.legal-item.alert {
    background: rgba(255, 51, 51, 0.1);
    padding: 35px;
    border-left: 4px solid #ff3333;
    border-bottom: none;
}

.legal-item.alert h2 {
    color: #ff3333;
}

/* Footer */
.main-footer {
    background: #000;
    border-top: 2px solid #ff3333;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ff3333;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff3333;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
    color: #666;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .menu-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        background: #000;
        flex-direction: column;
        padding: 40px;
        gap: 0;
        border-bottom: 2px solid #ff3333;
        transition: left 0.3s ease;
    }

    .main-nav.active {
        left: 0;
    }

    .nav-link {
        padding: 20px 0;
        border-bottom: 1px solid #2a2a2a;
    }

    .hero-heading {
        font-size: 56px;
    }

    .hero-subheading {
        font-size: 22px;
    }

    .section-header {
        font-size: 36px;
    }

    .content-split {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 400px;
    }

    .info-boxes,
    .props-grid,
    .guidelines-grid {
        grid-template-columns: 1fr;
    }

    .gate-content {
        margin: 20px;
        padding: 40px 30px;
    }

    .gate-buttons {
        flex-direction: column;
    }

    .legal-title {
        font-size: 40px;
    }

    .page-title {
        font-size: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
}
