/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a110e;
    --text-main: #f0f7f4;
    --text-muted: #9ba6a1;
    --gold-gradient: linear-gradient(135deg, #f5d78d 0%, #c49a45 100%);
    --emerald-dark: #0f2920;
    --emerald-glow: rgba(26, 89, 67, 0.4);
    --gold-glow: rgba(196, 154, 69, 0.3);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Animated Orbs */
.bg-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: drift 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--emerald-glow);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--gold-glow);
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(12, 45, 34, 0.5);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, -50px) scale(1.2);
    }
}

/* Main Layout */
.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 90%;
    padding: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.content {
    flex: 1 1 500px;
    animation: fadeUp 1s ease-out forwards;
}

/* Typography & Content */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #c49a45;
    border-radius: 50%;
    box-shadow: 0 0 10px #c49a45;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(196, 154, 69, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(196, 154, 69, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(196, 154, 69, 0);
    }
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.title .highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Countdown Timer */
.countdown {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 100px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 154, 69, 0.4);
}

.time-val {
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.time-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Notify Form */
.notify-form {
    display: flex;
    gap: 10px;
    max-width: 450px;
}

.notify-form input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.notify-form input:focus {
    border-color: #c49a45;
    background: rgba(255, 255, 255, 0.06);
}

.notify-form button {
    padding: 0 32px;
    border-radius: 30px;
    border: none;
    background: var(--gold-gradient);
    color: #111;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(196, 154, 69, 0.3);
}

/* Image / 3D Asset */
.visual {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.crystal-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.crystal {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 40px rgba(196, 154, 69, 0.2));
    animation: floatImage 6s ease-in-out infinite;
}

.crystal-shadow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    animation: floatShadow 6s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: translateY(-30px) rotateX(2deg) rotateY(5deg);
    }

    100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }
}

@keyframes floatShadow {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0.3;
    }

    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 5rem;
        gap: 2rem;
    }

    .badge {
        margin: 0 auto 2rem auto;
    }

    .subtitle {
        margin: 0 auto 3rem auto;
    }

    .countdown {
        justify-content: center;
    }

    .notify-form {
        margin: 0 auto;
        flex-direction: column;
        width: 100%;
    }

    .notify-form button {
        padding: 16px;
    }

    .crystal-wrapper {
        max-width: 350px;
    }
}