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

body, html {
    width: 100%;
    height: 100%;
    /* Prevents scrolling */
    overflow: hidden; 
    font-family: 'Outfit', sans-serif;
    background-color: #050505;
    color: #ffffff;
}

/* Video Background styling */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0; /* Fix: Changed from -1 so it's not hidden behind the body background */
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Overlay to darken video for legibility */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle dark gradient */
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 0;
}

/* Main Content Wrapper */
.content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 40px;
}

/* Premium Glassmorphism Effect */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem 4.5rem;
    text-align: right;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    /* Entrance Animation */
    animation: fadeIn 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    max-width: 90vw;
}

/* Title Styling */
.title {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #ffffff, #d3e2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title .highlight {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle Styling */
.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

/* 'Coming Soon' Badge */
.coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: default;
}

.coming-soon:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(0, 242, 254, 0.4);
}

/* Pulsing dot micro-animation */
.pulse {
    width: 10px;
    height: 10px;
    background-color: #00f2fe;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7);
    animation: pulse-ring 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 12px rgba(0, 242, 254, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 242, 254, 0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for Mobile & Tablet */
@media (max-width: 768px) {
    #bg-video {
        object-fit: contain;
        object-position: top center;
    }
    .content {
        justify-content: center;
        padding: 20px;
    }
    .glass-panel {
        padding: 2.5rem 2rem;
        text-align: center;
        width: 100%;
    }
    .title {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }
    .subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
        margin-bottom: 2rem;
    }
    .coming-soon {
        font-size: 1rem;
        padding: 10px 24px;
    }
}

@media (max-width: 480px) {
    .glass-panel {
        padding: 2rem 1.5rem;
    }
    .title {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    .coming-soon {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
}
