/* ==============================
   Global Styles
   ============================== */

body {
    font-family: 'DBHeaventRounded', sans-serif;
    background: var(--base-Brand-900, #000E32);
    color: #FFFFFF;
    line-height: 1.6;
    font-weight: 400;
    font-size: 1.7rem;
    max-width: 100vw;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DBHeavent', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}


/* Header */

header {
    opacity: 1;
    height: 10vh;
    color: red;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    background: linear-gradient(180deg, #121212 0%, #121212 30%, #121212a1 60%, transparent 100%);
    /* background: linear-gradient(180deg, #121212 0%, #121212 30%, #1212125b 100%) */
}


/* Footer */

footer {
    background: #000;
    color: #FFFFFF;
    padding: 1rem;
    margin-left: 4%;
    margin-right: 4%;
    max-width: 100vw;
}

section {
    padding: 72px 0;
}


/* Layout Wrapper */

#body-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-y: auto;
    background: #000E32;
    background: linear-gradient(180deg, rgba(0, 14, 50, 1) 0%, rgba(0, 14, 50, 1) 65%, rgba(0, 0, 0, 1) 100%);
}


/* Main Content */

#content {
    width: 100vw;
    max-width: 100vw;
    max-height: 100vh;
    overflow-y: auto;
    padding-left: 0%;
    padding-right: 0%;
    /* flex: 1; */
}

.header-bg {
    background: linear-gradient(180deg, #000000 0%, #121212 45%, #fff9f905 100%);
    height: 10vh;
    opacity: 1;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: #00ccff;
}

.btn-primary {
    background-color: #0080FF;
    border: none;
    padding: 0.5rem 1rem;
    color: #fff;
    border-radius: 0.25rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #00ccff;
}

.button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 58px;
    padding: 12px 32px;
    border-radius: 100px;
    font-size: 1.75rem;
    line-height: 1;
    color: white;
    background: linear-gradient(180deg, rgba(31, 31, 31, 0.31) 0%, rgba(133, 133, 133, 0.31) 100%);
    box-shadow: 0px -6px 24px rgba(254, 253, 255, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
}

.button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 2px;
    background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.2));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}

.button:hover {
    color: inherit;
    box-shadow: 0px 0px 40px rgba(254, 253, 255, 0.4);
    transform: translateY(-6px);
}

.description {
    color: #D7D7D7;
    letter-spacing: 0.5px;
    font-size: 1.7rem;
    margin-top: 16px;
}

.title-image-container {
    display: flex;
    justify-content: center;
    align-items: end;
    width: 50%;
}

.title-image-container .title-image {
    min-width: 272px;
}

.coming-soon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.btn-subscribe {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    width: 158px;
    height: 45px;
    gap: 12px;
    font-size: 1.5rem;
    color: white;
    background: linear-gradient(180deg, rgba(255, 0, 50, 0.3) 0%, #191919 100%);
    box-shadow: 0px -6px 24px rgba(254, 253, 255, 0.08);
    backdrop-filter: blur(3.8px);
    border-radius: 100px;
    pointer-events: auto;
}

.btn-subscribe:hover {
    box-shadow: 0px -4px 16px rgba(251, 244, 151, 0.35);
}

@media (max-width: 1024px) {
    footer {
        margin-left: 0%;
        margin-right: 0%;
    }
    .title-image-container {
        width: 50%;
    }
    .title-image-container .title-image {
        width: 100%;
    }
}

@media (max-width: 1023px) {
    header {
        height: 17vh;
    }
}

@media (max-width: 575px) {
    .button {
        max-width: 150px !important;
        font-size: 1.125rem;
        padding: 8px 21px;
        height: 44px;
    }
    .description {
        font-size: 1.3rem;
    }
    .title-image-container {
        width: 50%;
    }
    .title-image-container .title-image {
        max-width: 80%;
    }
}