@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&family=Inter:wght@300;400;600&display=swap');

:root {
    --primary-color: #8b5cf6;
    --secondary-color: #fb7185;
    --accent-color: #f59e0b;
    --light-bg: #faf8f5;
    --cream-bg: #f5f1ea;
    --text-dark: #374151;
    --text-light: #6b7280;
    --warning-color: #ef4444;
    --success-color: #10b981;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1ea 100%);
    color: var(--text-dark);
    min-height: 100vh;
    line-height: 1.6;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 2px 20px rgba(139, 92, 246, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    border-radius: 25px;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 0.15;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero {
    min-height: 60vh;
    background: url('bg.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 4rem 2rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 4rem 2rem;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* Dull overlay */
    z-index: 1;
    pointer-events: none;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
 background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;    position: relative;
    
    z-index: 2;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.3);
    text-transform: capitalize;
    letter-spacing: 0.5px;
    z-index: 2;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.disclaimer-section {
    background: linear-gradient(135deg, rgba(251, 113, 133, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 900px;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.1);
    position: relative;
}

.disclaimer-section::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    background: var(--light-bg);
    padding: 0.5rem;
    border-radius: 50%;
}

.disclaimer-section h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--warning-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.disclaimer-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-dark);
}

.games-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 0;
}

.game-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    margin: 2rem 0;
}

.game-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.game-section p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.game-frame {
    width: 100%;
    max-width: 900px;
    height: 550px;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    margin: 0 auto;
    display: block;
    aspect-ratio: 16/9;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    background: white;
}

.game-frame:hover {
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
}

.about-section,
.reviews-section,
.features-section,
.contact-section {
    padding: 4rem 0;
}

.about-section h2,
.reviews-section h2,
.features-section h2,
.contact-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
    border: 3px solid var(--primary-color);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.2);
    border-color: var(--secondary-color);
}

.review-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--text-dark);
}

.review-card h4 {
    color: var(--primary-color);
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(139, 92, 246, 0.2);
    border-color: var(--secondary-color);
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-form {
    max-width: 700px;
    margin: 2rem auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--light-bg);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

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

footer {
    background: white;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    box-shadow: 0 -4px 20px rgba(139, 92, 246, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

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

.footer-notice {
    text-align: center;
    padding: 1.5rem;
    background: var(--cream-bg);
    border-radius: 15px;
    margin: 2rem 0 1.5rem;
    border: 2px solid rgba(251, 113, 133, 0.2);
    color: var(--text-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--text-light);
}

.age-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

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

.popup-content {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 15px 60px rgba(139, 92, 246, 0.3);
    max-width: 550px;
    text-align: center;
}

.popup-content h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.popup-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.popup-buttons button {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-confirm {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.3);
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(139, 92, 246, 0.4);
}

.btn-decline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-light);
}

.btn-decline:hover {
    background: var(--text-light);
    color: white;
    transform: translateY(-3px);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.3);
}

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

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(139, 92, 246, 0.4);
}

.content-section {
    padding: 4rem 0;
}

.content-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.content-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-section p,
.content-section ul {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-section ul {
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.8rem;
}

/* Enhanced Legal Pages Styling */
.legal-section {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.1);
}

.legal-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--light-bg);
    border-radius: 15px;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
    border-left: 4px solid var(--primary-color);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-content h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.legal-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.legal-content h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: justify;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    line-height: 1.7;
    position: relative;
}

.legal-content li::before {
    content: '●';
    color: var(--primary-color);
    position: absolute;
    left: -1.5rem;
    font-weight: bold;
}

/* Important Notice Box */
.important-notice {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(251, 113, 133, 0.1));
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0 3rem;
    position: relative;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.1);
}

.important-notice::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    background: var(--light-bg);
    padding: 0.5rem;
    border-radius: 50%;
}

.important-notice h2 {
    color: var(--warning-color);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.important-notice p {
    text-align: center;
    font-weight: 600;
    color: var(--warning-color);
}

/* Contact Page Enhancements */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-container h3,
.contact-info h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--light-bg);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    appearance: none;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
    border-color: var(--primary-color);
}

.contact-item h4 {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.faq-preview {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.08);
}

.faq-preview h4 {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h5 {
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.support-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.support-card:hover::before {
    transform: scaleX(1);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.15);
    border-color: var(--secondary-color);
}

.support-card h3 {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsiveness for Legal Pages */
@media (max-width: 768px) {
    .legal-section h1 {
        font-size: 2.5rem;
    }
    
    .legal-content {
        padding: 0 1rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .last-updated {
        margin-left: 0;
        transform: none;
        display: block;
        text-align: center;
    }
}

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

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s ease;
        border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 0.8rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: auto;
        aspect-ratio: 16/9;
    }

    .features-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .popup-content {
        margin: 1rem;
        padding: 2rem;
    }

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