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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(to bottom, #0a1628, #1a2f4a);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 3rem;
    background: rgba(10, 22, 40, 0.8);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: #7c4dff;
    border-radius: 36%;
    /* fully rounded */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* ensures the image doesn't overflow the rounded borders */
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* maintains aspect ratio and fills the container */
    border-radius: 36%;
    /* ensures image itself is rounded */
}

.hero {
    text-align: center;
    padding: 6rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124, 77, 255, 0.15);
    border: 1px solid rgba(124, 77, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: #b19dff;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.sparkle {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-title .gradient {
    background: linear-gradient(135deg, #7c4dff, #b19dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.watch-btn {
    background: #7c4dff;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.watch-btn:hover {
    background: #6a3de8;
    transform: translateY(-2px);
}

/* --- Updated CSS for Scrolling Social Section: Pill Shape --- */

.social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 4rem;
}

.works-with {
    color: #64748b;
    font-size: 0.9rem;
}

.social-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 10%,
            black 90%,
            transparent 100%);
}

.social-platforms {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: scroll-loop 30s linear infinite;
    padding-right: 1rem;
}

.social-platforms:hover {
    animation-play-state: paused;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    border-radius: 55px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.social-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.social-name {
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
}

.social-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Scroll animation */
@keyframes scroll-loop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Animation Keyframes */
@keyframes scroll-loop {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Media Queries (Responsiveness) --- */
@media (max-width: 480px) {

    /* ... existing mobile styles ... */
    .navbar {
        padding: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .hero {
        padding: 3rem 1rem 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .watch-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    /* Social item adjustments for smaller screens */
    .social-platforms {
        animation-duration: 40s;
        gap: 1rem;
    }

    .social-item {
        padding: 0.4rem 0.8rem;
        gap: 0.4rem;
    }

    .social-name {
        font-size: 0.8rem;
    }

    .social-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .social-scroll-container {
        mask-image: linear-gradient(to right,
                transparent 0%,
                black 5%,
                black 95%,
                transparent 100%);
        -webkit-mask-image: linear-gradient(to right,
                transparent 0%,
                black 5%,
                black 95%,
                transparent 100%);
    }
}