* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #3a3a3a;
    background: #f5f0e8;
}

/* Age Check Overlay */
.age-check-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4a574 0%, #8b6f3d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-check-overlay.hidden {
    display: none;
}

.age-check-container {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid #d4a574;
}

.age-check-icon {
    font-size: 72px;
    margin-bottom: 20px;
}

.age-check-container h1 {
    font-size: 32px;
    color: #8b6f3d;
    margin-bottom: 15px;
    font-weight: 900;
}

.age-check-container p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.age-requirement {
    font-size: 18px;
    font-weight: 700;
    color: #3a3a3a;
    margin-top: 20px;
    margin-bottom: 25px;
}

.age-check-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}

.age-accept {
    background: linear-gradient(135deg, #d4a574, #8b6f3d);
    color: white;
}

.age-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(139, 111, 61, 0.4);
}

.age-decline {
    background: #555;
    color: white;
}

.age-decline:hover {
    background: #333;
}

/* Main Header */
.main-header {
    background: linear-gradient(135deg, #d4a574 0%, #8b6f3d 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.logo-icon {
    font-size: 32px;
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-bar {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s;
}

.main-navigation {
    display: flex;
    gap: 10px;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.current {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #d4a574 0%, #8b6f3d 100%);
    padding: 100px 30px;
    text-align: center;
    color: white;
}

.hero-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-heading {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-subheading {
    font-size: 22px;
    margin-bottom: 35px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Notices Section */
.notices-section {
    padding: 80px 0;
    background: white;
}

.notice-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.notice-column {
    text-align: center;
    padding: 40px 30px;
    background: #f5f0e8;
    border-radius: 10px;
    border: 2px solid #d4a574;
}

.notice-emoji {
    font-size: 48px;
    margin-bottom: 20px;
}

.notice-title {
    font-size: 22px;
    font-weight: 900;
    color: #8b6f3d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notice-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Game Showcase Section */
.game-showcase-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f0e8 0%, #e8dcc8 100%);
}

.showcase-intro {
    text-align: center;
    margin-bottom: 50px;
}

.showcase-heading {
    font-size: 42px;
    font-weight: 900;
    color: #8b6f3d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.showcase-description {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.game-embed-area {
    margin-bottom: 40px;
}

.game-frame-container {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid #d4a574;
}

.embedded-game {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-badge {
    background: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    color: #8b6f3d;
    border: 2px solid #d4a574;
    font-size: 14px;
}

/* Platform Info */
.platform-info {
    padding: 80px 0;
    background: white;
}

.info-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: #8b6f3d;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.info-block {
    background: #f5f0e8;
    padding: 35px 30px;
    border-radius: 10px;
    border-left: 5px solid #d4a574;
}

.block-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.info-block h3 {
    font-size: 22px;
    font-weight: 900;
    color: #8b6f3d;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.info-block p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4a574 0%, #8b6f3d 100%);
    color: white;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.philosophy-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Support Section */
.support-section {
    padding: 70px 0;
    background: #3a3a3a;
    color: white;
    text-align: center;
}

.support-heading {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.support-text {
    font-size: 16px;
    margin-bottom: 35px;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.support-link {
    background: #d4a574;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.support-link:hover {
    background: #8b6f3d;
    transform: translateY(-2px);
}

/* Page Title Section */
.page-title-section {
    background: linear-gradient(135deg, #d4a574 0%, #8b6f3d 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 18px;
    font-weight: 300;
}

/* Play Game Section */
.play-game-section {
    padding: 50px 0;
    background: #f5f0e8;
}

.full-game-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid #d4a574;
}

.full-game-frame {
    width: 100%;
    height: 800px;
    border: none;
    display: block;
}

/* Instructions Section */
.instructions-section {
    padding: 70px 0;
    background: white;
}

.instructions-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    color: #8b6f3d;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.instruction-card {
    background: #f5f0e8;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #d4a574;
}

.instruction-number {
    font-size: 48px;
    font-weight: 900;
    color: #d4a574;
    margin-bottom: 15px;
}

.instruction-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.technical-requirements {
    max-width: 800px;
    margin: 0 auto;
    background: #f5f0e8;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #d4a574;
}

.technical-requirements h3 {
    font-size: 24px;
    font-weight: 900;
    color: #8b6f3d;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-align: center;
}

.requirements-list {
    display: grid;
    gap: 12px;
}

.requirement-item {
    font-size: 15px;
    color: #666;
    padding: 12px 20px;
    background: white;
    border-radius: 5px;
}

/* Legal Section */
.legal-section {
    padding: 70px 0;
    background: white;
    min-height: 70vh;
}

.legal-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: #8b6f3d;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-item {
    margin-bottom: 30px;
    padding: 30px;
    background: #f5f0e8;
    border-radius: 10px;
    border-left: 4px solid #d4a574;
}

.terms-item h2 {
    font-size: 22px;
    font-weight: 900;
    color: #8b6f3d;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.terms-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.disclaimer-critical {
    background: #fff5e6;
    border-left-color: #ff6b00;
}

.disclaimer-critical h2 {
    color: #ff6b00;
}

/* Main Footer */
.main-footer {
    background: #3a3a3a;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-block h4 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #d4a574;
    text-transform: uppercase;
}

.footer-block p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-list a:hover {
    opacity: 1;
    color: #d4a574;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 75%;
        max-width: 350px;
        height: calc(100vh - 70px);
        background: linear-gradient(180deg, #d4a574, #8b6f3d);
        flex-direction: column;
        padding: 30px 0;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
        transition: left 0.3s ease;
        gap: 0;
    }

    .main-navigation.active {
        left: 0;
    }

    .nav-link {
        width: 100%;
        padding: 15px 30px;
        border-radius: 0;
        text-align: left;
    }

    .hero-heading {
        font-size: 36px;
    }

    .hero-subheading {
        font-size: 16px;
    }

    .embedded-game {
        height: 500px;
    }

    .full-game-frame {
        height: 550px;
    }

    .showcase-heading,
    .info-heading,
    .philosophy-content h2 {
        font-size: 32px;
    }

    .legal-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .age-check-buttons {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }
}
