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

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(135deg, #f5f3ef 0%, #ede9e3 100%);
    color: #2c2c2c;
    line-height: 1.6;
    display: flex;
    min-height: 100vh;
}

/* Age Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

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

.age-modal-box {
    background: linear-gradient(135deg, #fff8e7 0%, #fffcf5 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    border: 3px solid #d4af37;
}

.age-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.age-modal-box h2 {
    color: #2c2c2c;
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 800;
}

.age-text {
    color: #5a5a5a;
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: 500;
}

.age-disclaimer {
    color: #7a7a7a;
    margin-bottom: 30px;
    font-size: 15px;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-confirm,
.btn-deny {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.btn-confirm {
    background: #d4af37;
    color: #fff;
}

.btn-confirm:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-deny {
    background: #e74c3c;
    color: #fff;
}

.btn-deny:hover {
    background: #c0392b;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #fff;
    padding: 30px 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.sidebar-header {
    padding: 0 30px 30px 30px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 30px;
}

.site-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.site-name {
    font-size: 28px;
    font-weight: 800;
    color: #d4af37;
    letter-spacing: 2px;
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-top: 20px;
}

.sidebar-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #d4af37;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
    border-left: 4px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(212, 175, 55, 0.15);
    border-left-color: #d4af37;
    color: #d4af37;
}

.nav-icon {
    font-size: 22px;
}

.nav-text {
    flex: 1;
}

/* Main Content */
.main-content {
    margin-left: 280px;
    flex: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8) 0%, rgba(184, 148, 31, 0.8) 100%), url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    padding: 100px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-desc {
    font-size: 20px;
    color: #fff;
    margin-bottom: 35px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-tags {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 700;
    color: #2c2c2c;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Content Sections */
.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 50px;
}

.intro-section {
    padding: 70px 0;
    background: #fff;
}

.section-heading {
    font-size: 40px;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 25px;
}

.section-heading.center {
    text-align: center;
}

.intro-text {
    font-size: 18px;
    color: #5a5a5a;
    line-height: 1.9;
}

/* Highlights */
.highlights-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #fffaf0 0%, #fff8e7 100%);
}

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

.highlight-card {
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid;
}

.highlight-card.gold {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}

.highlight-card.blue {
    background: rgba(52, 152, 219, 0.1);
    border-color: #3498db;
}

.highlight-card.purple {
    background: rgba(155, 89, 182, 0.1);
    border-color: #9b59b6;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.highlight-emoji {
    font-size: 50px;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.highlight-card p {
    color: #5a5a5a;
    line-height: 1.8;
    font-size: 16px;
}

/* Alerts Section */
.alerts-section {
    padding: 70px 0;
    background: #fff;
}

.alert-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.alert-box {
    padding: 30px;
    border-radius: 12px;
    border-left: 6px solid;
}

.red-alert {
    background: rgba(231, 76, 60, 0.08);
    border-color: #e74c3c;
}

.green-alert {
    background: rgba(46, 204, 113, 0.08);
    border-color: #2ecc71;
}

.orange-alert {
    background: rgba(230, 126, 34, 0.08);
    border-color: #e67e22;
}

.alert-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.alert-box p {
    color: #4a4a4a;
    line-height: 1.8;
}

/* Game Section */
.game-showcase {
    padding: 70px 0;
    background: linear-gradient(135deg, #f5f3ef 0%, #ede9e3 100%);
}

.game-intro {
    text-align: center;
    font-size: 17px;
    color: #6a6a6a;
    margin-bottom: 40px;
}

.game-embed {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 3px solid #d4af37;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

.game-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 2px solid #d4af37;
}

.tip-icon {
    font-size: 28px;
}

.game-tip p {
    color: #4a4a4a;
    font-weight: 500;
    font-size: 16px;
}

/* Benefits Section */
.benefits-section {
    padding: 70px 0;
    background: #fff;
}

.benefits-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
    background: linear-gradient(135deg, #fffaf0 0%, #fff8e7 100%);
    border-radius: 12px;
    border-left: 5px solid #d4af37;
}

.benefit-number {
    width: 60px;
    height: 60px;
    background: #d4af37;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.benefit-content p {
    color: #5a5a5a;
    line-height: 1.8;
}

/* Play Page */
.play-header {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.2);
}

.page-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.play-game-section {
    padding: 60px 0 80px 0;
    background: #fff;
}

.game-embed-large {
    background: #f5f3ef;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 50px;
    border: 3px solid #d4af37;
}

.game-iframe-large {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.play-instructions h2 {
    font-size: 36px;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 30px;
    text-align: center;
}

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

.instruction-card {
    background: linear-gradient(135deg, #fffaf0 0%, #fff8e7 100%);
    padding: 30px 25px;
    border-radius: 12px;
    border: 2px solid #d4af37;
    text-align: center;
}

.instruction-emoji {
    font-size: 40px;
    margin-bottom: 15px;
}

.instruction-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.instruction-card p {
    color: #5a5a5a;
    line-height: 1.7;
}

.play-reminder {
    background: rgba(231, 76, 60, 0.08);
    border: 3px solid #e74c3c;
    border-radius: 12px;
    padding: 35px;
}

.play-reminder h3 {
    font-size: 26px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.reminder-content p {
    color: #4a4a4a;
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 16px;
}

/* Legal Pages */
.legal-header {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.legal-date {
    font-size: 16px;
    opacity: 0.9;
}

.legal-body {
    padding: 70px 0 80px 0;
    background: #fff;
}

.legal-document {
    background: linear-gradient(135deg, #fffaf0 0%, #fff8e7 100%);
    padding: 50px 45px;
    border-radius: 15px;
    border: 3px solid #d4af37;
}

.legal-document h2 {
    font-size: 32px;
    font-weight: 800;
    color: #2c2c2c;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    font-size: 24px;
    font-weight: 700;
    color: #3a3a3a;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-document p {
    color: #4a4a4a;
    margin-bottom: 18px;
    line-height: 1.9;
}

.legal-document ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-document li {
    color: #4a4a4a;
    margin-bottom: 10px;
    line-height: 1.8;
}

.terms-highlight,
.privacy-summary-box,
.disclaimer-summary-box {
    background: rgba(212, 175, 55, 0.15);
    border: 3px solid #d4af37;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
}

.terms-highlight h3,
.privacy-summary-box h3,
.disclaimer-summary-box h3 {
    margin-top: 0;
    font-size: 26px;
    color: #2c2c2c;
}

.critical-notice {
    background: rgba(231, 76, 60, 0.1);
    border: 3px solid #e74c3c;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 40px;
}

.critical-notice h2 {
    margin-top: 0;
}

.final-acknowledgment {
    background: rgba(212, 175, 55, 0.2);
    border: 3px solid #d4af37;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.final-acknowledgment p {
    margin: 0;
    font-size: 18px;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #e0e0e0;
    padding: 60px 50px 30px 50px;
    margin-top: auto;
}

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

.footer-column h3 {
    color: #d4af37;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-280px);
        transition: transform 0.3s ease;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar-toggle {
        display: block;
    }

    .main-content {
        margin-left: 0;
    }

    .content-wrapper {
        padding: 0 30px;
    }

    .hero-section {
        padding: 70px 30px;
    }

    .site-footer {
        padding: 50px 30px 25px 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-desc {
        font-size: 17px;
    }

    .hero-tags {
        flex-direction: column;
        align-items: center;
    }

    .tag {
        width: 100%;
        max-width: 300px;
    }

    .section-heading {
        font-size: 32px;
    }

    .game-iframe,
    .game-iframe-large {
        height: 500px;
    }

    .highlight-cards,
    .alert-boxes,
    .instruction-cards {
        grid-template-columns: 1fr;
    }

    .benefit-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-title {
        font-size: 36px;
    }

    .legal-document {
        padding: 35px 25px;
    }

    .age-modal-box {
        margin: 20px;
        padding: 35px 25px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .btn-confirm,
    .btn-deny {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .game-iframe,
    .game-iframe-large {
        height: 400px;
    }

    .content-wrapper {
        padding: 0 20px;
    }
}