* {
    font-family: "Outfit", sans-serif;
    font-style: normal;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    display: block;
}


.social-link {
    background-color: #111827;
    border: 1px solid #1F2937;
    display: flex;
    align-items: center;
    justify-content: center;
    --size: clamp(1.875rem, 0.637vw + 1.736rem, 2.5rem);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
}

.social-link:hover {
    background-color: #000;
}

.social-link svg {
    fill: #9CA3AF;
}

.main-body {
    min-height: 100vh;
    background-color: #000;
    color: #fff;
}

.header {
    padding: 20px 0;
}

.logo {
    max-width: 60vw;
    height: 390px;
    overflow: hidden;
    position: relative;
    margin: 2.5rem auto;
}

.logo video {
    position: relative;
    left: 0;
    right: 0;
    height: 1190px;
    width: 100%;
    top: -430px;
}

.page-tagline {
    display: inline-block;
    padding: .25rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid rgb(220 38 38 / 0.3);
    background: linear-gradient(to right, rgb(220 38 38 / 0.2), rgb(147 51 234 / 0.2));
}

.coming-soon {
    padding: 2.5rem 0;
}

.section-header {
    max-width: 600px;
    margin: 0 auto;
}

.main-heading {
    font-size: calc(clamp(1.875rem, 4.204vw + 0.955rem, 6rem));
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #dc2626 0%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: #9CA3AF;
    font-size: 1rem;
    font-weight: 300;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-card {
    background: linear-gradient(to bottom right, #111827, #030712);
    padding: .5rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid #1f2937;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    width: 100%;
    max-width: 160px;
    aspect-ratio: 4/3;
    justify-content: center;
}

.countdown-card__number {
    font-size: calc(clamp(1.5rem, 1.019vw + 1.277rem, 2.5rem));
    font-weight: 700;
    background: linear-gradient(135deg, #dc2626 0%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-transform: uppercase;
}

.countdown-card__label {
    color: #9CA3AF;
    font-size: .875rem;
    text-transform: uppercase;
}

.newsletter {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-head h6 {
    color: #E4EEFF;
    font-size: .875rem;
    font-weight: 300;
}

.newsletter-form .btn-primary {
    background: linear-gradient(90deg, #DC2626 0%, #9333EA 100%);
    color: #fff;
    white-space: nowrap;
    border-radius: 3rem;
    padding: 0 2.5rem;
    border: none;
}

.newsletter-form .form-control {
    background-color: #111827;
    border: 1px solid #1F2937;
    border-radius: 3rem;
    height: 3.5rem;
    padding: 0 1.5rem;
    font-size: .875rem;
    font-weight: 300;
}

.footer-main {
    max-width: 700px;
    margin: 0 auto;
    color: #9CA3AF;
    font-size: .875rem;
}

.footer-main h6 {
    color: #fff;
    font-weight: 500;
}

.block-title {
    color: #9CA3AF;
    font-size: .875rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: 300;
}