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

:root {
    --primary-purple: #6366F1;
    --secondary-pink: #EC4899;
    --accent-cyan: #06B6D4;
    --accent-orange: #F97316;
    --light-bg: #F8FAFC;
    --card-bg: #FFFFFF;
    --dark-text: #1E293B;
    --gray-text: #64748B;
    --success-green: #10B981;
    --warning-yellow: #F59E0B;
    --border-color: #E2E8F0;
    --shadow-color: rgba(15, 23, 42, 0.08);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 50%, #F8FAFC 100%);
    background-attachment: fixed;
    color: var(--dark-text);
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
}

.header::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1240px;
    height: calc(100% - 40px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 
        0 20px 60px rgba(15, 23, 42, 0.1),
        0 0 40px rgba(99, 102, 241, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    z-index: -1;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
}

.header.scrolled::before {
    box-shadow: 
        0 25px 80px rgba(15, 23, 42, 0.15),
        0 0 50px rgba(99, 102, 241, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-pink));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--gray-text);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-pink));
    transition: width 0.3s ease;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-purple);
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-pink));
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    background: url('bg.avif') center/cover no-repeat;
}

.hero-content h1 {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--dark-text), var(--primary-purple), var(--secondary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-content p {
    font-size: 1.25rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-image {
    max-width: 850px;
    width: 100%;
    height: 450px;
    margin: 3rem auto;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.1), 
        rgba(236, 72, 153, 0.1), 
        rgba(6, 182, 212, 0.1));
    box-shadow: 
        0 20px 60px rgba(99, 102, 241, 0.15),
        0 10px 40px rgba(236, 72, 153, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border: 2px solid var(--border-color);
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    display: flex;
    align-items: center;
    justify-content: center;
/* Hero image styling for <img> */
.hero-img {
    max-width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: block;
}
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
    color: white;
    padding: 16px 48px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 40px rgba(99, 102, 241, 0.4),
        0 0 20px rgba(236, 72, 153, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary-pink), var(--accent-cyan));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 50px rgba(99, 102, 241, 0.5),
        0 0 30px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    padding: 14px 40px;
    border: 2px solid var(--primary-purple);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.btn-secondary span {
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    color: white;
    border-color: var(--secondary-pink);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-secondary:hover::before {
    transform: translateY(0);
}

/* Disclaimer Banner */
.disclaimer-banner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(236, 72, 153, 0.2);
    border-radius: 24px;
    padding: 40px;
    margin: 60px auto;
    max-width: 950px;
    box-shadow: 
        0 20px 60px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
}

.disclaimer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.05) 0%, 
        transparent 50%, 
        rgba(99, 102, 241, 0.05) 100%);
    pointer-events: none;
}

.disclaimer-icon {
    font-size: 3.5rem;
    display: block;
    text-align: center;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.5));
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.disclaimer-banner h3 {
    color: var(--dark-text);
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-pink), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.disclaimer-banner p {
    color: var(--gray-text);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
}

.disclaimer-banner .btn-secondary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Game Section */
.game-section {
    padding: 80px 0;
    text-align: center;
}

.game-section h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dark-text), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-frame {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    border: 2px solid var(--border-color);
    border-radius: 24px;
    margin: 0 auto;
    display: block;
    box-shadow: 
        0 20px 80px rgba(99, 102, 241, 0.15),
        0 10px 40px rgba(236, 72, 153, 0.1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* About Section */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 60px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 80px rgba(15, 23, 42, 0.08);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dark-text), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: var(--gray-text);
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-image {
    flex: 1;
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.1), 
        rgba(236, 72, 153, 0.1));
    box-shadow: 
        0 20px 60px rgba(99, 102, 241, 0.15),
        0 10px 40px rgba(236, 72, 153, 0.1);
    border: 2px solid var(--border-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
/* About image styling for <img> */
.about-img {
    max-width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: block;
}
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 40% 40%, rgba(99, 102, 241, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 60%);
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
}

.reviews-section h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dark-text), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.03) 0%, 
        transparent 50%, 
        rgba(236, 72, 153, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-purple);
    box-shadow: 
        0 20px 60px rgba(99, 102, 241, 0.15),
        0 10px 40px rgba(236, 72, 153, 0.1);
}

.review-card:hover::before {
    opacity: 1;
}

.review-stars {
    color: var(--warning-yellow);
    font-size: 1.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.5));
}

.review-card p {
    color: var(--gray-text);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.reviewer-name {
    color: var(--accent-cyan);
    font-weight: 700;
    text-align: right;
    position: relative;
    z-index: 1;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    position: relative;
}

.features-section h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dark-text), var(--secondary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-box:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(6, 182, 212, 0.15),
        0 10px 40px rgba(99, 102, 241, 0.1);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.6));
    position: relative;
    z-index: 1;
}

.feature-box h3 {
    color: var(--dark-text);
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-box p {
    color: var(--gray-text);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    padding: 100px 20px 40px;
    margin-top: 120px;
    position: relative;
    background: transparent;
}

.footer > .container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 32px;
    padding: 60px 40px 40px;
    border: 1px solid var(--border-color);
    box-shadow: 
        0 30px 80px rgba(15, 23, 42, 0.1),
        0 20px 60px rgba(99, 102, 241, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
}

.footer > .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-disclaimer {
    background: rgba(236, 72, 153, 0.05);
    border: 2px solid rgba(236, 72, 153, 0.15);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-disclaimer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.03) 0%, 
        transparent 100%);
}

.footer-disclaimer p {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 240px;
}

.footer-section h3 {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    font-size: 1.4rem;
    font-weight: 800;
}

.footer-section p {
    color: var(--gray-text);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section ul li a {
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-purple);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--gray-text);
    font-size: 0.95rem;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 40px rgba(99, 102, 241, 0.4),
        0 0 20px rgba(236, 72, 153, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 15px 50px rgba(99, 102, 241, 0.5),
        0 0 30px rgba(236, 72, 153, 0.4);
}

/* Popup Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--border-color);
    border-radius: 32px;
    padding: 60px 50px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 
        0 30px 100px rgba(15, 23, 42, 0.2),
        0 20px 60px rgba(99, 102, 241, 0.15);
    animation: slideUp 0.5s ease;
    position: relative;
    overflow: hidden;
}

.popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.03) 0%, 
        transparent 50%, 
        rgba(236, 72, 153, 0.03) 100%);
}

@keyframes slideUp {
    from { transform: translateY(50px) scale(0.9); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.popup-content h2 {
    background: linear-gradient(135deg, var(--dark-text), var(--secondary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-size: 2.2rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.popup-content p {
    color: var(--gray-text);
    margin-bottom: 24px;
    line-height: 1.9;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.popup-buttons {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* Content Pages */
.content-page {
    padding: 120px 0 80px;
    min-height: 70vh;
}

.content-page h1 {
    font-size: 3.2rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 900;
    background: linear-gradient(135deg, var(--dark-text), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.content-section h2 {
    color: var(--dark-text);
    margin-bottom: 24px;
    font-size: 2rem;
    font-weight: 800;
}

.content-section h3 {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    margin-top: 32px;
    font-size: 1.4rem;
    font-weight: 700;
}

.content-section p {
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.9;
}

.content-section ul {
    color: var(--gray-text);
    margin-left: 30px;
    margin-bottom: 20px;
    line-height: 1.9;
}

.content-section a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.content-section a:hover {
    color: var(--primary-purple);
    border-bottom-color: var(--primary-purple);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.contact-form h3 {
    color: var(--dark-text);
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 800;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(248, 250, 252, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--dark-text);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
}

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

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.contact-info h3 {
    color: var(--dark-text);
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 800;
}

.contact-item {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h4 {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-item p {
    color: var(--gray-text);
    margin-bottom: 10px;
}

.contact-item a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-purple);
}

/* Responsive Design */
@media (max-width: 968px) {
    .header::before {
        top: 15px;
        width: calc(100% - 30px);
        height: calc(100% - 30px);
    }

    .nav-container {
        padding: 0 30px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 95px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        width: calc(100% - 30px);
        left: -100%;
        margin-left: 15px;
        text-align: center;
        transition: left 0.4s ease;
        padding: 40px 0;
        box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
        border: 1px solid var(--border-color);
        border-radius: 20px;
    }

    .nav-menu.active {
        left: 15px;
    }

    .hamburger {
        display: flex;
        z-index: 1;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

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

    .about-content {
        flex-direction: column;
        gap: 50px;
    }

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

    .footer-content {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 80px 15px 30px;
    }

    .footer > .container {
        padding: 50px 30px 30px;
    }
}

@media (max-width: 600px) {
    .header::before {
        top: 10px;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        border-radius: 16px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        width: calc(100% - 20px);
        margin-left: 10px;
        border-radius: 16px;
    }

    .nav-menu.active {
        left: 10px;
    }

    .footer {
        padding: 60px 10px 20px;
    }

    .footer > .container {
        padding: 40px 25px 25px;
        border-radius: 24px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .popup-content {
        padding: 50px 30px;
    }

    .content-section,
    .contact-form,
    .contact-info {
        padding: 35px;
    }

    .about-content {
        padding: 40px;
    }
}

/* Additional modern effects */
.game-info,
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.info-box,
.info-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
}

.info-box:hover,
.info-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.15);
}

.info-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.5));
}

.info-box h4,
.info-item h3 {
    color: var(--dark-text);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.info-box p,
.info-item p {
    color: var(--gray-text);
    line-height: 1.8;
}

.info-detail {
    font-size: 0.9rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

/* Form message styling */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

/* Checkbox styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-label a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    color: var(--primary-purple);
}

/* Contact wrappers */
.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 35px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dark-text), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-section {
    padding: 80px 0;
}

/* Game info section specific */
.game-info h3 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dark-text), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 800;
    background: linear-gradient(135deg, var(--dark-text), var(--secondary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.15);
}

.faq-item h3 {
    color: var(--dark-text);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.faq-item p {
    color: var(--gray-text);
    line-height: 1.8;
}

/* Contact Note */
.contact-note {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 20px;
    padding: 35px;
    margin-top: 40px;
}

.contact-note h3 {
    color: var(--dark-text);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-note p {
    color: var(--gray-text);
    line-height: 1.8;
}

.contact-note a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
}

.contact-note a:hover {
    color: var(--primary-purple);
}
