:root {
    --primary-blue: #0A1E42;
    --accent-gold: #C69C3A;
    --bg-light: #F0F4F8;
    --bg-gradient-start: #E6EEFA;
    --bg-gradient-end: #FDFDFD;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #DEE7F6 0%, #F6F9FC 50%, #FFFFFF 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* Background grid effect to mimic financial chart overlay */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(10, 30, 66, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 30, 66, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* Subtle glowing orb effect in the background */
body::after {
    content: '';
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(198, 156, 58, 0.05) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.container {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    padding: 40px 20px;
    animation: fadeIn 1s ease-out;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.main-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.launch-date {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
    background: linear-gradient(45deg, #B88A2D, #E5C365, #B88A2D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

.subtitle {
    font-size: 1.5rem;
    color: #556B8D;
    margin-bottom: 60px;
    font-weight: 500;
    letter-spacing: 1px;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 3px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-bottom-color 0.3s ease;
    min-width: 220px;
    cursor: default;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-bottom-color: var(--accent-gold);
}

.icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon svg {
    width: 100%;
    height: 100%;
}

.card-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
}

/* Footer Styling */
.footer {
    width: 100%;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(203, 213, 224, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer::before,
.footer::after {
    display: none;
    /* Remove previous side lines as we have more content now */
}

.footer-slogan {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-info {
    font-size: 0.9rem;
    color: #556B8D;
    text-align: center;
    line-height: 1.8;
    max-width: 800px;
}

.footer-info p {
    margin-bottom: 8px;
}

.footer-info .note {
    font-size: 0.85rem;
    opacity: 0.9;
}

.footer-info .highlight strong {
    color: #1a73e8;
    /* More professional blue than standard 'blue' */
}

.footer-info .separator {
    height: 1px;
    width: 50px;
    background: #CBD5E0;
    margin: 20px auto;
}

.footer-info .contact {
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-blue);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }

    .logo {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .main-title {
        font-size: 2.2rem;
        /* reduced from 4rem/3rem */
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .launch-date {
        font-size: 2.5rem;
        /* reduced from 4.5rem */
        text-align: center;
        line-height: 1.1;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 50px;
    }

    .card {
        width: 100%;
        max-width: 100%;
        padding: 20px 25px;
        justify-content: flex-start;
        /* Keep icon and text aligned */
    }

    .card-text {
        font-size: 1.1rem;
    }

    .footer-slogan {
        font-size: 1.25rem;
        text-align: center;
    }

    .footer-info {
        font-size: 0.85rem;
        padding: 0 10px;
    }
}