/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8f9fa;
    /* Light Grey/White */
    color: #050A18;
    /* Dark Navy Text */
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Moving Gradient Background */
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: radial-gradient(circle at top left, #ffffff, #f0f2f5);
}

/* Animated Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.8;
    animation: floatOrb 10s infinite ease-in-out alternate;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #FF6B00 0%, #ff9f1a 100%);
    /* Nasaa Orange */
    top: -100px;
    left: -100px;
    animation-duration: 12s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    /* Nasaa Blue */
    bottom: -50px;
    right: -100px;
    animation-duration: 15s;
    animation-direction: reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #ffcc00;
    /* Gold Accent */
    top: 40%;
    left: 40%;
    opacity: 0.4;
    animation-duration: 20s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
        border-radius: 50%;
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    100% {
        transform: translate(-20px, 20px) scale(0.95);
        border-radius: 50%;
    }
}

/* Abstract Glass Shapes */
.glass-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    z-index: 2;
    animation: floatShape 20s infinite linear;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 20%;
    border-radius: 20px;
    transform: rotate(45deg);
    animation-duration: 25s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    border-radius: 50%;
    animation-duration: 30s;
    animation-direction: reverse;
}

@keyframes floatShape {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }

    100% {
        transform: rotate(360deg) translate(20px, 20px);
    }
}


/* Glass Card - Light Theme */
.glass-card {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.65);
    /* More opaque white */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    border-radius: 30px;
    padding: 3rem 4rem;
    text-align: center;
    max-width: 900px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

/* Header / Logo */
.logo-container {
    margin-bottom: 0.5rem;
    z-index: 5;
    /* Ensure logo is above images if they overlap */
}

.logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* Content Styles */
.content {
    z-index: 5;
    position: relative;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid #FF6B00;
    border-radius: 50px;
    color: #FF6B00;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: rgba(255, 107, 0, 0.05);
}

.headline {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #050A18;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(to right, #FF6B00, #ff9f1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtext {
    font-size: 1.1rem;
    color: #4a5568;
    /* Dark Grey */
    font-weight: 400;
    max-width: 600px;
    line-height: 1.5;
    margin-bottom: 2rem;
}

/* Hero Visuals (Flanking Bottles) */
.hero-visuals {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    /* Let clicks pass through */
    z-index: 1;
    /* Behind text but inside card */
}

.hero-img-left,
.hero-img-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-height: 80%;
    /* Limit height so they fit in card */
    width: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

.hero-img-left {
    left: -80px;
    /* Hang off the left edge */
}

.hero-img-right {
    right: -80px;
    /* Hang off the right edge */
}

/* Auto Float Animations */
.float-fast {
    animation: autoFloat 4s ease-in-out infinite;
}

.float-slow {
    animation: autoFloat 6s ease-in-out infinite reverse;
}

@keyframes autoFloat {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(-55%);
    }

    /* Move up slightly from centered position */
}


/* Premium Button */
.cta-button {
    position: relative;
    padding: 1rem 3.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #050A18 0%, #1a202c 100%);
    /* Navy Button */
    border: none;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(5, 10, 24, 0.2);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(5, 10, 24, 0.3);
    background: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
    /* Turns Orange on Hover */
}

.shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.cta-button:hover .shine {
    left: 100%;
    transition: 0.5s;
}

/* Progress Bar Overlay */
.progress-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    /* White Overlay */
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.progress-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.progress-bar-container {
    width: 300px;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #FF6B00, #0056b3);
    transition: width 0.1s linear;
}

.loading-text {
    font-family: 'Outfit', sans-serif;
    color: #050A18;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}


/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease-out forwards;
}

.scale-up {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleUp 0.8s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

/* Responsive */
@media (max-width: 900px) {
    .glass-card {
        width: 95%;
        padding: 2rem;
        overflow: hidden;
    }

    .hero-img-left {
        left: -120px;
        opacity: 0.3;
        /* Fade out on smaller tablets */
    }

    .hero-img-right {
        right: -120px;
        opacity: 0.3;
    }
}

@media (max-width: 600px) {
    .headline {
        font-size: 2.5rem;
    }

    .glass-card {
        padding: 2rem 1.5rem;
        overflow: hidden;
    }

    /* Hide bottles on mobile to avoid clutter */
    .hero-visuals {
        display: none;
    }

    .subtext {
        font-size: 1rem;
    }

    .logo {
        max-width: 180px;
    }
}