@font-face {
    font-family: 'Gotham Book';
    src: url('/fonts/GothamBook.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RaceCar';
    src: url('/fonts/RaceSport.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GothamBold';
    src: url('/fonts/GothamBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
  font-size: 14px;
}

.fullwidth {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

@media (min-width: 768px) {
    html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
   /* overflow: hidden;*/ /* Prevent scrollbars */
    /* background-color: #E1251B;*/
    background: linear-gradient(to bottom, #0151B4, #012B73, #010D1D);
    color: white;
    font-family: "GothamBold", Arial, sans-serif;
    background-attachment: fixed;
}
.container-fluid,
.row {
    height: 100vh;
    margin: 0;
    padding: 0;
}

#paradise-logo{
    width:35%;
    margin-top:2rem;
}


#countdown-timer {
    color: white !important;
    font-size: 3rem !important;
    font-weight: 600 !important;
    margin-top: -1rem;
}

#next-draw-label {
    color: #F5B71D !important;
    font-size: 2.5rem !important;
    font-weight: 600 !important;
    margin-top: 2rem;
}

#latest-results-label {
    color: #F5B71D !important;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 0rem;
}

.promotion-img {
    height: 100%;
    width: 100%;
    object-fit: cover; /* Ensures it fills without distortion */
}


.custom-results-table {
    width: 85%;
    color: white;
    border-collapse: collapse;
    border-top: 4px solid white;
    border-bottom: 4px solid white;
}

    /* Header row with bottom border */
    .custom-results-table thead tr {
        border-bottom: 4px solid white;
    }

    .custom-results-table th,
    .custom-results-table td {
        border: 2px solid white;
        padding: 0.5rem;
        background-color: transparent;
        font-size: 1rem;
        text-align: center;
    }

    /* Remove left border from first cell in each row */
    .custom-results-table tr td:first-child,
    .custom-results-table tr th:first-child {
        border-left: none;
        text-align: left;
    }

    /* Remove right border from last cell in each row */
    .custom-results-table tr td:last-child,
    .custom-results-table tr th:last-child {
        border-right: none;
    }

    /* Optional: make header text larger and bold */
    .custom-results-table thead {
        font-weight: bold;
        font-size: 1.2rem;
    }

.table-sub-header {
    color: #F5B71D !important;
}

#video-overlay {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*.results-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;*/ /* aligns footer-images to the right */
/*}*/

#footer-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; 
}

    #footer-images img {
        width:20%;
        height: auto;
        margin-top:-0.3rem;
    }

/* Vertical white line */
.vertical-divider {
    width: 4px;
    height: auto;
    align-self: stretch;
    background-color: white;
}

@media (min-width: 992px) {
    #paradise-logo {
        width: 35%;
    }

    #footer-images img {
        width: 20%;
        max-width: none;
    }

    #countdown-timer {
        font-size: 6rem !important; 
        margin-top: -2rem;
    }
}


