﻿:root {
    /* Scrolling banner */

    --scrolling-banner-back-color: #090D12;
    --scrolling-banner-fore-color: #D9A84A;
    /* Primary buttons */

    --hot-button-back-color: #090D12;
    --hot-button-fore-color: #F1D28A;
    --hot-button-border-color: #C9973A;
    /* Secondary buttons */

    --button-back-color: #A8833E;
    --button-fore-color: #1A140B;
    --button-border-color: #5E4721;
}

/* --------------------------------------------------
   Base Layout
-------------------------------------------------- */

html {
    min-height: 100%;
    margin: 0;
    padding: 0;
    background: #090D12;
    overflow-y: auto;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: #090D12;
    color: #F1D28A;
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .08em;
    overflow-y: auto;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
}

.banner {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* --------------------------------------------------
   Scrolling Banner
-------------------------------------------------- */

.header {
    width: 100%;
    margin-top: 4px;
    overflow: hidden;
    background: var(--scrolling-banner-back-color);
    color: var(--scrolling-banner-fore-color);
}

#ScrollingBanner {
    margin: 0;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    text-align: left;
    line-height: 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    user-select: none;
}

/* --------------------------------------------------
   Main Content
-------------------------------------------------- */

.main {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 20px;
    box-sizing: border-box;
}

.button-container {
    margin-bottom: 20px;
}

/* --------------------------------------------------
   Buttons
-------------------------------------------------- */

.styled-button {
    width: 100%;
    margin-top: 20px;
    padding: 10px 0;
    box-sizing: border-box;
    background: var(--button-back-color);
    color: var(--button-fore-color);
    border: 2px solid var(--button-border-color);
    border-radius: 16px;
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
    cursor: default;
}

.custom {
    background: var(--hot-button-back-color);
    color: var(--hot-button-fore-color);
    border-color: var(--hot-button-border-color);
    cursor: pointer;
    transition: all .25s ease;
    box-shadow: 4px 4px 10px rgba(0,0,0,.35);
}

    .custom:hover {
        transform: translateY(-2px);
        box-shadow: 6px 6px 16px rgba(0,0,0,.55);
    }

    .custom:active {
        transform: translateY(1px);
    }

/* --------------------------------------------------
   Scroller spacing
-------------------------------------------------- */

.scroll {
    padding-left: 50px;
    padding-right: 50px;
}

/* --------------------------------------------------
   Custom Modal
-------------------------------------------------- */

.custom-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    padding: 20px;
    background: rgba(0,0,0,.75);
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

    .custom-modal.show {
        display: flex;
    }

.custom-modal-dialog {
    width: min(760px,100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #090D12;
    color: #F1D28A;
    border: 2px solid #C9973A;
    border-radius: 18px;
    padding: 28px;
    box-sizing: border-box;
    position: relative;
    box-shadow: 0 18px 60px rgba(0,0,0,.60);
    font-family: 'Orbitron', sans-serif;
    animation: modalPop .20s ease-out;
}

.custom-modal-close {
    position: sticky;
    top: 0;
    float: right;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    color: #F1D28A;
    font-size: 34px;
    font-weight: 700;
    cursor: pointer;
    z-index: 5;
}

    .custom-modal-close:hover {
        color: #D9A84A;
    }

#CustomAlertBody {
    line-height: 1.65;
    letter-spacing: .04em;
}

    #CustomAlertBody a {
        color: #F1D28A;
    }

    #CustomAlertBody hr {
        border: none;
        border-top: 1px solid #C9973A;
        margin: 20px 0;
    }

/* Modal Scrollbar */

.custom-modal-dialog::-webkit-scrollbar {
    width: 12px;
}

.custom-modal-dialog::-webkit-scrollbar-track {
    background: #090D12;
}

.custom-modal-dialog::-webkit-scrollbar-thumb {
    background: #C9973A;
    border-radius: 999px;
}

    .custom-modal-dialog::-webkit-scrollbar-thumb:hover {
        background: #D9A84A;
    }

/* --------------------------------------------------
   Animation
-------------------------------------------------- */

@keyframes modalPop {

    from {
        opacity: 0;
        transform: scale(.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --------------------------------------------------
   Mobile
-------------------------------------------------- */

@media (max-width:600px) {

    .main {
        padding-left: 14px;
        padding-right: 14px;
    }

    .styled-button {
        font-size: 16px;
        letter-spacing: .06em;
    }

    #ScrollingBanner {
        font-size: 21px;
        letter-spacing: .08em;
    }

    .custom-modal {
        padding: 10px;
    }

    .custom-modal-dialog {
        padding: 20px;
        border-radius: 14px;
    }
}
