* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #1a0033 0%, #2d1b4e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(20, 0, 40, 0.95);
    border-bottom: 2px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1.1rem;
}

nav a:hover {
    color: #d4af37;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: #f0f0f0;
}

/* About Section */
.about-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.about-section h2 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 2rem;
}

/* Notices Grid */
.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.notice-card {
    background: rgba(106, 17, 203, 0.2);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Game Section */
.game-section {
    margin: 3rem 0;
}

.game-section h2 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.game-intro {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.game-container {
    width: 100%;
    height: 600px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #d4af37;
}

.game-container iframe {
    width: 100%;
    height: 100%;
}

/* Features Section */
.features-section {
    margin: 3rem 0;
}

.features-section h2 {
    color: #d4af37;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.feature-card h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

/* Responsible Section */
.responsible-section {
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    border: 2px solid #d4af37;
}

.responsible-section h2 {
    color: #d4af37;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: rgba(20, 0, 40, 0.95);
    margin-top: 4rem;
    padding: 2rem 0 1rem;
    border-top: 2px solid #d4af37;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: #b0b0b0;
}

/* Age Verification Popup */
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-popup.hidden {
    display: none;
}

.age-content {
    background: linear-gradient(135deg, #2d1b4e 0%, #1a0033 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #d4af37;
    max-width: 500px;
}

.age-content h2 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.age-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-yes, .btn-no {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
    font-family: 'Rajdhani', sans-serif;
}

.btn-yes {
    background: #d4af37;
    color: #1a0033;
}

.btn-no {
    background: #666;
    color: #fff;
}

.btn-yes:hover, .btn-no:hover {
    transform: scale(1.05);
}

/* Play Page Styles */
.play-page {
    padding: 2rem 0;
}

.play-header {
    text-align: center;
    margin-bottom: 2rem;
}

.play-header h1 {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.game-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.game-info h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.game-info ul {
    list-style-position: inside;
    line-height: 2;
}

.tips-section {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #d4af37;
}

.tips-section h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-page {
    padding: 2rem 0;
    max-width: 900px;
}

.legal-page h1 {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.update-date {
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.legal-page section {
    margin-bottom: 2rem;
}

.legal-page h2 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-top: 0.5rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.disclaimer-highlight {
    background: rgba(212, 175, 55, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #d4af37;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: rgba(20, 0, 40, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s;
        border-left: 2px solid #d4af37;
    }

    nav.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .game-container {
        height: 400px;
    }

    .age-content {
        margin: 0 1rem;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .notices-grid {
        grid-template-columns: 1fr;
    }
}
