/* Game screen only styles (no container) */
.game-screen-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 80vh;
    margin-top: 120px;
    margin-bottom: 100px;
}

.game-screen-frame {
    width: 900px;
    height: 550px;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 15px 50px rgba(139, 21, 56, 0.25);
    border: 5px solid #d4af37;
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Lato:wght@400;700;900&display=swap');

:root {
    --burgundy-wine: #8b1538;
    --burgundy-dark: #5d0e2c;
    --gold-antique: #d4af37;
    --gold-light: #f4e5b2;
    --emerald-dark: #0f5132;
    --emerald-rich: #1a7f50;
    --parchment-warm: #f5e6d3;
    --sepia-brown: #704214;
    --cream-soft: #fef9f3;
    --text-primary: #2c1810;
    --text-secondary: #5a4a3a;
    
    --ornate-gradient: linear-gradient(135deg, var(--burgundy-wine) 0%, var(--burgundy-dark) 100%);
    --golden-shine: linear-gradient(135deg, var(--gold-antique) 0%, var(--gold-light) 50%, var(--gold-antique) 100%);
    --emerald-depth: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-rich) 100%);
    --book-shadow: 0 10px 40px rgba(139, 21, 56, 0.2);
    --ornate-border: 3px double var(--gold-antique);
}

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: linear-gradient(to bottom, var(--parchment-warm) 0%, var(--cream-soft) 50%, var(--parchment-warm) 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(93, 14, 44, 0.98) 0%, rgba(139, 21, 56, 0.95) 100%);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(139, 21, 56, 0.3);
    z-index: 1000;
    border-bottom: var(--ornate-border);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-antique);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gold-antique);
    border-radius: 2px;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gold-light);
    font-weight: 700;
    font-size: 1rem;
    padding: 10px 18px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--gold-antique);
    border-color: var(--gold-antique);
    background: rgba(212, 175, 55, 0.1);
}

.nav-links a.active {
    background: var(--gold-antique);
    color: var(--burgundy-dark);
    border-color: var(--gold-antique);
}

/* Hero Section - Redesigned with hero.jpg */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.95) 0%, rgba(93, 14, 44, 0.90) 100%), 
                url('hero.jpg') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    padding: 140px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(212, 175, 55, 0.03) 2px,
        rgba(212, 175, 55, 0.03) 4px
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--golden-shine);
    color: var(--burgundy-dark);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5),
                 0 0 30px rgba(212, 175, 55, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--parchment-warm);
    margin-bottom: 45px;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.btn-outline {
    background: transparent;
    color: var(--gold-light);
    border: 2px solid var(--gold-antique);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gold-antique);
    color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.hero-decorative {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.2);
    animation: float 20s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 8%;
    animation-delay: 5s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 15%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.5;
    }
}

.btn {
    display: inline-block;
    padding: 15px 42px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.8px;
    font-family: 'Lato', sans-serif;
}

.btn-primary {
    background: var(--golden-shine);
    color: var(--burgundy-dark);
    box-shadow: var(--book-shadow);
    border: 2px solid var(--gold-antique);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--burgundy-wine);
    border: 3px solid var(--burgundy-wine);
}

.btn-secondary:hover {
    background: var(--burgundy-wine);
    color: var(--gold-light);
    transform: translateY(-3px);
}

.disclaimer-box {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.08) 0%, rgba(93, 14, 44, 0.12) 100%);
    border: var(--ornate-border);
    border-radius: 10px;
    padding: 35px;
    margin: 50px auto;
    max-width: 900px;
    text-align: center;
    box-shadow: var(--book-shadow);
    position: relative;
}

.disclaimer-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--golden-shine);
    border-radius: 10px;
    z-index: -1;
    opacity: 0.3;
}

.disclaimer-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--burgundy-wine);
    margin-bottom: 18px;
    font-weight: 700;
}

.disclaimer-box p {
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-bottom: 22px;
    line-height: 1.8;
}



.about-section,
.reviews-section,
.features-section,
.contact-section,
.legal-section {
    padding: 70px 0;
}

/* About Section - Redesigned with hero2.jpg */
.about-section {
    position: relative;
    background: linear-gradient(135deg, var(--cream-soft) 0%, var(--parchment-warm) 100%);
    padding: 100px 0;
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, var(--cream-soft) 0%, transparent 10%, transparent 90%, var(--cream-soft) 100%),
                url('hero2.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 70px;
}

.about-label {
    display: inline-block;
    color: var(--emerald-rich);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.about-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: var(--burgundy-wine);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(139, 21, 56, 0.1);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--golden-shine);
    margin: 0 auto;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.about-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.about-feature {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 230, 211, 0.9) 100%);
    border-radius: 12px;
    border-left: 5px solid var(--gold-antique);
    box-shadow: 0 8px 30px rgba(139, 21, 56, 0.08);
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(139, 21, 56, 0.15);
    border-left-width: 8px;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--golden-shine);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.feature-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--burgundy-wine);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 21, 56, 0.25);
    border: 5px solid var(--gold-antique);
}

.about-image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-card:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(139, 21, 56, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    width: 100%;
}

.overlay-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gold-antique);
    color: var(--burgundy-dark);
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 6px;
    margin-bottom: 10px;
}

.overlay-content p {
    color: var(--gold-light);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--ornate-gradient);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.2);
    border: 2px solid var(--gold-antique);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--parchment-warm);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 55px;
    color: var(--burgundy-wine);
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.review-card {
    background: var(--cream-soft);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--book-shadow);
    transition: all 0.3s ease;
    border: 3px solid var(--gold-antique);
    position: relative;
}

.review-card::before {
    content: '❝';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    color: var(--gold-antique);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 21, 56, 0.3);
}

.review-card .stars {
    font-size: 1.5rem;
    color: var(--gold-antique);
    margin-bottom: 18px;
}

.review-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 22px;
    line-height: 1.8;
    font-style: italic;
}

.review-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--burgundy-wine);
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.feature-card {
    background: var(--cream-soft);
    padding: 45px 35px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--book-shadow);
    border: var(--ornate-border);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 21, 56, 0.3);
    border-color: var(--emerald-rich);
}

.feature-card .icon {
    font-size: 3.5rem;
    margin-bottom: 22px;
    display: block;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--burgundy-wine);
    margin-bottom: 18px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 55px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form {
    background: var(--cream-soft);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--book-shadow);
    border: var(--ornate-border);
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 3px solid var(--gold-light);
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
    background: var(--parchment-warm);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-antique);
    background: white;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.contact-info {
    background: linear-gradient(135deg, var(--burgundy-wine) 0%, var(--burgundy-dark) 100%);
    padding: 45px;
    border-radius: 8px;
    box-shadow: var(--book-shadow);
    color: var(--gold-light);
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold-antique);
    margin-bottom: 28px;
    font-weight: 700;
}

.contact-info p {
    color: var(--gold-light);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

.legal-content {
    max-width: 950px;
    margin: 0 auto;
    background: var(--cream-soft);
    padding: 55px;
    border-radius: 8px;
    box-shadow: var(--book-shadow);
    border: var(--ornate-border);
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--burgundy-wine);
    margin-top: 40px;
    margin-bottom: 18px;
    font-weight: 700;
}

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

.legal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--emerald-dark);
    margin-top: 28px;
    margin-bottom: 14px;
    font-weight: 700;
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 18px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 18px;
}

.legal-content li {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 10px;
}

.last-updated {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 35px;
    font-style: italic;
}

footer {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy-wine) 100%);
    color: var(--gold-light);
    padding: 70px 0 0;
    margin-top: 90px;
    border-top: 5px solid var(--gold-antique);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 45px;
    margin-bottom: 45px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 22px;
    color: var(--gold-antique);
    font-weight: 700;
}

.footer-section p {
    color: var(--gold-light);
    line-height: 1.8;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--gold-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 6px 0;
}

.footer-links a:hover {
    color: var(--gold-antique);
    padding-left: 12px;
}

.footer-notice {
    background: rgba(212, 175, 55, 0.15);
    border: 3px solid var(--gold-antique);
    border-radius: 8px;
    padding: 28px;
    margin: 35px 0;
    text-align: center;
}

.footer-notice p {
    color: var(--gold-light);
    font-size: 1rem;
    line-height: 1.8;
}

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

.footer-bottom p {
    color: var(--gold-light);
    font-size: 0.95rem;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--golden-shine);
    color: var(--burgundy-dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--gold-antique);
    font-size: 1.6rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--book-shadow);
    z-index: 999;
    font-weight: 900;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.age-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(12px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-popup.active {
    display: flex;
}

.popup-content {
    background: var(--cream-soft);
    padding: 55px;
    border-radius: 10px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    border: 5px double var(--gold-antique);
}

.popup-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 22px;
    color: var(--burgundy-wine);
    font-weight: 800;
}

.popup-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.popup-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        background: linear-gradient(to bottom, rgba(93, 14, 44, 0.98) 0%, rgba(139, 21, 56, 0.98) 100%);
        backdrop-filter: blur(8px);
        flex-direction: column;
        padding: 35px;
        gap: 22px;
        box-shadow: 0 15px 40px rgba(139, 21, 56, 0.4);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 14px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .decorative-circle {
        display: none;
    }
    
    .about-header h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-background {
        width: 100%;
        opacity: 0.08;
    }
    
    .about-feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .game-screen-frame   {
        height: auto;
        aspect-ratio: 16 / 9;
    }
    
    .popup-content {
        margin: 20px;
        padding: 40px 30px;
    }
    
    .legal-content {
        padding: 35px 25px;
    }
    
    .contact-form {
        padding: 35px 25px;
    }
}