/* ======= Card-Style Legal/Contact Container ======= */
.legal-card-container {
    max-width: 800px;
    margin: 2rem auto;
    background: linear-gradient(135deg, #2d4a2b 0%, #1a2e1a 50%, #0f1a0f 100%);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 2.5rem 2rem;
}
.legal-card-heading {
    text-align: center;
    color: #c9a875;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.legal-card-updated {
    text-align: center;
    color: #8b7355;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}
.legal-content.card-bg {
    background: linear-gradient(135deg, #3d2817 0%, #5c3d2e 50%, #3d2817 100%);
}
/* Wild Together - Mystical Medieval Jungle Theme */

/* ======= Base Reset ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    color: #1a1410;
    background: linear-gradient(135deg, #2d4a2b 0%, #1a2e1a 50%, #0f1a0f 100%);
    line-height: 1.7;
    overflow-x: hidden;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.brand-logo img {
    height: 40px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
.brand-logo .brand-title {
    font-size: 2rem;
    font-weight: bold;
    color: #c9a875;
    font-family: Georgia, serif;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ======= Header & Navigation ======= */
.site-header {
    background: linear-gradient(135deg, #3d2817 0%, #5c3d2e 50%, #3d2817 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #8b7355;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.site-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    color: #e6d5c3;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    position: relative;
    white-space: nowrap;
}

.nav-item:hover {
    background: rgba(201, 168, 117, 0.15);
    color: #c9a875;
    transform: translateY(-2px);
}

.nav-item.active {
    background: linear-gradient(135deg, rgba(201, 168, 117, 0.25), rgba(201, 168, 117, 0.15));
    color: #c9a875;
    box-shadow: 0 2px 8px rgba(201, 168, 117, 0.3);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 0.5rem;
    z-index: 2001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #e6d5c3;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.toggle-active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.toggle-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.toggle-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ======= Footer Branding ======= */
.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}
.footer-brand-logo img {
    height: 32px;
    filter: brightness(1.1);
}
.footer-brand-logo .footer-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #c9a875;
    font-family: Georgia, serif;
}
.footer-brand p {
    font-size: 1rem;
    color: #d4c4b0;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: linear-gradient(135deg, #3d2817 0%, #5c3d2e 100%);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        z-index: 2000;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }
    
    .site-nav.nav-open {
        max-height: 600px;
    }

    .nav-item {
        display: block;
        width: 100%;
        text-align: left;
        padding: 1.2rem 2rem;
        border-bottom: 1px solid rgba(201, 168, 117, 0.2);
        font-size: 1.1rem;
        font-weight: 600;
        background: none;
        color: #e6d5c3;
        border-radius: 0;
        box-shadow: none;
        transform: none;
    }
    
    .nav-item:last-child {
        border-bottom: none;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }
    
    .nav-item.active {
        background: rgba(201, 168, 117, 0.25);
        color: #c9a875;
        border-left: 4px solid #c9a875;
        border-bottom: 1px solid rgba(201, 168, 117, 0.2);
        box-shadow: none;
    }
    
    .nav-item:hover {
        background: rgba(201, 168, 117, 0.15);
        color: #c9a875;
        transform: none;
    }
    
    .header-wrap {
        padding: 1rem 1.5rem;
    }
    
    .brand-logo .brand-title {
        font-size: 1.6rem;
    }
}

/* ======= Hero Banner ======= */
.hero-banner {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1f3a1f 0%, #2d5a2d 50%, #1a4d1a 100%);
    border-bottom: 5px solid #8b7355;
    overflow: hidden;
}

.hero-banner::before,/* ======= Hero Banner ======= */
.hero-banner {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1f3a1f 0%, #2d5a2d 50%, #1a4d1a 100%);
    border-bottom: 5px solid #8b7355;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(139, 115, 85, 0.3), transparent 60%),
                radial-gradient(circle at 70% 60%, rgba(61, 40, 23, 0.4), transparent 60%);
    pointer-events: none;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #e6d5c3;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    color: #c9a875;
}

.hero-overlay p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button {
    background: linear-gradient(135deg, #8b7355 0%, #a68a6a 100%);
    color: #fff;
    padding: 1.3rem 3.5rem;
    border: 3px solid #c9a875;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    font-family: Georgia, serif;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.6);
    background: linear-gradient(135deg, #a68a6a 0%, #c9a875 100%);
}

/* ======= Notice Banner ======= */
.notice-banner {
    background: linear-gradient(135deg, #5c3d2e 0%, #7a5439 100%);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 3px solid #c9a875;
    border-bottom: 3px solid #c9a875;
}

.notice-wrapper h2 {
    font-size: 2rem;
    color: #c9a875;
    margin-bottom: 1.5rem;
}

.notice-primary {
    font-size: 1.3rem;
    color: #e6d5c3;
    font-weight: 600;
    margin-bottom: 1rem;
}

.notice-secondary {
    font-size: 1.1rem;
    color: #d4c4b0;
    margin-bottom: 2rem;
}

.info-button {
    background: #fff;
    color: #3d2817;
    padding: 1rem 2.8rem;
    border: 2px solid #c9a875;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Georgia, serif;
}

.info-button:hover {
    background: #c9a875;
    color: #fff;
    transform: scale(1.05);
}

.entertainment-hub {
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, #2d4a2b 0%, #1a2e1a 50%, #0f1a0f 100%);
}

.entertainment-hub.fullscreen {
    min-height: calc(100vh - 300px);
}

.hub-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.hub-wrap h1,
.hub-wrap h2 {
    text-align: center;
    color: #92a3b1;
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.hub-subtitle {
    text-align: center;
    color: #2d5266;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.game-card {
    background: #ffffff;
    border: 2px solid #b8dfe8;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 58, 82, 0.15);
    transition: all 0.3s ease;
}

.game-card:hover {
    border-color: #4da6c7;
    box-shadow: 0 15px 40px rgba(77, 166, 199, 0.3);
    transform: translateY(-5px);
}

.game-card h3 {
    background: linear-gradient(135deg, #4da6c7 0%, #3b8ba8 100%);
    color: #ffffff;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    padding: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-frame {
    width: 100%;
    height: 550px;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}
@media (max-width: 900px) {
    .game-item .game-iframe {
        max-width: 100%;
        height: 300px;
    }
}

@media (max-width: 600px) {
    .game-item {
        padding: 1rem;
    }
    .game-item .game-iframe {
        height: 180px;
    }
    .game-item h3 {
        font-size: 1.2rem;
    }
}

.experience-selector {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.selector-btn {
    background: linear-gradient(135deg, #3d2817 0%, #5c3d2e 100%);
    color: #e6d5c3;
    padding: 1.1rem 2.8rem;
    border: 2px solid #8b7355;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-family: Georgia, serif;
}

.selector-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    border-color: #c9a875;
}

.selector-btn.active-selector {
    background: linear-gradient(135deg, #8b7355 0%, #a68a6a 100%);
    border-color: #c9a875;
    color: #fff;
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.5);
}

.game-display {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
    border: 4px solid #8b7355;
}

.game-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.game-iframe.active-game {
    opacity: 1;
    visibility: visible;
}

/* ======= About Area ======= */
.about-area {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2d4a2b 0%, #3a5c38 100%);
}

.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.8rem;
    color: #c9a875;
    margin-bottom: 1.8rem;
}

.about-content p {
    font-size: 1.15rem;
    color: #e6d5c3;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 3px solid #8b7355;
}

@media (max-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ======= Testimonial Area ======= */
.testimonial-area {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a2e1a 0%, #0f1a0f 100%);
    text-align: center;
}

.testimonial-area h2 {
    font-size: 3rem;
    color: #c9a875;
    margin-bottom: 3.5rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-box {
    background: linear-gradient(135deg, #3d2817 0%, #4a3220 100%);
    padding: 2.8rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid #8b7355;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.4);
}

.user-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #c9a875;
    margin-bottom: 0.6rem;
}

.rating-stars {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 1.2rem;
}

.user-comment {
    font-size: 1.05rem;
    color: #d4c4b0;
    line-height: 1.8;
    font-style: italic;
}

/* ======= Features Area ======= */
.features-area {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2d4a2b 0%, #1a2e1a 100%);
    text-align: center;
}

.features-area h2 {
    font-size: 3rem;
    color: #c9a875;
    margin-bottom: 3.5rem;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, #1f3a1f 0%, #2a4a2a 100%);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid #8b7355;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.4);
    border-color: #c9a875;
}

.feature-symbol {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.6rem;
    color: #c9a875;
    margin-bottom: 1.2rem;
}

.feature-card p {
    font-size: 1.05rem;
    color: #d4c4b0;
    line-height: 1.7;
}

/* ======= Footer ======= */
.site-footer {
    background: linear-gradient(135deg, #0f1a0f 0%, #1a2e1a 100%);
    color: #e6d5c3;
    padding: 4.5rem 2rem 1.5rem;
    border-top: 4px solid #8b7355;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4.5rem;
    max-width: 1200px;
    margin: 0 auto 3.5rem;
}

.footer-brand img {
    height: 55px;
    margin-bottom: 1.2rem;
    filter: brightness(1.1);
}

.footer-brand p {
    font-size: 1rem;
    color: #d4c4b0;
}

.footer-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
}

.footer-column h4 {
    font-size: 1.3rem;
    color: #c9a875;
    margin-bottom: 1.3rem;
}

.footer-column a {
    display: block;
    color: #e6d5c3;
    text-decoration: none;
    margin-bottom: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #c9a875;
}

.footer-notice {
    background: rgba(139, 115, 85, 0.15);
    padding: 1.8rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2.5rem;
    border: 2px solid rgba(139, 115, 85, 0.3);
}

.footer-notice p {
    font-size: 1rem;
    color: #d4c4b0;
}

.footer-copyright {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(139, 115, 85, 0.3);
}

.footer-copyright p {
    font-size: 0.95rem;
    color: #b8a898;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-navigation {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ======= Contact Form ======= */
.contact-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2d4a2b 0%, #1a2e1a 100%);
}

.contact-section h1 {
    font-size: 3.5rem;
    color: #c9a875;
    margin-bottom: 1.2rem;
    text-align: center;
}

.section-intro {
    font-size: 1.3rem;
    color: #d4c4b0;
    text-align: center;
    margin-bottom: 3.5rem;
}

.contact-form-wrapper {
    max-width: 750px;
    margin: 0 auto;
    background: linear-gradient(135deg, #3d2817 0%, #4a3220 100%);
    padding: 3.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 3px solid #8b7355;
}

.input-group {
    margin-bottom: 2.2rem;
}

.input-group label {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: #c9a875;
    margin-bottom: 0.7rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1.1rem;
    border: 2px solid #8b7355;
    border-radius: 8px;
    font-size: 1.05rem;
    font-family: Georgia, serif;
    background: rgba(230, 213, 195, 0.1);
    color: #e6d5c3;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #c9a875;
    background: rgba(230, 213, 195, 0.15);
}

.form-submit {
    background: linear-gradient(135deg, #8b7355 0%, #a68a6a 100%);
    color: #fff;
    padding: 1.2rem 3.5rem;
    border: 2px solid #c9a875;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    width: 100%;
    font-family: Georgia, serif;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 115, 85, 0.5);
    background: linear-gradient(135deg, #a68a6a 0%, #c9a875 100%);
}

/* ======= Legal Content ======= */
.legal-content {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a2e1a 0%, #2d4a2b 100%);
    min-height: 65vh;
}

.legal-content h1 {
    font-size: 3.5rem;
    color: #c9a875;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 1.05rem;
    color: #8b7355;
    margin-bottom: 3.5rem;
}

.legal-content h2 {
    font-size: 2rem;
    color: #c9a875;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}

.legal-content p {
    font-size: 1.1rem;
    color: #d4c4b0;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.legal-content ul {
    margin-left: 2.5rem;
    margin-bottom: 1.8rem;
}

.legal-content li {
    font-size: 1.1rem;
    color: #d4c4b0;
    line-height: 1.9;
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: #c9a875;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #d4af37;
}

/* ======= Scroll Button ======= */
.scroll-button {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b7355 0%, #a68a6a 100%);
    color: #fff;
    border: 3px solid #c9a875;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.scroll-button.show-scroll {
    opacity: 1;
    visibility: visible;
}

.scroll-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.6);
}

/* ======= Age Verification Modal ======= */
.verification-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.verification-box {
    background: linear-gradient(135deg, #3d2817 0%, #5c3d2e 100%);
    padding: 3.5rem 3rem;
    border-radius: 15px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.7);
    border: 4px solid #c9a875;
}

.verification-box h2 {
    font-size: 2.5rem;
    color: #c9a875;
    margin-bottom: 1.8rem;
}

.verification-box p {
    font-size: 1.15rem;
    color: #e6d5c3;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.verification-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.confirm-btn {
    background: linear-gradient(135deg, #8b7355 0%, #a68a6a 100%);
    color: #fff;
    padding: 1.2rem 3rem;
    border: 2px solid #c9a875;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    font-family: Georgia, serif;
}

.confirm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 115, 85, 0.6);
}

.decline-btn {
    background: transparent;
    color: #d4c4b0;
    padding: 1.2rem 3rem;
    border: 2px solid #8b7355;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Georgia, serif;
}

.decline-btn:hover {
    background: rgba(139, 115, 85, 0.2);
    border-color: #c9a875;
}

/* ======= Disclaimer Modal ======= */
.disclaimer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow-y: auto;
    padding: 2rem;
}

.disclaimer-box {
    background: linear-gradient(135deg, #3d2817 0%, #4a3220 100%);
    padding: 3.5rem;
    border-radius: 15px;
    max-width: 850px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.7);
    border: 4px solid #c9a875;
}

.disclaimer-box h2 {
    font-size: 2.8rem;
    color: #c9a875;
    margin-bottom: 2.5rem;
}

.disclaimer-box h3 {
    font-size: 1.8rem;
    color: #a68a6a;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

.disclaimer-box p {
    font-size: 1.1rem;
    color: #e6d5c3;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.close-btn {
    background: linear-gradient(135deg, #8b7355 0%, #a68a6a 100%);
    color: #fff;
    padding: 1.2rem 3rem;
    border: 2px solid #c9a875;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    font-family: Georgia, serif;
}

.close-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 115, 85, 0.6);
}

/* ======= Responsive ======= */
@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.8rem;
    }
    
    .hero-overlay p {
        font-size: 1.2rem;
    }
        .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .game-frame {
        height: auto;
    }

    .game-card h3 {
        font-size: 1rem;
        padding: 0.8rem;
    }
    
    .game-area h2,
    .testimonial-area h2,
    .features-area h2 {
        font-size: 2.3rem;
    }
    
    .verification-box,
    .disclaimer-box {
        margin: 1rem;
        padding: 2.5rem 2rem;
    }
    
    .verification-actions {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .confirm-btn,
    .decline-btn {
        width: 100%;
    }
}