.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #133215 0%, #050a06 100%);
}
.subtitle {
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: var(--bordo);
    filter: brightness(1.5);
    margin-bottom: 10px;
}
.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 40px;
}
.main-title span { display: block; }
.countdown-wrapper {
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: center;
    
    background: rgba(146, 183, 117, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    
    padding: 35px 55px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    margin: 0 auto;
    max-width: fit-content;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.time-unit {
    text-align: center;
}
.time-unit span {
    display: block;
    font-size: 3.8rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}
.time-unit p {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}
.time-unit:not(:last-child) {
    position: relative;
}
.time-unit:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}
