* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Age Modal */
.age-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
}

.age-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 50px;
    border-radius: 10px;
    text-align: center;
    max-width: 550px;
    border: 2px solid #d4af37;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

.age-symbol {
    font-size: 90px;
    margin-bottom: 25px;
}

.age-content h1 {
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 20px;
}

.age-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #c0c0c0;
}

.age-note {
    font-size: 14px;
    color: #808080;
    margin-bottom: 35px;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-confirm,
.btn-decline {
    padding: 16px 45px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #d4af37;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.btn-confirm {
    background: #d4af37;
    color: #000;
}

.btn-confirm:hover {
    background: #f0c75f;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.btn-decline {
    background: transparent;
    color: #d4af37;
}

.btn-decline:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-right: 1px solid #333;
    z-index: 1000;
    transition: left 0.3s ease;
}

.sidebar-header {
    padding: 40px 30px;
    border-bottom: 1px solid #333;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-icon {
    font-size: 40px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #d4af37;
}

.sidebar-nav {
    padding: 30px 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.sidebar-link.active {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    border-left-color: #d4af37;
}

.link-icon {
    font-size: 24px;
    width: 30px;
}

.link-text {
    font-size: 16px;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    background: #d4af37;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Main Content */
.main-content {
    margin-left: 280px;
    min-height: 100vh;
}

.content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><text x="10" y="50" font-size="40" opacity="0.05">♠️</text><text x="60" y="80" font-size="40" opacity="0.05">♣️</text></svg>');
    opacity: 0.1;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
}

.main-title {
    font-size: 72px;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-subtitle {
    font-size: 28px;
    font-style: italic;
    color: #c0c0c0;
    margin-bottom: 30px;
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: #d4af37;
    margin: 0 auto 30px;
}

.hero-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    color: #b0b0b0;
}

/* Info Section */
.info-section {
    padding: 80px 0;
}

.section-heading {
    font-size: 48px;
    color: #d4af37;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.info-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 40px 35px;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #d4af37;
}

.info-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.card-number {
    font-size: 16px;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 26px;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #a0a0a0;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
}

.placeholder-icon {
    font-size: 60px;
    opacity: 0.3;
}

.about-text p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #b0b0b0;
}

/* Game Showcase */
.game-showcase {
    padding: 80px 0;
}

.section-subheading {
    text-align: center;
    font-size: 18px;
    color: #a0a0a0;
    margin-bottom: 40px;
}

.game-wrapper {
    background: #000;
    border-radius: 8px;
    padding: 20px;
    border: 2px solid #d4af37;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 5px;
}

.game-notice {
    text-align: center;
    margin-top: 30px;
    color: #a0a0a0;
    font-size: 16px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 40px 25px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}

.feature-icon {
    font-size: 55px;
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 22px;
    color: #d4af37;
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.6;
}

/* Play Page */
.play-header {
    padding: 80px 0 40px;
    text-align: center;
}

.page-title {
    font-size: 56px;
    color: #d4af37;
    margin-bottom: 20px;
}

.page-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #b0b0b0;
    line-height: 1.8;
}

/* Guidelines Section */
.guidelines-section {
    padding: 40px 0 60px;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.guideline-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 35px 30px;
    border-radius: 8px;
    border: 1px solid #333;
}

.guideline-item h3 {
    font-size: 24px;
    color: #d4af37;
    margin-bottom: 20px;
}

.guideline-item ul {
    list-style: none;
    padding: 0;
}

.guideline-item li {
    padding: 10px 0;
    color: #a0a0a0;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.guideline-item li:last-child {
    border-bottom: none;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
    background: #0a0a0a;
}

.legal-title {
    font-size: 54px;
    color: #d4af37;
    margin-bottom: 15px;
}

.legal-date {
    font-size: 16px;
    color: #808080;
    margin-bottom: 50px;
}

.legal-article {
    margin-bottom: 45px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
}

.legal-article:last-of-type {
    border-bottom: none;
}

.legal-article h2 {
    font-size: 32px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.legal-article h3 {
    font-size: 24px;
    color: #c0c0c0;
    margin: 25px 0 15px;
}

.legal-article p {
    font-size: 16px;
    line-height: 1.9;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.legal-article ul {
    margin: 20px 0;
    padding-left: 40px;
}

.legal-article li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #a0a0a0;
}

.legal-article.highlight {
    background: rgba(212, 175, 55, 0.05);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
    border-bottom: none;
}

.legal-article.highlight h2 {
    color: #d4af37;
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 30px;
    border-top: 2px solid #d4af37;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 22px;
    color: #d4af37;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #a0a0a0;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    color: #808080;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .sidebar {
        left: -280px;
    }

    .sidebar.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .main-content {
        margin-left: 0;
    }

    .content-wrap {
        padding: 0 25px;
    }

    .main-title {
        font-size: 48px;
    }

    .main-subtitle {
        font-size: 22px;
    }

    .section-heading {
        font-size: 36px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-cards,
    .features-list,
    .guidelines-grid {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .age-content {
        margin: 20px;
        padding: 40px 30px;
    }

    .age-buttons {
        flex-direction: column;
    }
}
