.hero {
    padding: 12rem 0 5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 42rem;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-content {
    max-width: 42rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: white;
    font-size: 4rem;
    font-style: normal;
    line-height: 110%; 
    text-transform: uppercase;
}

.hero p {
    color: white;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    max-width: 34rem;
}

.hero-emblem {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.hero-emblem svg {
    position: relative;   
    display: block;
    width: 100%;
    height: 100%;
}

.hero-emblem a {
    display: block;
    position: absolute;
    right: 0;
    left: 26%;
    bottom: 20px;
}

.hero-emblem img {
    width: 14rem;
    margin: 0 auto;
    display: block;
}


.stats-marquee {
    position: relative;
    padding: 2.5rem 0 2.3rem;
    overflow: hidden;
}
.stats-ticker {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 3rem;
}
.stats-ticker .slide {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    animation: marquee 20s linear infinite;
}
.stats-marquee .stat-item {
    display: flex;
    gap: 10px;
    align-items: center;
}
.stats-marquee img {
    height: 1.5rem;
}
.stats-marquee span {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    width: max-content;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-100% - 3rem)); }
}

.box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
.box > a {
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    display: block;
    height: 24rem;
    width: 100%;
}
.box img {
    width: 100%;
    height: 24rem;
    max-width: 100%;
    border-radius: 5px;
    object-fit: cover;
    transition: 0.2s ease-in-out;
}
.box:hover img {
    transform: scale(1.02);
}
.box h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    text-align: center;
    transition: 0.2s ease-in-out;
}
.box:hover h3 {
    color: var(--secondary);
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    padding: 20px 40px;
    width: 30rem;
    margin: 0 auto;
}
.countdown-item {
    text-align: center;
    position: relative;
    flex: 1;
}
.countdown-item + .countdown-item {
    margin-left: 40px;
}
.countdown-item + .countdown-item:before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: #fff;
}
.countdown-number {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}
.countdown-label {
    margin-top: 4px;
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    opacity: 0.8;
}

.sponsors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.sponsors img {
    max-width: 100%;
    transition: transform 0.3s ease;
    background: white;
    border-radius: 5px;
    width: 15rem;
    height: 8rem;
    object-fit: contain;
    padding: 0.5rem;
}
.sponsors img:hover {
    transform: scale(1.05);
}