* {
    font-family: 'Tahoma', sans-serif;  /* Replace 'Roboto' with your chosen font and provide a fallback like 'sans-serif', 'serif', etc. */
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

.background-image {
    position: fixed; /* Fixed position */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../assets/img/bg.jpg'); /* Path to your background image */
    background-size: cover; /* Cover the whole screen */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    z-index: -1; /* Ensure it's behind the content */
}

.background-image::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1); 
}

.content {
    position: relative; /* Relative positioning */
    z-index: 1; /* Above the background image */
    padding: 20px; /* Add some padding around your content */
    height: 100%; /* Full height */
 }

.header-text {
    color: white; 
    text-align: center;
    z-index: 2;
    position: relative;
    padding-top: 50px; 
}

.sub-header-text {
    color: white; 
    text-align: center;
    z-index: 2;
    position: relative; 
}

#myAccountLink {
display: none;
}


.centered-image {
    max-width: 100%;
    height: auto;
    z-index: 2;
  display: flex;
  justify-content: center;
text-align: center;
}


.centered-image img {
    opacity: 0;
    visibility: hidden;
    max-width: 100%;
    height: auto;
}

@keyframes zoomBounce {
    0% {
        animation-timing-function: ease-out;
        transform: scale(0);
    }
    25%, 55%, 85%, 100% {
        animation-timing-function: ease-out;
        transform: scale(1);
    }
    40% {
        animation-timing-function: ease-in;
        transform: scale(1.4);
    }
    70% {
        animation-timing-function: ease-in;
        transform: scale(1.2);
    }
    90% { transform: scale(1.1) }
}

@keyframes slideInFromRightImage {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


@keyframes zoomInImage {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.carousel {
 z-index: 2;
    position: relative;
}

.carousel-text {
    font-size: 20px; 
    text-align: center;
    padding: 10px;
    color: #fc0;
    font-weight: bold;
}

.carousel-indicators li {
    background-color: white; 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    text-indent: -999px; 
}

.carousel-indicators-howto li {
    background-color: white; 
    width: 10px; 
    height: 10px; 
    border-radius: 50%; 
    text-indent: -999px; 
}


.carousel-indicators .active {
    background-color: red; 
}

.carousel-indicators-howto .active {
    background-color: red; 
}

.carousel-indicators [data-bs-target] {
    height: 10px;
    width: 10px; 
}

.carousel-indicators-howto [data-bs-target] {
    height: 10px;
    width: 10px; 
}


.carousel-indicators {
    list-style: none; 
    padding: 0; 
    bottom: -15px;
}

.carousel-indicators-howto {
    list-style: none; 
    padding: 0; 
    bottom: -45px;
}


.carousel-image {
marging: auto;
position: relative;
width: 100%;
max-width: 500px;
}

.form-container {
    text-align: center;

    z-index: 2;
    position: relative;
}

.form-container input[type="tel"], .form-container input[type="text"], .form-container button {
width: 100%;    
max-width: 600px; 
    padding: 10px;
    margin: 10px auto; 
    display: block; 
    border-radius: 30px;
}

.form-container input[type="tel"], .form-container input[type="text"] {
    border: 1px solid #ddd;
    text-align: center; 
}

.form-container button {
    background-color:  #fc0; 
    color: black;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 20px; 
}

.form-container button:hover {
    background-color: 	#FFD700; 
}

.terms-and-conditions {
    text-align: center;
    z-index: 2;
    position: relative;
}

.terms-and-conditions a {
    color: white; 
    text-decoration: none;
}

.terms-and-conditions a:hover {
    text-decoration: underline; 
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.carousel-appear {
    opacity: 1; 
    visibility: hidden; 
}

.carousel-appear.active {
    animation: bounce-in-up 1s ease forwards;
    visibility: visible; 
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.form-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
}

.form-appear.active {
    animation: slideInFromLeft 1s ease-out forwards;
    visibility: visible;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.form-appear .button-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
}

.form-appear.active .button-appear {
    animation: slideInFromRight 1s ease-out forwards;
    visibility: visible;
}

@keyframes slideUpFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.text-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
}

.text-appear.active {
    animation: slideUpFromBottom 1s ease-out forwards;
    visibility: visible;
}

@keyframes fadeInHeader {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.header-text-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}

.header-text-appear.active {
    animation: fadeInHeader 1s ease-out;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-header-text-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}

.sub-header-text-appear.active {
    animation: slideInFromRight 1s ease-out;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.navbar {
    width: 100%;
    z-index: 3; 
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 20px; 
}

.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

    .nav-item {
opacity: 1;
margin-right: 20px;
margin-top: 20px;
margin-left: 20px;
    }

.nav-item a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-item i {
    margin-right: 10px; 
}

.nav-item a:hover {
    color: #fc0;
}

.burger {
    display: none;
    cursor: pointer;
    margin-top: 15px;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .burger {
        display: block;
    }    
.navbar-logo {
        height: 30px; 
        right: 10px; 
        top: 5px; 
    }

    .nav-list {
        position: fixed;
        right: 0;
        height: 100vh;
        top: 0;
        background: rgba(0, 0, 0, 0.9); 
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 60%;
        transform: translateX(100%); 
        transition: transform 0.5s ease-in;
 display: none;
    }

.nav-list.nav-active {
    display: block;
}

    .nav-list li {
        opacity: 1;
    }

.nav-list li:first-child {
    margin-top: 60px; 
}

.nav-item i {
    margin-right: 20px; 
}

    .nav-bar.active .nav-list {
        transform: translateX(0);
    }
}

.nav-active {
    transform: translateX(0);
    z-index: 2;
}

.burger-toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-toggle .line2 {
    opacity: 0;
}

.burger-toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.navbar-logo {
    height: 50px; 
    position: absolute;
    right: 20px;
    top: 10px; 
}

@keyframes rollDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.hidden {
    display: none;
}

.btn-goback {
    z-index: 2;
    position: relative;
    margin: auto;
    max-width: 460px;
    width: 95%;
    border-radius: 15px;
    top: 25px;
}

.go-back-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    margin-bottom: 20px;
}

.go-back-appear.active {
    animation: slideInFromLeft 1s ease-out forwards;
    visibility: visible;
}

.white-box {
    border-radius: 5px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.43;
    letter-spacing: normal;
    color: #000;
    padding: 5px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 0 15px;
}

@keyframes bounce-in-up {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% { transform: translateY(10px); }
  100% { transform: translateY(0); }
}

.prizes {
z-index: 2;
position: relative;
max-width: 800px;
width: 95%;
}

.prizes-appear {
    opacity: 1;
    visibility: hidden;
    transform: translateY(100%);
}

.prizes-appear.active {
    animation: bounce-in-up 1s ease forwards;
    visibility: visible;
}

.table-winners {
font-size: 0.8rem;
    border-radius: 10px;
    overflow: hidden; 
max-width: 600px;
margin: auto;
}


@media (min-width: 768px) {
  .table-winners {
font-size: 1rem; 
 }
  }

.no-top {
top: 0;
}

.winners-appear {
    opacity: 1;
    visibility: hidden;
    transform: translateY(100%);
}

.winners-appear.active {
    animation: bounce-in-up 1s ease forwards;
    visibility: visible;
}

.terms {
z-index: 2;
position: relative;
max-width: 800px;
margin: auto;
width: 95%;
background: rgba(0, 0, 0, 0.3);
color: white;
}

.accordion {
z-index: 2;
position: relative;
max-width: 800px;
margin-top: 20px;
width: 100%;
}

.accordion-item {
    margin-bottom: 20px;
}


.accordion-item {
    border-top-left-radius: var(--bs-accordion-border-radius);
    border-top-right-radius: var(--bs-accordion-border-radius);
    border-bottom-left-radius: var(--bs-accordion-border-radius);
    border-bottom-right-radius: var(--bs-accordion-border-radius);
}

.accordion-header {
    margin-bottom: 10px;
    border-top-left-radius: var(--bs-accordion-border-radius);
    border-top-right-radius: var(--bs-accordion-border-radius);
    border-bottom-left-radius: var(--bs-accordion-border-radius);
    border-bottom-right-radius: var(--bs-accordion-border-radius);
}

.accordion-button {
    border-top-left-radius: var(--bs-accordion-border-radius);
    border-top-right-radius: var(--bs-accordion-border-radius);
    border-bottom-left-radius: var(--bs-accordion-border-radius);
    border-bottom-right-radius: var(--bs-accordion-border-radius);
}


.accordion-button:focus {
    z-index: 2;
    border-color: white;
    outline: 0;
    box-shadow: unset;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: white;
    box-shadow: unset;
}

@keyframes rollDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.accordion-appear {
    opacity: 1;
    visibility: hidden;
    transform: translateY(100%);
}

.accordion-appear.active {
    animation: bounce-in-up 1s ease forwards;
    visibility: visible;
}




.profile-container {
margin-top: 20px;
    width: 100%; 
    justify-content: center; 
    display: block;
}

.profile-container-appear {
    opacity: 1;
    visibility: hidden;
    transform: translateY(100%);
}

.profile-container-appear.active {

    animation: bounce-in-up 1s ease forwards;
    visibility: visible;
}




     .card{

        width: 450px;
        border: none;
        border-radius: 15px;
        padding: 8px;
        background-color: #fff;
        position: relative;
        height: 420px;
box-shadow: 0 0 15px;
       }

       .upper{

        height: 100px;

       }

       .upper img{

        width: 100%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;

       }

       .user{
        position: relative;
       }

       .profile img{

        
        height: 80px;
        width: 80px;
        margin-top:2px;

       
       }

.profile-pic {
position: relative;
top: -20px;
}

       .profile{

        position: absolute;
        top:-50px;
        left: 38%;
        height: 90px;
        width: 90px;
        border:3px solid #fff;

        border-radius: 50%;

       }

       .follow{

        border-radius: 15px;
        padding-left: 20px;
        padding-right: 20px;
        height: 35px;
  width: 80%;
  margin-bottom: 10px; // Add some space between the buttons
  display: block;
  margin-left: auto;
  margin-right: auto;

       }

       .stats span{

        font-size: 29px;
       }


        .custom-box {
            background-color: black;
	    color: white;
            border-radius: 10px;
            padding: 5px;
            margin-top: 60px;
            max-width: 250px;
            margin-left: auto;
            margin-right: auto;
        }

        .custom-title {
            font-weight: bold;
	    color: white;
            margin-right: 10px; /* Adds spacing between the title and the value */
        }

   .box-item {
            margin: auto;
  text-align: center;
}



.home-header-text {
    color: white; 
    text-align: center;
    z-index: 2;
    position: relative;
    padding-top: 10px; 
}

.home-header-text-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}

.home-header-text-appear.active {
    animation: slideInFromRight 1s ease-out;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.custom-box-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}

.custom-box-appear.active {
    animation: fadeInHeader 1s ease-out;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#countdown {
    width: 80px; /* Updated width */
    height: 80px; /* Updated height */
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

#countdownCircle {
    /* Update the circumference calculation based on the new radius */
    stroke-dasharray: 220; /* Approximately 2 * Math.PI * 35 */
    stroke-dashoffset: 0; /* Start with a full offset (no circle visible) */
    transition: stroke-dashoffset 1s linear; /* Transition over 5 seconds for the countdown */
}

#countdownText {
font-size: 20px;
color: white;
 fill: white;
}

.pregame-header-text {
    color: white; 
    text-align: center;
    z-index: 2;
    position: relative;
    padding-top: 50px; 
}

.pregame-header-text-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}

.pregame-header-text-appear.active {
    animation: fadeInHeader 1s ease-out;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(0px); }
    to { opacity: 1; transform: translateY(0); }
}

.countdown-appear {
    opacity: 0;
    visibility: hidden;
    transform: translateY(0px);
}

.countdown-appear.active {
    animation: fadeIn 1s ease-out;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}


.pregame-row-appear {
    opacity: 0;
    visibility: hidden;
    max-width: 400px;
    margin: auto;
}

.pregame-row-appear.active {
    animation: fadeInUp 500ms;
    opacity: 1;
    visibility: visible;
    max-width: 400px;
    transform: translateY(0);
    margin: auto;
}

.pregame-star {
margin: auto;
position: relative;
top: 22%;
}


#timer-container {
max-width: 400px;
margin: auto;
}

.progress-bar {
    background-color: black;
  width: 50%;
}

.score-icon-size i {
    font-size: 100px; /* This controls the size of the icon */
    height: 100px; /* This ensures the icon container is 50px */
    display: inline-flex; /* This helps in vertically centering the icon if needed */
    align-items: center; /* This vertically centers the icon */
        margin-top: 20px;     /* Add top margin */
    margin-bottom: 20px;  /* Add bottom margin */
}

.question-container {
    width: 100%;
    height: 120px;
  margin: auto;
  vertical-align: middle;
max-width: 500px;
}

.game-container {
    display: none;
}

.game-container {
    width: 100%;
    height: auto;
	border-radius: 10px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
	 /* Horizontal offset, vertical offset, blur radius, spread radius, color */
max-width: 600px;
z-index: 4;
}

.action-btn {
  width: 70%;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
max-width: 400px;
}

.bg-custom {
    background-color: #FFFFF5 !important;
}

.answer-btn {
  width: 80%;
  margin-bottom: 10px; // Add some space between the buttons
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-color: #DB810B;
border-color: #DB810B;
  color: #FFFFF5;
  border-radius: 20px;
max-width: 400px;
}

   .btn.btn-primary.answer-btn:focus,
   .btn.btn-primary.answer-btn:hover,
   .btn.btn-primary.answer-btn:active,
   .btn.btn-primary.answer-btn:disabled    {
        background-color: #FFFFF5;
        color: #DB810B;
        border-color: #DB810B;
    }

  .btn.btn-primary.normal-button {
        background-color: #DB810B;
        color: #FFFFF5;
        transition: all .7s;
        border-color: #DB810B;
    }
   .btn.btn-primary.normal-button:hover,
   .btn.btn-primary.normal-button:focus,
   .btn.btn-primary.normal-button:active,
   .btn.btn-primary.normal-button:disabled    {
        background-color: #FFFFF5;
        color: #DB810B;
        border-color: #DB810B;
    }


   .btn.btn-primary.action-btn {
        background-color: black;
        color: white;
        border-color: black;
    }
   .btn.btn-primary.action-btn:hover,
   .btn.btn-primary.action-btn:focus,
   .btn.btn-primary.action-btn:active,
   .btn.btn-primary.action-btn:disabled    {
        background-color: white;
        color: black;
        border-color: black;
    }

.yellow-box {
    background-color: #E0AE0D; /* Set the background color to yellow */
    margin: 5px; /* Add margin around the box */
    padding: 5px; /* Add some space inside the box around your content */
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: white;
font-weight: bold;
}

.number-container {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

.number-container li {
    margin: 0 4px;
    padding: 4px 9px;
    border: 1px solid #ddd;
    border-radius: 50%;
}

.number-container li.current {
    background-color: black;
    color: white;
    border-color: black;
}


@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.heartbeat {
    animation: heartbeat 1s ease-in-out;
}


.modal-content {
height: 85vh;
}

.modal-header 
{
marging: auto;
display: block;
}



.bg-result {
    background-image: url('../assets/img/bg.jpg'); /* Path to your background image */
    background-size: cover; /* Cover the whole screen */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
}


.animated-score {
  font-size: 2rem;
  transition: transform 0.5s ease-in-out;
}

.animated-score.scale-up {
  transform: scale(1.5);
}

.submit-btn-container {
padding-bottom: 10px;
}


::-webkit-scrollbar {
    width: 0px; /* Adjust the width of the scrollbar */
    height: 0px;
}

::-webkit-scrollbar-track {
    background: #2e2e2e; /* Dark track/background */
}

::-webkit-scrollbar-thumb {
    background: #555; /* Darker thumb */
    border-radius: 6px; /* Rounded corners for the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #888; Slightly lighter thumb on hover */
}
