/* =========================
   Meet Neo. Let's follow the white rabbit :)
   Author: Qbit
   Build Date: 12/05/2026
   Version: 1.0.0

   File path: /uploads/
========================= */

/* =========================
   Import fonts 
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&family=Quicksand&display=swap');

/* =========================
   Root styles 
========================= */

:root {

}

/* =========================
   Global styles 
========================= */

* {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

html {
  width: 100%;
  min-height: 100%;
  font-size: 100%;
  scroll-behavior: smooth;
}

body {

   position: relative;
  min-height: 100vh;
  background: none;

  width: 100%;
  min-height: 100dvh;

  font-size: 1rem;
  font-family: 'Quicksand', sans-serif;
  color: #fff;
  line-height: 1.6;

  background-color: #000;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(to bottom, rgba(0,0,0,.4), rgba(0,0,0,.9)),
    url('/uploads/carousel/holding.jpg') center -250px / cover no-repeat;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: 'Poppins', sans-serif;
   font-size: 1.8em;
   line-height: 1.2em;
   margin-bottom: 10px;
}

p {
   margin-bottom: 20px;
}

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

ul {
   list-style: none;
   margin-bottom: 20px;
}

a {
   text-decoration: none;
   color: #fff;
   transition: color 0.3s ease, transform 0.5s ease-in-out;
}

a:hover {
   color: #f7921e;
}

/* =========================
   Page loader styles 
========================= */

.loader {
   position: fixed;
   inset: 0;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 5px;
   background: #333;
   color: #fff;
   transition: opacity .4s;
   z-index: 9999;
}

.loader.hidden {
   opacity: 0;
   pointer-events: none;
}

.spinner {
   width: 40px;
   aspect-ratio: 1;
   border: 5px solid #ffffff33;
   border-top-color: #f7921e;
   border-radius: 50%;
   animation: spin 1s linear infinite;
}

.progress {
   margin: 0;
   font-size: 0.8em;
   line-height: 1;
   font-family: sans-serif;
}

@keyframes spin {
   to {
      transform: rotate(1turn);
   }
}

/* =========================
   Main styles 
========================= */

/* =========================
   Arrow styles 
========================= */

.arrow {
  position: absolute;
  font-size: 2.4em;
  left: 50%;
  bottom: 100px;
  width: 50px;
  height: 50px;
  display: block;
  background: red;
  transform: translateX(-50%);
}

.arrow i {
   color: #fff;
   font-size: 2.4em;
   display: block;
   padding: 0 5px 5px 5px; 
}

/* =========================
   Back to top styles 
========================= */

.top {
   position: fixed;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
   display: none;
   border-top-left-radius: 5px;
   border-top-right-radius: 5px;
   background: rgb(0 0 0 / 50%);
   cursor: pointer;
   text-align: center;
}

.top i {
   color: #fff;
   font-size: 2.4em;
   display: block;
   padding: 0 5px 5px 5px;
}

/* =========================
   Header styles 
========================= */

header {
   margin-bottom: 10px;
}

.logo {
   width: 220px;
   max-width: 100%;
   height: 85px;
   display: block;
   background: url('/uploads/svg/logo.svg') no-repeat center center / contain;
   text-indent: -9999px;
   margin: auto;
}

/* =========================
   Form styles
========================= */

input {
  width: 100%;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 12px 14px;

  font-family: 'Poppins', sans-serif;
  font-size: 1.0em;
  color: #fff;

  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;

  outline: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

input:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(247, 146, 30, 0.75);
  box-shadow:
    0 0 0 3px rgba(247, 146, 30, 0.18),
    0 10px 30px rgba(0, 0, 0, 0.18);
}

input[type="submit"] {
  color: #333;
  font-weight: 600;
  background: #f7921e;
  border: none;
  border-radius: 50px;

  cursor: pointer;

  animation: bounceText 3s ease-in-out infinite;

  transition:
    background 0.5s ease,
    color 0.5s ease;
}

input[type="submit"]:hover {
  color: #fff;
  background: #333;
}

/* =========================
   Social styles 
========================= */

.social li {
   display: inline;
}

.social a {
   width: 35px;
   height: 35px;
   border-radius: 50px;
   text-indent: -9999px;
   display: block;
   background-color: #f7921e
}

/* =========================
   Button styles 
========================= */

.btn {
   background-color: #f7921e;
   border-radius: 50px;
   font-family: 'Poppins', sans-serif;
   font-weight: 600;
   color: #333;
   display: inline-block;
   transition:
    background 0.5s ease,
    color 0.5s ease;
   padding: 10px 15px 10px 15px;
}

.btn:hover {
   background-color: #333;
   color: #fff;
}

.group-btn {
   animation: bounceText 3s ease-in-out infinite;
}

/* =========================
   Countdown styles 
========================= */

.countdown {
   position: relative;
   height: 500px;
   background: url('/uploads/images/holding.png') no-repeat top center / contain;
   text-align: center;
}

.countdown ul {
   font-family: 'Poppins', sans-serif;
   font-size: 1.4em;
   margin: 75px 0 0 0;
}

.countdown li {
   display: inline;
}

.countdown li span {
   font-size: 0.6em;
}

.countdown p {
   font-size: 0.8em;
}

/* =========================
   Checkbox styles
========================= */

.checkbox {
  --checkbox-size: 25px;
  --checkbox-bg: #f7921e;
  --checkbox-active: #f7921e;
  --checkbox-tick: #333;

  display: inline-flex;
  align-items: flex-start;
  position: relative;
  gap: 10px;
  margin: 10px 0 20px;
  cursor: pointer;
  user-select: none;
  text-align: left;
}

/* Hide native checkbox but keep it accessible */
.checkbox input {
  position: absolute;
  opacity: 0;
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  margin: 0;
  cursor: pointer;
}

/* Custom checkbox */
.checkbox .checkmark {
  position: relative;
  flex: 0 0 var(--checkbox-size);
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  background-color: var(--checkbox-bg);
  box-sizing: border-box;
}

/* Hover and checked states */
.checkbox:hover .checkmark,
.checkbox input:checked + .checkmark {
  background-color: var(--checkbox-active);
}

/* Keyboard focus */
.checkbox input:focus-visible + .checkmark {
  outline: 2px solid var(--checkbox-active);
  outline-offset: 3px;
}

/* Checkmark indicator */
.checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--checkbox-tick);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* Show checkmark when checked */
.checkbox input:checked + .checkmark::after {
  display: block;
}

.terms {
  text-align: left;
}

/* =========================
   Animation styles
========================= */

@keyframes bounceText {
  0%,
  88%,
  100% {
    transform: translateX(0);
  }

  91% {
    transform: translateX(-4px);
  }

  94% {
    transform: translateX(4px);
  }

  97% {
    transform: translateX(-2px);
  }
}

/* =========================
   Cookie bar styles
========================= */

#cookie {
   width: 100%;
   position: fixed;
   left: 0;
   top: 0;
   display: none;
   color: #fff;
   background: rgba(20,20,20,0.8); 
   text-align: center;
   padding: 20px;
   z-index: 1000;
}

#cookie p {
   margin: 0;
}

#cookie a {
   color: #fff;
}

#cookie .btn {
   color: #333;
   cursor: pointer;
}

#cookie .btn:hover {
   color: #fff;
}

/* =========================
   Scroll styles
========================= */

#mouse-scroll {
   --scroll-color: #fff;
   display: none;
   position: absolute;
   left: 50%;
   bottom: 60px;
   transform: translateX(-50%) translateY(0);
   text-align: center;
   opacity: 1;
   pointer-events: auto;
   transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

#mouse-scroll.is-hidden {
   opacity: 0;
   visibility: hidden;
   pointer-events: none;
   transform: translateX(-50%) translateY(12px);
}

#mouse-scroll p {
   margin-bottom: 5px;
   color: var(--scroll-color);
   font-size: 0.8em;
}

#mouse-scroll .mouse-in {
   width: 25.2px;
   height: 37.8px;
   margin: 0 auto;
   border: 2px solid var(--scroll-color);
   border-radius: 19px;
   position: relative;
}

#mouse-scroll .mouse-in::before {
   content: "";
   position: absolute;
   top: 8px;
   left: 50%;
   width: 2.4px;
   height: 6.4px;
   background: var(--scroll-color);
   border-radius: 999px;
   transform: translateX(-50%);
   animation: mouse-wheel 1.2s ease infinite;
}

@keyframes mouse-wheel {
  from {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  to {
    opacity: 0;
    transform: translateX(-50%) translateY(7.2px);
  }
}

/* =========================
   Responsive styles
========================= */

@media (max-width: 768px) { 

   /* =========================
      Global styles 
   ========================= */

   html,
   body {
      overflow-x: hidden;
   }

   body::before {
      background-position: center 0;
   }

   section,
   .container,
   .content,
   form {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      max-width: 100%;
   }

   input {
      text-align: center;
   }

   /* =========================
      Header styles 
   ========================= */

   header {
      margin-bottom: 0;
   }

   /* =========================
      Footer styles
   ========================= */

   footer ul {
      margin-bottom: 0;
   }

   /* =========================
      Main styles 
   ========================= */

   main {
      text-align: center;
   }

   /* =========================
      Back to top styles 
   ========================= */

   .top i {
      padding-bottom: 0;
   }

   /* =========================
      Cookie bar styles 
   ========================= */

   #cookie .btn {
      display: block;
      margin-top: 10px;
   }

   /* =========================
   Scroll styles
   ========================= */

   #mouse-scroll {
      display: block;
   }

   /* =========================
      Countdown styles
   ========================= */

   .countdown {
      height: 500px;
   }

}