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

:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --secondary: #06b6d4;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --gray: #64748b;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--darker);
    color: var(--light);
    line-height: 1.6;
}

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

header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    gap: 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.tenta {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chtulu {
    color: var(--light);
}

.studio-tag {
    font-size: 0.72rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top:-10px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.lang-switch {
    display: flex;
    gap: 10px;
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    background: var(--dark);
    border: 1px solid var(--primary);
    color: var(--light);
    padding: 5px 12px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn:hover {
    border-color: var(--secondary);
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.dropdown-arrow {
    transition: transform 0.3s;
    fill: #ffffff;
}

.lang-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--dark);
    border: 1px solid var(--primary);
    border-radius: 5px;
    margin-top: 5px;
    display: none;
    min-width: 100px;
    overflow: hidden;
    z-index: 1001;
}

.lang-dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.dropdown-item:hover {
    background: var(--primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    text-align: center;
    padding-top: 80px;
}

.game-title-image {
    max-width: 60%;
    height: auto;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary);
}

.cta-button.secondary:hover {
    background: var(--primary);
}

.steam-icon {
    margin-right: 10px;
}

.section {
    padding: 100px 0;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--light);
}

.description {
    font-size: 1.2rem;
    color: var(--gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.screenshot {
    aspect-ratio: 16/9;
    background: var(--dark);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.screenshot:hover {
    transform: scale(1.02);
}

.screenshot.placeholder {
    color: var(--gray);
    font-size: 1.2rem;
}

.highlight {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    text-align: center;
}

.highlight .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer {
    background: var(--dark);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.social-link {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.copyright {
    color: var(--gray);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .game-title-image {
        max-width: 90%;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
}
