@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat.ttf);
}
@font-face {
    font-family: Montage;
    src: url(../fonts/Montage.ttf);
}
@font-face {
    font-family: MontageGrunge;
    src: url(../fonts/MontageGrunge.ttf);
}

body{
    background-color: #0c0c0c;
    color: white;
}

body::after {
    content: "";
    background-image: url('../images/bg-image.svg');
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4; /* Adjust the value to your desired transparency level (0.0 to 1.0) */
    z-index: -1; /* Ensure the pseudo-element is behind other content */
}

.swal-overlay--show-modal .swal-modal {
    background-color: #181818 !important;
    color: #f0f0f0 !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5) !important;
    border-radius: 0;
  }


  .swal-title, .swal-text, .swal-footer, .swal-content, .swal-modal div, .swal-modal p{
    color: white!important;
  }

  .swal-content__input{
    border: 1px solid gray;
    background-color: #181818 !important;
    color: white!important;
  }

  .swal-content__input:focus{
    border-color: #FFB504;
  }

  .swal-icon--success__hide-corners, .swal-icon--success:after, .swal-icon--success:before{
    background-color: transparent;
  }

#register2, #submit-btn, #submit-btn3, #submit-recovery, #confirm-btn, #submit-btn4 {
    transition: all 0.2s ease;
}

#register2:hover, #submit-btn:hover, #submit-btn3:hover, #submit-recovery:hover, #confirm-btn:hover, #submit-btn4:hover{
    transform: scale(1.02);
}

.lp-container {
    padding: 20px 0;
    min-height: 100vh;
    display: flex;
}

.flex-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}
#signup-form{
    margin-top: 15px;    
}

input{
    border-radius: 4px;
    border: 0;
    padding: 5px 10px;
    width: 100%;
}

.download-btn{
    position: relative;
    background-color: transparent;
    border:0;
}

/* Spinner Styles */
.spinner {
    display: none; /* Hidden by default */
    width: 24px;
    height: 24px;
    border: 3px solid black; /* Light grey border */
    border-top-color: #FFB504; /* Spinner color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute; /* Position over the button */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg); /* Initial transform */
}

/* Spinner Animation */
@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Loading State Styles */
.btn-loading img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-loading .spinner {
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.warning-list{
    margin-top: 15px;
}
.warning-list li{
    font-size: 12px;
}

.hide {
    display: none;
  }

#submit-btn{
    width: 35%;
    cursor: pointer;
}

#submit-btn3, #submit-btn4, #confirm-btn, #submit-recovery{
    cursor: pointer;
}

a{
    color: white;
}

a:hover{
    color:white;
}

.strayshot-mobile-desc, .strayshot-mobile-logo{
    display: none;
}

.swal-button--confirm {
    background-color: #feb405!important;
}

.swal-button--confirm:hover {
    background-color: #eea700!important;
}

.swal-button:focus {
    outline: none;
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px #eea700;
}

#timer-row{
    margin-bottom: 30px;
}

#tournament-timer-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.timer{
    text-align: center;
    font-size: 40px;
    font-family: 'MontageGrunge', sans-serif;
}

.timer span{
    margin-left: 8px;
    color:#FFB504;
    font-size: 70px;
}

@media (max-width: 768px) {
    .lp-container{
        margin-top: 20px;
        margin-bottom: 20px;
        height: 100%;
    }

    .strayshot-desktop-desc, .strayshot-desktop-logo{
        display: none;
    }

    .strayshot-mobile-desc, .strayshot-mobile-logo{
        display: block;
    }
    
    #signin{
        text-align: center!important;
    }

    .timer{
        font-size: 25px;
    }

    #tournament-timer-container{
        padding-top: 25px;
    }
    #knowmore{
        width: 100% !important;
    }

}

@media (min-width: 769px) {
    #knowmore{
        width: 40% !important;
    }
}