body {
    background-color: black;
    font-family: Montserrat, sans-serif;
}

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: black;
}

#join-now {
    background: #3bacb6;
    border: 1px solid #3bacb6;
    color: white;
}

#join-now:hover {
    background: #45c9d5;
}

#sign-in {
    background: rgba(0, 0, 0, 0);
    border: 2px solid #3bacb6;
    color: #fff;
}

#sign-in:hover {
    background: #3bacb6;
    border: 2px solid #3bacb6;
    color: white;
}

.link {
    cursor: pointer;
    /* font-weight: 600 !important; */
    text-transform: uppercase;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 15px;
    padding: .3em .8em;
    text-decoration: none;
    transition: all .23s ease 0s;
    height: 36px;
    letter-spacing: 1px;
    color: var(--primaryColor);
    cursor: pointer;
    font-weight: 400;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: color .23s ease;
}

.play-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #fff;
    color: #fff;
    opacity: 0;
    transition: opacity .23s ease;
}

.position-relative:hover .play-icon-wrapper {
    opacity: 1;
}

.play-icon-wrapper i {
    margin-left: 5px; /* Visual centering */
}

.fa-play{
    color: white;
    opacity: 0.8;
}
.image-container {
    max-width: 1800px;
}

.col,
.container-fluid {
    padding: 0;
}

.img-fluid {
    padding: 6px;
    box-sizing: border-box;
}

.site-footer {
    background: #000;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 12px;
    color: white;
    line-height: 1.2;
    font-size: 12px;
}

.site-footer a {
    color: white;
    /* text-decoration: none; */
}

.site-footer a:hover {
    color: #7d8fbb;
    /* text-decoration: underline; */
}

.footer-links {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.footer-text p {
    margin: 6px 0;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.footer-logos img {
    height: 28px;
}

@media (max-width:480px) {
    .site-footer {
        font-size: 13px;
    }

    .footer-logos img {
        height: 24px;
    }
}

#sticky-promo {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1000;
    max-width: 1920px;
}

/* Close button for sticky promo */
#sticky-promo #promo-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: transparent;
    font-size: 2.5rem;
    color: white;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    border: none;
}

@media (min-width:520px) and (max-width:576px) {
    #sticky-promo #promo-close {
        right: 35px;
        font-size: 2rem;
    }
}
@media (max-width:519px) {
    #sticky-promo #promo-close {
        right: 10px;
        font-size: 1.8rem;
    }
}