:root {
    /* Colors from your app */
    --bg-dark: #0A0A0A;
    --bg-card: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --game-red: #CB2E2E;
    --game-blue: #5156E0;
    --game-magenta: #D35583;
    --game-yellow: #F8D33A;
    --game-violet: #7F3DDB;
    --border-color: rgba(255, 255, 255, 0.1);
}

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

html {
    min-height: 100vh;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    background: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'DM Serif Display', serif;
    font-weight: normal;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3) !important;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.nav-brand {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.4rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.3s;
    margin-right: 2rem;
}

.nav-brand:hover {
    opacity: 0.8;
}

.nav-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-line {
    flex-grow: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 2rem;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-dot {
    color: var(--text-secondary);
    font-weight: 300;
}

.language-selector {
    position: relative;
}

.language-dropdown-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.language-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.lang-option:hover,
.lang-option.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.lang-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.lang-btn:hover,
.lang-btn.active {
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.background-ellipses {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.ellipse {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.ellipse-1 {
    width: 600px;
    height: 600px;
    background: var(--game-violet);
    top: -200px;
    left: -200px;
}

.ellipse-2 {
    width: 400px;
    height: 400px;
    background: var(--game-blue);
    bottom: -100px;
    right: -100px;
}

.ellipse-3 {
    width: 300px;
    height: 300px;
    background: var(--game-red);
    top: 50%;
    right: 20%;
}

.ellipse-4 {
    width: 200px;
    height: 200px;
    background: var(--game-yellow);
    top: 20%;
    left: 15%;
}

.ellipse-5 {
    width: 350px;
    height: 350px;
    background: var(--game-magenta);
    bottom: 20%;
    left: -100px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 2rem auto 2rem;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

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

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--text-primary);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.download-btn.coming-soon {
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: not-allowed;
}

.download-btn span {
    text-transform: none !important;
}

.scroll-indicator {
    margin-top: 4rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-secondary);
    border-radius: 25px;
    margin: 0 auto;
    position: relative;
}

.mouse::after {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--text-secondary);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

/* Games Section */
.games-section {
    padding: 6rem 2rem;
    background: transparent;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.game-card {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--game-color) 0%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    border: 2px solid var(--game-color);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2), 
                0 0 30px var(--game-color),
                inset 0 0 20px rgba(255,255,255,0.05);
    background: rgba(255, 255, 255, 0.08);
}

.game-card:hover::before {
    opacity: 0.1;
}

.game-card-image {
    width: 240px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}

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

.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.game-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.game-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 5rem 2rem;
    background: transparent;
}

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

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--game-violet) 0%, var(--game-blue) 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: lowercase;
}

.footer-links a {
    text-transform: capitalize;
}

.footer-copyright {
    text-transform: capitalize;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-dot {
    color: var(--text-secondary);
    font-weight: 300;
}

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

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

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

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

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a:not(.language-selector) {
        display: none;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}/* Cache buster */
