/* --- Variables & Premium Setup --- */
:root {
    --bg-main: #ffffff;
    --logo-pink: #F95C85;
    /* Vibrant pink from logo */
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.85);
    --accent-1: rgba(249, 92, 133, 0.4);
    /* Pink glowing background orbs */
    --accent-2: rgba(249, 92, 133, 0.2);

    --glass-bg: var(--logo-pink);
    --glass-border: rgba(255, 255, 255, 0.4);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow: hidden;
    /* Prevent scrolling during intro */
    height: 100vh;
    width: 100vw;
}

/* --- Video Overlay Loader --- */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.5s;
}

.video-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    /* Let clicks pass through if needed */
}

.skip-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    z-index: 101;
}

.skip-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

/* --- Main Content (Hero Section) --- */
.main-content {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 2s ease, transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-content.visible {
    opacity: 1;
    transform: scale(1);
    animation: fadeInReveal 1.5s ease-out forwards;
}

/* Background animated glow effects */
.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 15s infinite alternate ease-in-out;
}

.orb-1 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-1), transparent 70%);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--accent-2), transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(5%, 10%) scale(1.1);
    }

    100% {
        transform: translate(-5%, -5%) scale(0.9);
    }
}

/* Hero Panel */
.glass-panel {
    background: var(--logo-pink);
    border-radius: 24px;
    padding: 60px 80px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Apple-like subtle shadow */
    max-width: 90%;
    width: 600px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(249, 92, 133, 0.25);
    /* Lifted look on hover */
}



/* Typography styles */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    margin: 0 auto 30px;
}

.web-address {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: lowercase;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.web-address::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.web-address:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.web-address:hover::after {
    width: 100%;
}

/* Initially hide layout */
.hidden {
    display: none;
}

/* Responsiveness */
@media (max-width: 768px) {
    .glass-panel {
        padding: 40px 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}