:root {
    --bg-dark: #050505;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --accent-gold: #d4af37;
    --accent-glow: rgba(212, 175, 55, 0.3);
    --glass-bg: rgba(25, 25, 25, 0.4);
    --glass-border: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, .logo, .badge {
    font-family: 'Outfit', sans-serif;
}

/* Ambient Background Glows */
.ambient-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.5;
    animation: drift 20s infinite alternate ease-in-out;
}

.glow-1 {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
}

.glow-2 {
    bottom: 10%;
    right: -10%;
    background: radial-gradient(circle, rgba(100, 50, 200, 0.15) 0%, transparent 70%);
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 30px) scale(1.05); }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0) 100%);
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--text-main);
}

/* Language Switcher */
.lang-switcher {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="15" viewBox="0 0 24 24" width="15" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 25px;
}

.lang-switcher:hover, .lang-switcher:focus {
    color: var(--text-main);
    border-color: var(--accent-gold);
}

.lang-switcher option {
    background: #111;
    color: var(--text-main);
    padding: 10px;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out forwards;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}

.cta-button.primary {
    background-color: var(--accent-gold);
    color: #000;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    background-color: #e6c559;
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* Info Sections */
.vibe-section {
    padding: 4rem 5% 2rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.info-section {
    padding: 0 5% 6rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3.5rem;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.glass-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.glass-container.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: left;
    max-width: 900px;
}

.vibe-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.vibe-section p:last-child {
    margin-bottom: 0;
}

.info-block h2 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.expect-list {
    list-style: none;
}

.expect-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.expect-list strong {
    color: var(--text-main);
    font-weight: 500;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--text-main);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 2rem 5%;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    position: relative;
    z-index: 10;
    margin-top: auto;
}

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

/* Responsive */
@media (max-width: 768px) {
    .cta-group {
        flex-direction: column;
        gap: 1rem;
    }
    .cta-button {
        width: 100%;
    }
    .glass-container {
        padding: 2.5rem 1.5rem;
    }
    .glass-container.info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
