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

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    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;
    backdrop-filter: blur(10px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #c41e3a;
    box-shadow: 0 20px 60px rgba(196, 30, 58, 0.3);
}

.age-gate-logo {
    margin-bottom: 30px;
}

.age-gate-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #c41e3a;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.age-gate-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #b0b0b0;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.btn-yes, .btn-no {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
}

.btn-yes {
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: white;
}

.btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.5);
}

.btn-no {
    background: #2a2a3e;
    color: #888;
}

.btn-no:hover {
    background: #3a3a4e;
}

/* Header */
.main-header {
    background: rgba(26, 26, 46, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #c41e3a;
    backdrop-filter: blur(10px);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #c41e3a;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #c41e3a;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c41e3a;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: #c41e3a;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(26, 26, 46, 0.5) 100%);
    border-bottom: 1px solid rgba(196, 30, 58, 0.3);
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 30px rgba(196, 30, 58, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(196, 30, 58, 0.2);
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid #c41e3a;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

.intro-section {
    background: rgba(22, 33, 62, 0.5);
}

.intro-section p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
    color: #b0b0b0;
}

/* Notice Section */
.notice-section {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.notice-card {
    background: rgba(196, 30, 58, 0.1);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #c41e3a;
    transition: all 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.notice-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #c41e3a;
}

.notice-card p {
    color: #b0b0b0;
    line-height: 1.8;
}

/* Game Section */
.game-section {
    background: rgba(10, 10, 10, 0.5);
}

.game-section p {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.game-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #c41e3a;
    box-shadow: 0 20px 60px rgba(196, 30, 58, 0.3);
}

.game-container iframe {
    width: 100%;
    height: 700px;
    display: block;
}

.game-controls {
    max-width: 800px;
    margin: 30px auto 0;
    text-align: center;
    background: rgba(196, 30, 58, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #c41e3a;
}

.game-controls p {
    margin: 0;
    font-size: 1rem;
}

/* Features Section */
.features-section {
    background: rgba(22, 33, 62, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    background: rgba(26, 26, 46, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(196, 30, 58, 0.3);
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: #c41e3a;
    transform: translateY(-5px);
}

.feature-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #c41e3a;
}

/* Responsibility Section */
.responsibility-section {
    background: rgba(196, 30, 58, 0.05);
}

.responsibility-section p {
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
}

.responsibility-section ul {
    max-width: 700px;
    margin: 30px auto;
    list-style: none;
}

.responsibility-section ul li {
    padding: 15px;
    margin: 10px 0;
    background: rgba(26, 26, 46, 0.5);
    border-left: 4px solid #c41e3a;
    border-radius: 5px;
}

/* Play Page */
.play-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(26, 26, 46, 0.5) 100%);
}

.play-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
}

.play-hero p {
    font-size: 1.3rem;
    color: #b0b0b0;
}

.game-play-section {
    padding: 60px 0;
}

.game-wrapper {
    max-width: 1100px;
    margin: 0 auto 40px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #c41e3a;
    box-shadow: 0 20px 60px rgba(196, 30, 58, 0.3);
}

.game-wrapper iframe {
    width: 100%;
    height: 750px;
    display: block;
}

.game-info {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.8);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #c41e3a;
}

.game-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #c41e3a;
    text-align: left;
}

.game-info p {
    margin-bottom: 20px;
    color: #b0b0b0;
    line-height: 1.8;
}

/* Content Pages */
.content-header {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(26, 26, 46, 0.5) 100%);
}

.content-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
}

.content-header p {
    font-size: 1.1rem;
    color: #888;
}

.content-body {
    padding: 60px 0;
}

.terms-content,
.privacy-content,
.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.6);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid rgba(196, 30, 58, 0.3);
}

.terms-content h2,
.privacy-content h2,
.disclaimer-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #c41e3a;
    text-align: left;
}

.terms-content h2:first-child,
.privacy-content h2:first-child,
.disclaimer-content h2:first-child {
    margin-top: 0;
}

.terms-content p,
.privacy-content p,
.disclaimer-content p {
    margin-bottom: 20px;
    color: #b0b0b0;
    line-height: 1.8;
}

.terms-content ul,
.privacy-content ul,
.disclaimer-content ul {
    margin: 20px 0 20px 30px;
    color: #b0b0b0;
}

.terms-content ul li,
.privacy-content ul li,
.disclaimer-content ul li {
    margin: 10px 0;
    line-height: 1.8;
}

.disclaimer-highlight {
    background: rgba(196, 30, 58, 0.1);
    padding: 30px;
    border-left: 4px solid #c41e3a;
    border-radius: 10px;
    margin: 40px 0;
}

.disclaimer-highlight h2 {
    margin-top: 0 !important;
}

/* Footer */
.main-footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 50px 0 30px;
    border-top: 2px solid #c41e3a;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: #c41e3a;
}

.footer-links h4 {
    font-family: 'Orbitron', sans-serif;
    color: #c41e3a;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.resource-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.resource-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.resource-links a:hover {
    color: #c41e3a;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(196, 30, 58, 0.3);
    color: #888;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: right 0.3s ease;
        border-left: 2px solid #c41e3a;
        backdrop-filter: blur(10px);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav a {
        font-size: 1.3rem;
        padding: 15px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .game-container iframe,
    .game-wrapper iframe {
        height: 500px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .resource-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .terms-content,
    .privacy-content,
    .disclaimer-content {
        padding: 30px 20px;
    }
    
    .age-gate-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .age-gate-buttons {
        flex-direction: column;
    }
}
