/* Empty CSS file */ 

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-family: 'Outfit', sans-serif;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

#lottie-container {
    width: 100%;
    max-width: min(600px, 80vw);
    height: min(400px, 40vh);
    filter: drop-shadow(0 0 20px rgba(0, 149, 255, 0.2));
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo {
    width: clamp(2rem, 5vw, 3rem);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(45, 52, 54, 0.2));
}

.brand-name {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 600;
    margin: 0;
    text-align: center;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(45, 52, 54, 0.1);
}

.coming-soon {
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 600;
    margin: 0;
    text-align: center;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(45, 52, 54, 0.1);
    position: relative;
}

.coming-soon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 149, 255, 0.3) 50%, 
        transparent 100%
    );
}

.copyright {
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
    color: #636e72;
    margin: 0;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 400;
}

/* Media Queries for different screen sizes */
@media screen and (max-width: 480px) {
    .content-wrapper {
        gap: 1rem;
        padding: 1rem;
    }

    .brand-container {
        gap: 0.8rem;
    }

    #lottie-container {
        height: 30vh;
    }
}

/* Social Share Buttons */
.social-share {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.share-btn.twitter {
    background-color: #1DA1F2;
}

.share-btn.facebook {
    background-color: #4267B2;
}

.share-btn.linkedin {
    background-color: #0077B5;
}

.share-btn i {
    font-size: 1.2rem;
}

@media screen and (max-width: 480px) {
    .social-share {
        gap: 0.8rem;
    }

    .share-btn {
        width: 36px;
        height: 36px;
    }

    .share-btn i {
        font-size: 1rem;
    }
} 

.views-counter-container {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.views-text {
    font-size: 1.2em;
    color: #666;
}

.views-count {
    font-weight: bold;
    color: #007bff; /* Or a color that fits your brand */
}