body {
    background: linear-gradient(130deg, #0a0a1a 0%, #1a1a3a 50%, #0a0a1a 100%);
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.section-title {
    color: #6c2bd9;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.hero-section {
    min-height: 100vh;
    background-image: url('https://app.trickle.so/storage/public/images/usr_0a58c0f100000001/2a488357-5f6e-4978-b273-6e6cd7b634f4.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 26, 0.6), rgba(10, 10, 26, 0.8));
}

.bg-gradient-radial {
    background: radial-gradient(circle at center, var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to));
}

.section-divider {
    height: 1px;
    background: rgba(108, 43, 217, 0.2);
    margin: 0.5rem auto;
    width: 80%;
    max-width: 1000px;
}

[data-name="logo-image"] {
    transition: transform 0.3s ease;
}

[data-name="logo-image"]:hover {
    transform: scale(1.05);
}

[data-name="language-switcher-button"] {
    transition: all 0.3s ease;
}

[data-name="language-switcher-button"]:hover {
    background: rgba(255, 255, 255, 0.1);
}

[data-name="language-dropdown"] {
    animation: fadeIn 0.2s ease-out;
}

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