:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a24;
    --bg-card-hover: #22222e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    --accent: #6366f1;
    --accent-hover: #818cf8;
    --accent-glow: rgba(99, 102, 241, 0.3);
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.6);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans SC', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.95);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-en {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-cn {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

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

.nav-link {
    padding: 10px 20px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-card);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switch {
    display: flex;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 4px;
}

.lang-btn {
    padding: 6px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--accent);
    color: var(--text-primary);
}

.lang-btn:hover:not(.active) {
    color: var(--text-primary);
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.hamburger {
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 15, 0.4) 0%,
        rgba(10, 10, 15, 0.6) 50%,
        var(--bg-primary) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: var(--header-height);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span {
    display: block;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent) 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: var(--text-primary);
    box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--accent-glow);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.games {
    background: var(--bg-secondary);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.game-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.game-media {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    width: 64px;
    height: 64px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.play-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.1);
}

.game-info {
    padding: 24px;
}

.game-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.game-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.game-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.game-platform,
.game-status {
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 20px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

.game-status {
    background: var(--accent);
    color: var(--text-primary);
}

.game-status.early-access {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.3);
}

.game-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent);
}

.game-link:hover {
    color: var(--accent-hover);
}

.game-stores {
    display: flex;
    gap: 12px;
    margin: 16px 0;
}

.store-link {
    width: 36px;
    height: 36px;
    background: var(--bg-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.store-link svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.store-link:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.store-link:hover svg {
    color: var(--text-primary);
}

.about {
    background: var(--bg-primary);
}

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

.about-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-desc {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.news {
    background: var(--bg-secondary);
}

.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.news-item:hover {
    border-color: var(--accent);
    transform: translateX(8px);
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
}

.news-day {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.news-month {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.news-content {
    flex: 1;
}

.news-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.news-excerpt {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.contact {
    background: var(--bg-primary);
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.contact-info {
    display: flex;
    gap: 48px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-card);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1rem;
    font-weight: 500;
}

.contact-value:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link svg {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-4px);
}

.social-link:hover svg {
    color: var(--text-primary);
}

/* Language-specific social links */
.en-only {
    display: none;
}

.zh-only {
    display: none;
}

/* Show English social links when lang is en */
html[lang="en"] .en-only {
    display: flex;
}

html[lang="en"] .zh-only {
    display: none;
}

/* Show Chinese social links when lang is zh-CN */
html[lang="zh-CN"] .zh-only {
    display: flex;
}

html[lang="zh-CN"] .en-only {
    display: none;
}

.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    width: 120px;
    opacity: 0.8;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-link {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
}

.video-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
}

.video-close svg {
    width: 32px;
    height: 32px;
}

.video-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.video-player {
    width: 100%;
    border-radius: var(--radius);
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 16px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .lang-switch {
        display: none;
    }
    
    .nav-menu.active + .nav-actions .lang-switch {
        display: flex;
        position: absolute;
        top: calc(var(--header-height) + 200px);
        left: 50%;
        transform: translateX(-50%);
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .stat-item {
        flex: 1;
        min-width: 100px;
        text-align: center;
    }
    
    .news-item {
        flex-direction: column;
        text-align: center;
    }
    
    .news-date {
        flex-direction: row;
        gap: 8px;
        min-width: auto;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }
    
    .game-info {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(ellipse 800px 600px at 20% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 600px 400px at 80% 80%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 400px 300px at 60% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

/* Hero Section - 右上角和左下角装饰 */
.hero::before {
    content: '';
    position: absolute;
    top: 8%;
    right: 3%;
    width: 180px;
    height: 180px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 12%;
    left: 2%;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(99, 102, 241, 0.12);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Hero 额外装饰 - 小圆点群 */
.hero .decorative-dots {
    position: absolute;
    top: 25%;
    right: 15%;
    width: 80px;
    height: 80px;
    background-image: 
        radial-gradient(circle, rgba(168, 85, 247, 0.3) 2px, transparent 2px),
        radial-gradient(circle, rgba(99, 102, 241, 0.3) 2px, transparent 2px);
    background-size: 20px 20px, 30px 30px;
    background-position: 0 0, 10px 10px;
    pointer-events: none;
    z-index: 2;
    animation: float 8s ease-in-out infinite reverse;
}

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

/* Games Section - 顶部和底部空白区域装饰 */
.games::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    background: 
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(99, 102, 241, 0.08) 20%, 
            rgba(99, 102, 241, 0.08) 80%, 
            transparent 100%);
    border-radius: 30px;
    pointer-events: none;
    z-index: 0;
}

.games::after {
    content: '';
    position: absolute;
    bottom: 8%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: 
        conic-gradient(from 0deg, 
            rgba(168, 85, 247, 0.1) 0deg, 
            rgba(99, 102, 241, 0.1) 90deg, 
            rgba(168, 85, 247, 0.1) 180deg, 
            rgba(99, 102, 241, 0.1) 270deg, 
            rgba(168, 85, 247, 0.1) 360deg);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* About Section - 左右两侧装饰 */
.about::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 2%;
    width: 80px;
    height: 200px;
    background: 
        linear-gradient(180deg, 
            rgba(99, 102, 241, 0.05) 0%, 
            rgba(168, 85, 247, 0.08) 50%, 
            rgba(99, 102, 241, 0.05) 100%);
    border-radius: 40px;
    pointer-events: none;
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 3%;
    width: 60px;
    height: 150px;
    border: 2px solid rgba(168, 85, 247, 0.1);
    border-radius: 30px;
    pointer-events: none;
    z-index: 0;
}

/* News Section - 顶部装饰线和小元素 */
.news::before {
    content: '';
    position: absolute;
    top: 8%;
    left: 10%;
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(99, 102, 241, 0.3) 0%, 
        rgba(168, 85, 247, 0.3) 50%, 
        transparent 100%);
    border-radius: 2px;
    pointer-events: none;
    z-index: 0;
}

.news::after {
    content: '';
    position: absolute;
    top: 8%;
    left: 10%;
    width: 8px;
    height: 8px;
    background: rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    transform: translateY(-2.5px);
    pointer-events: none;
    z-index: 0;
}

/* News 额外装饰 - 右下角 */
.news .decorative-corner {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 120px;
    height: 120px;
    border-right: 2px solid rgba(168, 85, 247, 0.1);
    border-bottom: 2px solid rgba(168, 85, 247, 0.1);
    border-radius: 0 0 20px 0;
    pointer-events: none;
    z-index: 2;
}

/* Contact Section - 顶部和底部装饰 */
.contact::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 8%;
    width: 60px;
    height: 60px;
    background: 
        linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 16px;
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 6%;
    width: 100px;
    height: 100px;
    border: 2px dashed rgba(168, 85, 247, 0.15);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Contact 额外装饰 - 小方块群 */
.contact .decorative-squares {
    position: absolute;
    top: 20%;
    left: 4%;
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: 2;
}

.contact .decorative-squares::before,
.contact .decorative-squares::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 6px;
}

.contact .decorative-squares::before {
    top: 0;
    left: 0;
}

.contact .decorative-squares::after {
    bottom: 0;
    right: 0;
}

.section {
    position: relative;
    overflow: hidden;
}

.games {
    position: relative;
}

.about {
    position: relative;
}

.news {
    position: relative;
}

.contact {
    position: relative;
}

.decorative-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(99, 102, 241, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 2;
}

.games .decorative-dots {
    top: 50%;
    left: 2%;
    opacity: 0.5;
}

.about .decorative-dots {
    top: 30%;
    right: 3%;
    opacity: 0.4;
}

@media (max-width: 768px) {
    .hero::before,
    .hero::after,
    .games::before,
    .games::after,
    .about::before,
    .about::after,
    .news::before,
    .news::after,
    .contact::before,
    .contact::after {
        display: none;
    }
    
    body::before {
        background: 
            radial-gradient(ellipse 400px 300px at 50% 30%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
    }
}
