* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #06b6d4;
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.3);
}

.age-gate-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #06b6d4;
}

.age-gate-content p {
    font-size: 18px;
    margin-bottom: 15px;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.age-gate-buttons button {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.btn-yes {
    background: #06b6d4;
    color: #0f172a;
}

.btn-yes:hover {
    background: #0891b2;
    transform: translateY(-2px);
}

.btn-no {
    background: #ef4444;
    color: white;
}

.btn-no:hover {
    background: #dc2626;
}

/* Header */
header {
    background: rgba(15, 23, 42, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #06b6d4;
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #06b6d4;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #06b6d4;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #06b6d4;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #06b6d4;
}

nav a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: #94a3b8;
    margin-bottom: 50px;
}

.notice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.notice-card {
    background: rgba(30, 41, 59, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #334155;
    transition: all 0.3s ease;
}

.notice-card:hover {
    border-color: #06b6d4;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.notice-card .icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.notice-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #06b6d4;
}

/* Game Section */
.game-section {
    padding: 60px 0;
    background: rgba(30, 41, 59, 0.5);
}

.game-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #06b6d4;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 40px;
}

.game-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.game-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Features */
.features {
    padding: 80px 0;
}

.features h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #06b6d4;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #06b6d4;
}

.feature-item p {
    color: #94a3b8;
    font-size: 16px;
}

/* Info Block */
.info-block {
    padding: 60px 0;
    background: rgba(30, 41, 59, 0.5);
}

.info-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #06b6d4;
    text-align: center;
}

.info-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Play Page */
.play-page {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.play-page h1 {
    font-size: 48px;
    margin-bottom: 30px;
    text-align: center;
    color: #06b6d4;
}

.play-info {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.play-info p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.game-tips {
    background: rgba(30, 41, 59, 0.8);
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    border: 2px solid #334155;
}

.game-tips h3 {
    color: #06b6d4;
    margin-bottom: 15px;
    font-size: 22px;
}

.game-tips ul {
    list-style-position: inside;
    color: #94a3b8;
}

.game-tips li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.legal-page .container {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #06b6d4;
}

.updated {
    color: #64748b;
    font-style: italic;
    margin-bottom: 40px;
    font-size: 16px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #06b6d4;
}

.legal-page p {
    font-size: 17px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.disclaimer-highlight {
    background: rgba(6, 182, 212, 0.1);
    border-left: 4px solid #06b6d4;
    padding: 25px;
    margin: 30px 0;
    border-radius: 5px;
}

.disclaimer-highlight h2 {
    margin-top: 0;
}

/* Footer */
footer {
    background: rgba(15, 23, 42, 0.95);
    padding: 50px 0 20px;
    border-top: 2px solid #06b6d4;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #06b6d4;
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-nav a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer-links a:hover,
.footer-nav a:hover {
    color: #06b6d4;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #64748b;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        border-left: 2px solid #06b6d4;
    }

    nav.active {
        right: 0;
    }

    nav a {
        font-size: 24px;
        padding: 15px 0;
        border-bottom: 1px solid #334155;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .notice-cards {
        grid-template-columns: 1fr;
    }

    .game-section h2,
    .features h2 {
        font-size: 32px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .play-page h1 {
        font-size: 32px;
    }

    .legal-page h1 {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
