:root {
    --chevron-blue: #0054A4;
    --chevron-light-blue: #007BFF;
    --text-dark: #2D3748;
    --text-muted: #718096;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 1);
    --glass-shadow: rgba(0, 84, 164, 0.08);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #F0F4F8 0%, #D9E2EC 100%);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

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

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

.shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 84, 164, 0.15); /* Blue accent glow */
    top: -100px;
    right: -100px;
    animation-delay: -5s;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: rgba(0, 123, 255, 0.15); /* Light blue glow */
    bottom: -200px;
    left: -200px;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-50px, 50px) scale(1.1); }
}

/* Main Container */
.container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 800px;
    padding: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px var(--glass-shadow);
    text-align: center;
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

/* Header */
.header {
    margin-bottom: 2rem;
}

.logo {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Content */
.tagline {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--chevron-blue);
    margin-bottom: 0.5rem;
}

.title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 2.5rem;
    background: linear-gradient(to right, var(--chevron-blue), #002A54);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

/* Countdown */
.countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
    background: rgba(255, 255, 255, 0.6);
    padding: 1.2rem 0;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--chevron-blue);
    font-variant-numeric: tabular-nums;
}

.label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.separator {
    font-size: 1.8rem;
    font-weight: 300;
    color: #CBD5E0;
    margin-top: -1.5rem;
}

/* Message & Contact */
.message {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    border-radius: 50px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.contact:hover {
    background: #F8FAFC;
    border-color: var(--chevron-light-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 84, 164, 0.1);
}

.contact span {
    font-weight: 600;
    color: var(--text-muted);
}

.email-link {
    color: var(--chevron-blue);
    text-decoration: none;
    font-weight: 700;
    position: relative;
}

.email-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--chevron-light-blue);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.email-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 2rem;
        width: 95%;
    }

    .title {
        font-size: 1.8rem;
    }

    .countdown-wrapper {
        gap: 0.75rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 0.8rem 0;
    }

    .number {
        font-size: 1.8rem;
    }

    .separator {
        font-size: 1.4rem;
        margin-top: -1rem;
    }
}
