* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: rgba(26, 26, 46, 0.95);
    border-bottom: 3px solid #d4af37;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 3px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #d4af37;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 8px 15px;
    border-radius: 5px;
}

.main-nav a:hover,
.main-nav a.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 3px solid #d4af37;
    }

    .main-nav.active {
        max-height: 400px;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .main-nav a {
        display: block;
        padding: 15px;
    }

    .logo-text {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
}

/* Age Gate */
.age-gate {
    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: 9999;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #d4af37;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.age-gate-content h2 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 2rem;
}

.age-gate-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.age-gate-notice {
    font-size: 0.9rem;
    color: #aaa;
    font-style: italic;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.btn-yes,
.btn-no {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-yes {
    background: #d4af37;
    color: #1a1a2e;
}

.btn-yes:hover {
    background: #f0c674;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-no {
    background: #e74c3c;
    color: white;
}

.btn-no:hover {
    background: #c0392b;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(15, 52, 96, 0.2));
}

.hero-section h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #e0e0e0;
    font-style: italic;
}

/* Intro Section */
.intro-section {
    padding: 60px 20px;
}

.intro-card {
    background: rgba(26, 26, 46, 0.6);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #d4af37;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.intro-card h2 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 2rem;
}

.intro-card p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Important Notices */
.important-notices {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.notice-card {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.notice-card:hover {
    transform: translateY(-5px);
}

.notice-card.red {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.notice-card.blue {
    background: linear-gradient(135deg, #2980b9, #3498db);
}

.notice-card.yellow {
    background: linear-gradient(135deg, #d68910, #f39c12);
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.notice-card h3 {
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Game Section */
.game-section {
    padding: 60px 20px;
}

.game-section h2 {
    font-family: 'Cinzel', serif;
    text-align: center;
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.game-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #bbb;
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
}

.game-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #d4af37;
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #f0c674;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.features-section h2 {
    font-family: 'Cinzel', serif;
    text-align: center;
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: rgba(26, 26, 46, 0.5);
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(26, 26, 46, 0.8);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Community Section */
.community-section {
    padding: 60px 20px;
}

.community-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(26, 26, 46, 0.6));
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #d4af37;
}

.community-card h2 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 2rem;
}

.community-card p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Responsibility Section */
.responsibility-section {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.responsibility-section h2 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 2rem;
}

.responsibility-section p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Play Page Styles */
.play-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(15, 52, 96, 0.2));
}

.play-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.play-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    font-style: italic;
}

.game-play-section {
    padding: 40px 20px 60px;
}

.game-info-card {
    background: rgba(26, 26, 46, 0.6);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid #d4af37;
}

.game-info-card h2 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 15px;
}

.play-tips {
    margin-top: 25px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
}

.play-tips h3 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 15px;
}

.play-tips ul {
    list-style: none;
    padding: 0;
}

.play-tips li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.play-tips li:last-child {
    border-bottom: none;
}

.game-container-full {
    max-width: 100%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    margin-bottom: 30px;
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
}

.play-notice {
    text-align: center;
    background: rgba(231, 76, 60, 0.2);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e74c3c;
}

.play-notice strong {
    color: #d4af37;
}

/* Legal Pages */
.legal-section {
    padding: 60px 20px;
}

.legal-section h1 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.5);
    padding: 40px;
    border-radius: 12px;
}

.legal-intro {
    font-size: 1.2rem;
    font-style: italic;
    color: #d4af37;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.legal-content h2 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.legal-content h3 {
    font-family: 'Cinzel', serif;
    color: #f0c674;
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 10px;
}

.disclaimer-highlight {
    background: rgba(231, 76, 60, 0.15);
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #e74c3c;
    margin: 25px 0;
}

.disclaimer-summary {
    background: rgba(212, 175, 55, 0.15);
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #d4af37;
    margin-top: 40px;
}

.disclaimer-summary h3 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 15px;
}

.legal-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px solid #d4af37;
    text-align: center;
    font-style: italic;
    color: #aaa;
}

/* Footer */
.main-footer {
    background: rgba(26, 26, 46, 0.95);
    border-top: 3px solid #d4af37;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-section p {
    color: #bbb;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: #aaa;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .intro-card,
    .legal-content {
        padding: 25px;
    }

    .game-frame {
        height: 400px;
    }

    .game-frame-full {
        height: 500px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .notice-grid {
        grid-template-columns: 1fr;
    }
}
