/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #040051; /* Primary Color Fallback */
    /* Modern, deep gradient */
    background: radial-gradient(circle at 50% 30%, #2f015c 0%, #040051 60%, #02002b 100%);
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.wrapper {
    width: 100%;
    max-width: 1000px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 85vh; /* Takes up most of the screen vertically */
}

/* BRANDING */
.brand {
    font-weight: 100; /* Ultra Thin */
    font-size: 3.5rem;
    letter-spacing: 0.3em; /* Wide spacing = Luxury */
    text-transform: uppercase;
    margin-bottom: 20px;
}

.brand .highlight {
    color: #a464ff; /* Lightened version of your secondary color for elegance */
    font-weight: 300;
}

.status {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.6em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

/* Decoration line under status */
.status::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 15px auto 0;
}

/* TIMER */
.timer-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 3vw; /* Responsive gap */
    margin: 40px 0;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-unit span:first-child {
    font-size: 5rem; /* Large numbers */
    font-weight: 100; /* Ultra Thin */
    line-height: 1;
}

.label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
}

.divider {
    font-size: 3rem;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

/* FOOTER */
.powered-by span {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
    opacity: 0.5;
}

.powered-by h3 {
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

/* RESPONSIVE (Mobile) */
@media (max-width: 768px) {
    .brand {
        font-size: 2rem;
        letter-spacing: 0.15em;
    }
    
    .status {
        font-size: 0.7rem;
        letter-spacing: 0.4em;
    }

    .timer-container {
        gap: 10px;
    }

    .time-unit span:first-child {
        font-size: 2.5rem;
    }

    .label {
        font-size: 0.5rem;
    }

    .divider {
        font-size: 1.5rem;
        transform: translateY(-5px);
    }
}