* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #1a1a1a;
    color: #e5e5e5;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.age-verification {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.age-verification.hidden {
    display: none;
}

.verification-card {
    background: #2a2a2a;
    padding: 50px 60px;
    border-radius: 16px;
    text-align: center;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid #3a3a3a;
}

.verification-header {
    margin-bottom: 32px;
}

.verification-card h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #d4af37;
}

.verification-message {
    color: #b0b0b0;
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 16px;
}

.verification-question {
    color: #e5e5e5;
    margin-bottom: 20px;
    font-weight: 600;
}

.verification-actions {
    display: flex;
    gap: 16px;
    margin-top: 36px;
}

.verify-btn {
    flex: 1;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.verify-btn.confirm {
    background: #d4af37;
    color: #1a1a1a;
}

.verify-btn.confirm:hover {
    background: #e5c158;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.verify-btn.decline {
    background: #3a3a3a;
    color: #b0b0b0;
}

.verify-btn.decline:hover {
    background: #4a4a4a;
}

.page-container {
    display: flex;
    min-height: 100vh;
}

.sidebar-nav {
    width: 280px;
    background: #2a2a2a;
    border-right: 1px solid #3a3a3a;
    padding: 40px 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    transition: transform 0.3s;
}

.sidebar-brand {
    padding: 0 32px 40px;
    border-bottom: 1px solid #3a3a3a;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-title {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 32px;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.menu-item:hover {
    background: #333333;
    color: #e5e5e5;
    border-left-color: #d4af37;
}

.menu-item.active {
    background: #333333;
    color: #d4af37;
    border-left-color: #d4af37;
}

.item-icon {
    font-size: 20px;
}

.item-label {
    font-weight: 600;
    font-size: 15px;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    min-height: 100vh;
}

.mobile-header {
    display: none;
    background: #2a2a2a;
    padding: 20px;
    border-bottom: 1px solid #3a3a3a;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #d4af37;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-brand {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #d4af37;
}

.hero-intro {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 100px 48px;
    border-bottom: 1px solid #3a3a3a;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #d4af37;
    line-height: 1.2;
}

.intro-subtitle {
    font-size: 20px;
    color: #b0b0b0;
    line-height: 1.7;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.section-container.narrow {
    max-width: 1000px;
}

.highlights-section {
    padding: 100px 48px;
    background: #1a1a1a;
}

.highlight-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.highlight-card {
    background: #2a2a2a;
    padding: 48px;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
    transition: all 0.3s;
}

.highlight-card:hover {
    border-color: #d4af37;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.1);
}

.card-icon-wrapper {
    margin-bottom: 24px;
}

.card-icon {
    font-size: 48px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #e5e5e5;
}

.card-description {
    color: #b0b0b0;
    line-height: 1.7;
}

.essential-notices {
    padding: 100px 48px;
    background: #2a2a2a;
    border-top: 1px solid #3a3a3a;
    border-bottom: 1px solid #3a3a3a;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #d4af37;
}

.section-title.centered {
    text-align: center;
}

.notices-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.notice-panel {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid;
}

.notice-panel.gold-accent {
    border-left-color: #d4af37;
}

.notice-panel.silver-accent {
    border-left-color: #c0c0c0;
}

.notice-panel.bronze-accent {
    border-left-color: #cd7f32;
}

.notice-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 20px;
}

.notice-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #e5e5e5;
}

.notice-panel p {
    color: #b0b0b0;
    line-height: 1.7;
}

.game-showcase-section {
    padding: 100px 48px;
    background: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 60px;
}

.game-display-frame {
    background: #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #3a3a3a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 1200px;
    margin: 0 auto;
}

.embedded-game {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.advantages-section {
    padding: 100px 48px;
    background: #2a2a2a;
    border-top: 1px solid #3a3a3a;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.advantage-item {
    text-align: center;
}

.advantage-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.advantage-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #d4af37;
}

.advantage-item p {
    color: #b0b0b0;
    line-height: 1.7;
}

.page-hero-alt {
    background: #2a2a2a;
    padding: 80px 48px;
    border-bottom: 1px solid #3a3a3a;
}

.hero-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-main-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #d4af37;
}

.hero-description {
    font-size: 18px;
    color: #b0b0b0;
}

.gameplay-info {
    padding: 80px 48px;
    background: #1a1a1a;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.info-card {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #3a3a3a;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #d4af37;
}

.info-card p {
    color: #b0b0b0;
    line-height: 1.7;
}

.legal-content-section {
    padding: 80px 48px;
    background: #1a1a1a;
}

.legal-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #d4af37;
}

.legal-text p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-text ul {
    margin: 20px 0;
    padding-left: 32px;
}

.legal-text li {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 10px;
}

.disclaimer-enhanced .disclaimer-block {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 48px;
    border-left: 6px solid;
}

.disclaimer-block.critical {
    border-left-color: #dc2626;
}

.disclaimer-block.important {
    border-left-color: #d4af37;
}

.disclaimer-block.notice {
    border-left-color: #3b82f6;
}

.block-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.header-icon {
    font-size: 44px;
}

.block-header h2 {
    margin: 0;
    font-size: 28px;
}

.site-footer {
    background: #2a2a2a;
    border-top: 1px solid #3a3a3a;
    padding: 80px 48px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-heading {
    color: #d4af37;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    color: #b0b0b0;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #e5c158;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #3a3a3a;
}

.footer-bottom p {
    color: #808080;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .sidebar-nav {
        transform: translateX(-100%);
    }

    .sidebar-nav.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .mobile-header {
        display: flex;
    }

    .intro-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .hero-main-title {
        font-size: 36px;
    }

    .embedded-game {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .section-container,
    .hero-intro,
    .highlights-section,
    .essential-notices,
    .game-showcase-section,
    .advantages-section,
    .page-hero-alt,
    .gameplay-info,
    .legal-content-section,
    .site-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .verification-card {
        padding: 40px 30px;
    }

    .verification-actions {
        flex-direction: column;
    }

    .intro-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .highlight-columns,
    .notices-layout,
    .advantages-grid,
    .info-columns {
        grid-template-columns: 1fr;
    }
}
