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

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #1a0033 0%, #2d0052 50%, #1a0033 100%);
    color: #ffffff;
    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;
}

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

.age-gate-content {
    background: linear-gradient(135deg, #2d0052, #1a0033);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.age-gate-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #FFD700;
}

.age-gate-content p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

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

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

.btn-yes {
    background: #FFD700;
    color: #1a0033;
}

.btn-yes:hover {
    background: #FFC700;
    transform: scale(1.05);
}

.btn-no {
    background: #666;
    color: #fff;
}

.btn-no:hover {
    background: #555;
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 900;
    color: #FFD700;
    text-decoration: none;
}

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

.desktop-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

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

.desktop-nav a:hover {
    color: #FFD700;
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-nav {
    display: none;
    background: rgba(26, 0, 51, 0.98);
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 999;
    border-bottom: 2px solid #FFD700;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.subtitle {
    font-size: 24px;
    margin-bottom: 60px;
    color: #cccccc;
}

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

.feature {
    background: rgba(255, 215, 0, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.feature .icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #FFD700;
}

.feature p {
    font-size: 14px;
    line-height: 1.8;
}

/* Important Notices */
.important-notices {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.notice-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #FFD700;
}

.notice-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FFD700;
}

.notice-card p {
    font-size: 14px;
    line-height: 1.8;
}

/* Game Showcase */
.game-showcase {
    padding: 80px 0;
}

.game-showcase h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    color: #FFD700;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #cccccc;
}

.game-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 30px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

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

.game-info {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.game-info p {
    font-size: 16px;
    margin: 10px 0;
    color: #FFD700;
}

/* About Platform */
.about-platform {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.about-platform h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #FFD700;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    background: rgba(255, 215, 0, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #FFD700;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #cccccc;
}

/* Responsible Gaming */
.responsible-gaming {
    padding: 80px 0;
}

.responsible-gaming h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 30px;
    color: #FFD700;
}

.responsible-gaming > .container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tip {
    background: rgba(255, 215, 0, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.tip h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FFD700;
}

.tip p {
    font-size: 14px;
    line-height: 1.8;
}

/* Play Page */
.play-page {
    padding: 60px 0;
}

.play-page h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #cccccc;
}

.game-instructions {
    background: rgba(255, 215, 0, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 2px solid #FFD700;
}

.game-instructions h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #FFD700;
}

.game-instructions ul {
    list-style: none;
    margin-bottom: 20px;
}

.game-instructions li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 10px;
}

.browser-note {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
}

.game-container-full {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    margin-bottom: 30px;
}

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

.disclaimer-box {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #FFD700;
    text-align: center;
}

/* Content Pages */
.content-page {
    padding: 60px 0;
}

.content-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #FFD700;
    text-align: center;
}

.last-updated {
    text-align: center;
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 50px;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #FFD700;
}

.terms-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #FFD700;
}

.terms-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #FFD700;
}

.terms-section p {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.terms-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.terms-section li {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.8;
}

.disclaimer-highlight {
    background: rgba(255, 215, 0, 0.2);
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #FFD700;
    margin-bottom: 40px;
    text-align: center;
}

.disclaimer-highlight h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 50px 0 20px;
    margin-top: 80px;
    border-top: 2px solid #FFD700;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #FFD700;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #cccccc;
}

.footer-section a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.footer-bottom p {
    font-size: 14px;
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .game-container iframe,
    .game-container-full iframe {
        height: 500px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .age-gate-content {
        padding: 30px 20px;
    }
    
    .age-gate-buttons {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 26px;
    }
    
    .game-container iframe,
    .game-container-full iframe {
        height: 400px;
    }
}
