/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    overflow: hidden;
    /* Use Inter for UI text, Playfair Display for headings */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: brightness(0.7) contrast(1.1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle noise overlay or just dark wash */
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* Main Container */
.main-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Content Center */
.content-center {
    text-align: center;
    padding: 3rem;
    position: relative;
    max-width: 800px;
    width: 90%;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Logo Section */
.logo-section {
    margin-bottom: 2rem;
}

.brand-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    /* Add a subtle drop shadow for depth against video */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Typography */
.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600; /* Bold serif for impact */
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Status Indicator - Pill Style */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.status-indicator:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981; /* Elegant emerald green */
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
    animation: breathe 3s infinite ease-in-out;
}

@keyframes breathe {
    0%, 100% { opacity: 0.6; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}

.status-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .content-center {
        padding: 1.5rem;
    }

    .brand-logo {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}
