:root {
    --bg-color: #050508;
    --bg-gradient-center: #101018;
    --text-primary: #ffffff;
    --text-secondary: #8c93a0;
    --accent: rgba(255, 255, 255, 0.1);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

body {
    background-color: var(--bg-color);
    background-image: radial-gradient(ellipse at 50% -20%, var(--bg-gradient-center) 0%, var(--bg-color) 80%);
    color: var(--text-primary);
    font-family: 'Nunito Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    max-width: 100vw;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    animation: fadeIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.logo {
    font-size: 9rem;
    font-weight: 200;
    letter-spacing: -0.05em;
    background: linear-gradient(180deg, var(--text-primary) 0%, #b0b5c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
    position: relative;
    filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.08));
    line-height: 1;
    margin-bottom: 1rem;
}

.description {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.section-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--text-secondary);
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 2.5rem;
}

/* Partners Section */
.partners-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 3.5rem auto;
    opacity: 0;
    animation: fadeIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
}

.marquee-wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 5rem;
    padding-right: 5rem;
    width: max-content;
    animation: scroll 15s linear infinite;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.3;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-wrapper:hover .partner-item {
    opacity: 0.15;
}

.marquee-wrapper .partner-item:hover {
    opacity: 1;
}

.partner-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

.partner-name {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translate(-50%, 150%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(16, 16, 24, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.2rem 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.03);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 100;
    width: max-content;
    max-width: 90vw;
}

.cookie-banner.show {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}

.cookie-text {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin: 0;
}

.cookie-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        font-size: 5.5rem;
    }
    .description {
        font-size: 0.9rem;
    }
    .partners-section {
        margin-bottom: 2.5rem;
    }
    .partner-logo {
        height: 22px;
    }
    .partner-name {
        font-size: 1.1rem;
    }
    .partner-item {
        margin-right: 3rem;
    }
    .marquee-wrapper {
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        border-radius: 24px;
        padding: 1.2rem;
        gap: 1rem;
        bottom: 1.5rem;
    }
    .cookie-btn {
        width: 100%;
        padding: 0.8rem;
    }
}
