* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: linear-gradient(135deg, #09101a, #162233, #1e3a5f);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    padding: 2rem 0; /* Add some padding so container doesn't touch top/bottom when scrolled */
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Background Animation Shapes */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    animation: float 12s infinite ease-in-out alternate;
    opacity: 0.6;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #e63946;
    top: -5%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: #f4a261;
    bottom: -20%;
    right: -10%;
    animation-delay: -3s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #2a9d8f;
    top: 40%;
    left: 40%;
    animation-delay: -6s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: #e9c46a;
    top: -10%;
    right: 20%;
    animation-delay: -9s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(40px, 60px) scale(1.2) rotate(20deg); }
}

/* Main Container - Glassmorphism */
.container {
    position: relative;
    z-index: 1;
    text-align: center;
    background: rgba(25, 33, 48, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 5rem;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 950px;
    width: 92%;
    animation: slideUpFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

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

header {
    margin-bottom: 2.5rem;
}

.logo {
    max-width: 160px;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
    animation: pulse 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
    background-color: white;
    padding: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.15); }
    50% { box-shadow: 0 0 40px rgba(255, 255, 255, 0.4); }
}

.welcome-text {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.highlight {
    font-weight: 800;
    background: linear-gradient(to right, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
    display: inline-block;
    animation: textShine 3s linear infinite;
    background-size: 200% auto;
}

@keyframes textShine {
    to { background-position: 200% center; }
}

.coming-soon {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #a8b2d1;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.coming-soon::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff9a9e, #fecfef);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 154, 158, 0.5);
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.8rem;
    border-radius: 20px;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.time-box::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.time-box:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.time {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    background: linear-gradient(to bottom, #ffffff, #d8d8d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.label {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #b0bec5;
}

.launch-date {
    font-size: 1.2rem;
    font-weight: 300;
    color: #cfd8dc;
    margin-top: 1rem;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .container {
        padding: 3rem 2rem;
    }
    .welcome-text {
        font-size: 2.2rem;
    }
    .highlight {
        font-size: 2.6rem;
    }
    .countdown-container {
        gap: 1.2rem;
    }
    .time-box {
        min-width: 100px;
        padding: 1.5rem 1rem;
    }
    .time {
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    .countdown-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .time-box {
        min-width: 100%;
        padding: 1.2rem 0.5rem;
    }
    .time {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem;
        border-radius: 20px;
        width: 95%;
    }
    .logo {
        max-width: 90px;
        padding: 6px;
    }
    .welcome-text {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    .highlight {
        font-size: 1.6rem;
        line-height: 1.3;
        display: block;
        margin-top: 5px;
    }
    .coming-soon {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }
    .countdown-container {
        gap: 0.6rem;
    }
    .time-box {
        padding: 0.8rem 0.4rem;
        border-radius: 12px;
    }
    .time {
        font-size: 1.8rem;
    }
    .label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    .launch-date {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 1.5rem 0.8rem;
    }
    .highlight {
        font-size: 1.4rem;
    }
    .time {
        font-size: 1.5rem;
    }
    .label {
        font-size: 0.6rem;
    }
}
