* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Background Video */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
}

/* Content */
.content {
    text-align: center;
    z-index: 1;
    padding: 40px 20px;
    width: 100%;
}

/* Website URL */
.website-url {
    font-size: 14px;
    color: #444;
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.website-url a {
    color: #444;
    text-decoration: none;
}

.website-url a:hover {
    text-decoration: underline;
}

/* Glass Card - Matching Figma */
.logo-card {
    
    border-radius: 50px;
    padding: 20px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top-color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
     transition: opacity 0.3s
}

.logo-img {
    display: block;
    height: 170px;
    width: auto;
    object-fit: contain;
}

/* Tagline */
.tagline {
    font-size: 15px;
    color: #444;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 8px;
}

.tagline .highlight {
    color: #3a2eff;
    font-weight: 500;
    text-decoration: underline;
}

/* Coming Soon */
.coming-soon {
    font-size: 56px;
    font-weight: 600;
    color: #111;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 40px;
}

/* Logos Carousel */
.logos-carousel {
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 50px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.logos-track img {
    height: 35px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.0s;
}

.logos-track img:hover {
    opacity: 1;
}

.logos-track img.logo-sm {
    height: 25px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-card {
        padding: 20px 30px 20px 20px;
        border-radius: 24px;
    }

    .logo-img {
        height: 120px;
        margin: -25px 0;
        margin-left: -10px;
    }

    .coming-soon {
        font-size: 36px;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    .tagline {
        font-size: 13px;
    }

    .website-url {
        margin-bottom: 25px;
    }

    .logos-track img {
        height: 25px;
    }

    .logos-track {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .logo-card {
        padding: 15px 20px;
        border-radius: 20px;
    }

    .logo-img {
        height: 80px;
        margin: -15px 0;
        margin-left: -5px;
    }

    .coming-soon {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .logos-track img {
        height: 20px;
    }

    .logos-track {
        gap: 25px;
    }
}