/* 
Version : 1.5.2 
Last Update: 22-Sep-2025 14:30 (UTC +6.00)
*/


/*Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');



:root {
    --font1: "Jost", sans-serif;
    --rooftop-black: #0f0f0f;
    --rooftop-white: #fdfdff;
}

html,
body {
    height: 100%;
    width: 100%;
    background-color: var(--rooftop-black);
    color: var(--rooftop-white);
    font-family: var(--font1);
    font-weight: 300;
}

img {
    max-width: 100%;
}

.header_nav {
    width: 100%;
    transition: 0.3s;
    color: var(--rooftop-white);
    background-color: var(--rooftop-black) !important;
}

.teaser-container-parent {
    padding-left: 50px;
    padding-right: 50px;
}

.teaser-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    overflow: hidden;
}

.teaser-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.empty-space {
    height: 128px;
}

.empty-space.smaller {
    height: 64px !important;
}


.nav-link {
    /* color: var(--rooftop-white) !important; */
    font-size: 1.5rem;
}


.header-icon {
    color: #d6d6ca !important;
    text-decoration: none;
    font-size: 1.5rem;
    padding: 10px;
    /* transition: 0.1s; */
}

.header-icon.sm {
    font-size: 1.25rem !important;
}


.header-icon:hover {
    /* color: var(--rooftop-white) !important; */
    transform: scale(1.1);
}

.footer-text {
    font-size: 0.75rem;
    opacity: 0.5;
    padding-bottom: 15px;
    font-weight: 200;
}

.btn-hover {
    transition: transform 0.075s !important;
    transition: opacity 0.5s !important;
}

.btn-hover:hover {
    transform: translate(0, -3px);
}


.kickstarter-btn {
    width: 500px;
    max-width: 100%;
    height: auto;
}

.social-button-image {
    width: 400px;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* countdown related */
#countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 10px 60px;
    padding-bottom: 20px;
    border-radius: 10px;
    max-width: fit-content;
    margin: 15px auto 20px auto;
    color: #98c586;
    border: 3px solid;
    font-size: 3em;
    font-weight: bold;
}

.countdown-label {
    font-size: 1rem;
    font-weight: normal;
    margin-top: -10px;
}

#local-time-note {
    opacity: 0.6;
}


/* For screens with height less than or equal 950px */
@media (max-height: 950px) {
    .teaser-container-parent {
        padding-left: 100px;
        padding-right: 100px;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .teaser-container-parent {
        padding-left: 12px;
        padding-right: 12px;
    }

    #countdown-container {
        gap: 30px;
        padding: 10px 30px;
        font-size: 2.75em;
        font-weight: normal;
    }

    .countdown-label {
        font-size: 0.80rem;
    }
}