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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    overflow: hidden;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./bg_img2.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeOut 0.5s ease-out 2.5s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.loader {
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    color: white;
    font-size: 18px;
    letter-spacing: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Main Content */
.main-content {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.coming-soon-card {
    background: transparent;
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 500px;
    width: 100%;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
    text-align: center;
    /* animation: slideUp 0.8s ease-out; */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* .brand-logo {
    font-size: 60px;
    color: #ff6b6b;
    animation: bounce 2s ease-in-out infinite;
} */

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* .brand-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} */

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    position: relative;
    margin: 10px 0;
}

.badge-text {
    background: transparent; /* transparent background as requested */
    color: #ffffff;
    padding: 14px 36px; /* larger size */
    border-radius: 999px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.badge-text:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.55);
}

.badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160%;
    height: 160%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,107,107,0.12), transparent 25%),
        radial-gradient(circle at 70% 70%, rgba(255,142,83,0.08), transparent 30%);
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none;
    opacity: 0.9;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.coming-soon-badge:hover .badge-glow {
    opacity: 1;
    filter: blur(8px);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(255, 107, 107, 0.6);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.tagline {
    font-size: 16px;
    color: white;
    font-weight: 600;
}

.description {
    font-size: 14px;
    color: white;
    line-height: 1.6;
}

.play-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    margin: 20px auto;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    animation: pulse-btn 2s ease-in-out infinite;
}

@keyframes pulse-btn {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.play-btn:active {
    transform: scale(0.95);
}

.play-text {
    font-size: 14px;
    color: #ff6b6b;
    font-weight: 600;
    margin-top: -10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}



/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 0;
    overflow: hidden;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2100;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.close-btn:hover {
    background: #ff6b6b;
    color: white;
    transform: rotate(90deg);
}

.video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.video-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
    background: #000;
}

/* Desktop */
@media (min-width: 1024px) {
    .video-wrapper video {
        width: auto;
        height: 100%;
        max-width: 100vw;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .close-btn {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}



/* Mobile responsiveness */
@media (max-width: 768px) {
    .coming-soon-card {
        padding: 40px 25px;
    }

    .brand-title {
        font-size: 32px;
    }

    .brand-logo {
        font-size: 50px;
    }

    .play-btn {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .modal-content {
        max-width: 100%;
    }

}