* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #0a0a1a 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, #1a0a2e 0%, #2d1b4e 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #6a4c93;
    box-shadow: 0 10px 50px rgba(106, 76, 147, 0.5);
}

.age-gate-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2em;
    margin-bottom: 20px;
    color: #a78bfa;
}

.age-gate-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.age-gate-buttons button {
    padding: 15px 40px;
    font-size: 1.1em;
    font-family: 'Orbitron', sans-serif;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
}

.btn-yes {
    background: linear-gradient(135deg, #6a4c93 0%, #a78bfa 100%);
    color: white;
}

.btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(167, 139, 250, 0.5);
}

.btn-no {
    background: #2d1b4e;
    color: #999;
    border: 2px solid #444;
}

.btn-no:hover {
    background: #1a0a2e;
}

/* Header */
header {
    background: rgba(26, 10, 46, 0.9);
    border-bottom: 2px solid #6a4c93;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8em;
    font-weight: 900;
    color: #a78bfa;
    text-decoration: none;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.5);
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #a78bfa;
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: #a78bfa;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #a78bfa;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(106, 76, 147, 0.1) 0%, rgba(167, 139, 250, 0.05) 100%);
    border-bottom: 1px solid rgba(106, 76, 147, 0.3);
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    color: #a78bfa;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(167, 139, 250, 0.5);
}

.hero-subtitle {
    font-size: 1.4em;
    color: #c4b5fd;
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(106, 76, 147, 0.3);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid #6a4c93;
    font-size: 1.1em;
}

/* Notices Section */
.notices {
    padding: 60px 0;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.notice-card {
    background: linear-gradient(135deg, rgba(106, 76, 147, 0.2) 0%, rgba(45, 27, 78, 0.4) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #6a4c93;
    text-align: center;
    transition: all 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(106, 76, 147, 0.4);
}

.notice-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.notice-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #a78bfa;
    margin-bottom: 15px;
    font-size: 1.4em;
}

/* Game Section */
.game-section {
    padding: 60px 0;
    background: rgba(26, 10, 46, 0.3);
}

.game-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    color: #a78bfa;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 1.2em;
    color: #c4b5fd;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.game-container {
    background: #0a0a1a;
    border: 3px solid #6a4c93;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(106, 76, 147, 0.3);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-info {
    text-align: center;
    margin-top: 30px;
}

.game-info p {
    font-size: 1.1em;
    margin: 10px 0;
    color: #c4b5fd;
}

/* About Section */
.about {
    padding: 60px 0;
}

.about h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    color: #a78bfa;
    text-align: center;
    margin-bottom: 40px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    background: linear-gradient(135deg, rgba(106, 76, 147, 0.2) 0%, rgba(45, 27, 78, 0.4) 100%);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #6a4c93;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1em;
}

.feature-icon {
    font-size: 2em;
}

/* Responsible Gaming */
.responsible-gaming {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(106, 76, 147, 0.1) 0%, rgba(167, 139, 250, 0.05) 100%);
    text-align: center;
}

.responsible-gaming h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    color: #a78bfa;
    margin-bottom: 20px;
}

.responsible-gaming p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1em;
    line-height: 1.8;
}

.rg-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.rg-links a {
    background: rgba(106, 76, 147, 0.3);
    color: #e0e0e0;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #6a4c93;
    transition: all 0.3s ease;
    font-weight: 600;
}

.rg-links a:hover {
    background: #6a4c93;
    color: white;
    transform: translateY(-2px);
}

/* Play Page */
.play-header {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(106, 76, 147, 0.1) 0%, rgba(167, 139, 250, 0.05) 100%);
}

.play-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    color: #a78bfa;
    margin-bottom: 15px;
}

.game-play {
    padding: 60px 0;
}

.game-container-full {
    background: #0a0a1a;
    border: 3px solid #6a4c93;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(106, 76, 147, 0.3);
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-instructions {
    background: linear-gradient(135deg, rgba(106, 76, 147, 0.2) 0%, rgba(45, 27, 78, 0.4) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #6a4c93;
}

.game-instructions h3 {
    font-family: 'Orbitron', sans-serif;
    color: #a78bfa;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.game-instructions ul {
    list-style: none;
    padding-left: 0;
}

.game-instructions li {
    margin-bottom: 15px;
    font-size: 1.1em;
    padding-left: 25px;
    position: relative;
}

.game-instructions li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #a78bfa;
    font-weight: bold;
}

.play-notice {
    margin-top: 30px;
    background: rgba(167, 139, 250, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #6a4c93;
}

.play-notice strong {
    color: #a78bfa;
}

/* Content Pages */
.content-page {
    padding: 60px 0;
    min-height: 70vh;
}

.content-page h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    color: #a78bfa;
    margin-bottom: 10px;
}

.updated {
    color: #999;
    font-style: italic;
    margin-bottom: 40px;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: #a78bfa;
    font-size: 2em;
    margin-bottom: 20px;
    margin-top: 30px;
}

.content-section h3 {
    color: #c4b5fd;
    font-size: 1.5em;
    margin-bottom: 15px;
    margin-top: 20px;
}

.content-section p {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.8;
}

.content-section ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-section li {
    margin-bottom: 10px;
    font-size: 1.05em;
    line-height: 1.7;
}

.disclaimer-alert {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(106, 76, 147, 0.3) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #a78bfa;
    margin-bottom: 40px;
    text-align: center;
}

.disclaimer-alert h2 {
    font-family: 'Orbitron', sans-serif;
    color: #a78bfa;
    margin-bottom: 15px;
}

.disclaimer-footer-notice {
    background: linear-gradient(135deg, rgba(106, 76, 147, 0.3) 0%, rgba(45, 27, 78, 0.5) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #6a4c93;
    margin-top: 40px;
}

.disclaimer-footer-notice h2 {
    font-family: 'Orbitron', sans-serif;
    color: #a78bfa;
    margin-bottom: 20px;
}

.disclaimer-footer-notice ul {
    list-style: none;
    padding-left: 0;
}

.disclaimer-footer-notice li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: rgba(26, 10, 46, 0.9);
    border-top: 2px solid #6a4c93;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    font-weight: 900;
    color: #a78bfa;
    letter-spacing: 2px;
}

.footer-links h4,
.footer-support h4 {
    font-family: 'Orbitron', sans-serif;
    color: #a78bfa;
    margin-bottom: 15px;
}

.footer-links,
.footer-support {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-support a {
    color: #c4b5fd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-support a:hover {
    color: #a78bfa;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(106, 76, 147, 0.3);
    color: #999;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(26, 10, 46, 0.98);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        border-left: 2px solid #6a4c93;
        gap: 20px;
    }
    
    nav.active {
        right: 0;
    }
    
    nav a {
        font-size: 1.3em;
        padding: 10px 0;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .notice-grid {
        grid-template-columns: 1fr;
    }
    
    .game-frame {
        height: 400px;
    }
    
    .game-frame-full {
        height: 500px;
    }
    
    .age-gate-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .age-gate-content h2 {
        font-size: 1.5em;
    }
    
    .age-gate-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .age-gate-buttons button {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
