@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #e47959;
  --dark-color: #30354f;
  --light-color: #b6dadd;
  --white: #ffffff;
  --text-color: #30354f;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Fira Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-color);
  overflow-x: hidden;
}

.font-exo {
  font-family: "Exo", sans-serif !important;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

@media screen and (min-width: 992px) {
  .container {
    max-width: 100%;
    padding: 0 24px;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.main-btn {
  font-size: 20px;
  background: linear-gradient(40deg, #ff9800, #eb7400);
  color: var(--white);
  padding: 6px 50px;
  border: 2px solid var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-family: "Exo", sans-serif !important;
  margin-bottom: 30px;
  box-shadow: 8px 8px 7px rgba(41, 41, 41, 0.301);
  cursor: pointer;
  text-transform: uppercase;
}

.bp-btn {
  background: #29abe2;
}

.btn {
  display: inline-block;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
}

.btn-secondary {
  background: var(--dark-color);
  color: var(--white);
}

.store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
}

.store-buttons .store-link {
  text-decoration: none;
}

.store-buttons .store-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.store-buttons .store-card:hover {
  background-color: #f8f8f8;
  border-color: rgb(201, 201, 201);
}

.store-buttons .icon {
  width: 28px;
  height: 28px;
  color: #333333;
}

.store-buttons .icon-content {
  text-align: left;
}

.store-buttons .small-text {
  font-size: 11px;
  color: #6b7280;
  margin: 0;
}

.store-buttons .large-text {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  font-family: "Exo", sans-serif !important;
  margin: 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 500px;
  animation: slideIn 0.3s ease;
  position: relative;
}

.modal-header {
  padding: 16px;
  border-bottom: 1px solid #e9ecef;
  position: relative;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  text-align: left;
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  font-size: 28px;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #343a40;
}

.modal-body {
  padding: 16px;
}

.modal-footer {
  padding: 16px;
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .container h1 {
    font-size: 2rem;
  }

  .modal-content {
    width: 95%;
    margin: 1rem;
  }

  .modal-footer {
    flex-direction: column;
  }

  .modal-footer .btn {
    width: 100%;
    margin: 0.25rem 0;
  }
}

.title {
  color: var(--primary-color);
  font-size: 50px;
  font-weight: 400;
  font-family: "Exo", sans-serif !important;
  margin-bottom: 16px;
  text-transform: uppercase;
}

header {
  padding: 150px 0;
  background-image: url(/assets/images/header-bg.webp);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
}

header .bunny {
  position: absolute;
  width: 350px;
  bottom: 30px;
  left: 30px;
  z-index: 2;
}

header .mainWrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(4px);
  padding: 30px;
  border-radius: 30px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

header .hero-cout {
  height: 100%;
}

header .mainWrapper .upper {
  width: 100%;
  text-align: center;
}

header .mainWrapper .upper .title {
  color: var(--primary-color);
  font-weight: 800;
  font-family: "Exo", sans-serif !important;
  text-align: center;
  font-size: 50px;
}

header .mainWrapper .upper .para {
  color: var(--text-color);
  font-weight: 400;
  font-size: 24px;
}

header .mainWrapper .lower {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

header .mainWrapper .lower h3 {
  color: var(--dark-color);
  font-size: 28px;
  font-weight: 800;
  font-family: "Exo", sans-serif !important;
  margin-bottom: 10px;
}

header .mainWrapper .lower .limited-badge {
  color: #000;
  font-size: 18px;
}

header .mainWrapper .lower .btns {
  display: flex;
  align-items: center;
  gap: 15px;
}

header .mainWrapper .lower .btns a img {
  width: 120px;
}

.how-it-works {
  padding: 140px 0;
  /* background: #080c0f; */
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, #080c0f, #060a0e, #160d09);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: float 8s infinite ease-in-out;
  opacity: 0.7;
}

.orb-1 {
  top: 15%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.25);
}

.orb-2 {
  bottom: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: rgba(236, 132, 72, 0.2);
  animation-delay: 2s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.4) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 100px 100px;
  pointer-events: none;
}
.how-it-works__line {
  position: absolute;
  top: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgb(255, 255, 255),
    transparent
  );
}

.how-it-works__header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-it-works__title {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  font-family: "Exo", sans-serif !important;
}

.how-it-works__title span {
  color: var(--primary-color);
  font-family: "Exo", sans-serif !important;
}

.how-it-works__subtitle {
  color: #9ca3af;
  max-width: 550px;
  margin: 0.5rem auto;
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.how-it-works__card {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  transition: 0.4s ease;
  background: #04060941;
  border: 2px solid #1a222b;
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.how-it-works__card:hover {
  border-color: var(--primary-color);
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.how-it-works__badge {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 45px;
  height: 45px;
  background: #040609;
  border: 2px solid #1a222b;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #e6e6e6;
}

.how-it-works__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-it-works__card:hover .how-it-works__icon {
  transform: scale(1.1);
}

.how-it-works__icon--primary {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}
.how-it-works__icon--accent {
  background: rgba(236, 72, 153, 0.15);
  color: #ec4899;
}
.how-it-works__icon--green {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}
.how-it-works__icon--yellow {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
}

.how-it-works__card-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  font-family: "Exo", sans-serif !important;
}

.how-it-works__card-text {
  color: #e6e6e6;
  font-size: 14px;
}

.how-it-works__cta {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.how-it-works__cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  font-family: "Exo", sans-serif !important;
}

.daily-prizes-section {
  position: relative;
  padding: 6rem 1rem;
  overflow: hidden;
}

.daily-prizes-section .bg-accent-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: rgba(197, 197, 197, 0.37);
  filter: blur(100px);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

.daily-prizes-section .heading {
  text-align: center;
  margin-bottom: 2rem;
}

.daily-prizes-section .badge {
  display: inline-flex;
  align-items: center;
  background: rgba(223, 123, 41, 0.1);
  border: 1px solid rgba(202, 134, 32, 0.2);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.daily-prizes-section .heading h2 {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--dark-color);
  text-transform: uppercase;
  font-family: "Exo", sans-serif !important;
}

.daily-prizes-section .heading .highlight {
  color: var(--primary-color);
  text-transform: uppercase;
  font-family: "Exo", sans-serif !important;
}

.daily-prizes-section .prize-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 4rem;
}

@media (min-width: 768px) {
  .daily-prizes-section .prize-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.daily-prizes-section .prize-card {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.daily-prizes-section .prize-card:hover {
  box-shadow: 0 10px 30px rgba(252, 123, 63, 0.1);
}

.daily-prizes-section .image-wrapper {
  position: relative;
  height: 300px;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.daily-prizes-section .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.daily-prizes-section .prize-card:hover img {
  transform: scale(1.08);
}

.daily-prizes-section .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.daily-prizes-section .prize-content {
  padding: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
  width: 100%;
}

.daily-prizes-section .prize-badge {
  display: inline-block;
  padding: 0.6rem 1rem;
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  border-radius: 50px;
  font-size: 0.875rem;
  gap: 6px;
  display: flex;
  align-items: center;
  width: fit-content;
}

.daily-prizes-section .cta-section {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.daily-prizes-section .cta-section p {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.daily-prizes-section .cta-section h3 {
  font-size: 24px;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-transform: uppercase;
  font-family: "Exo", sans-serif !important;
}

.monthly-prizes-section {
  position: relative;
  padding: 6rem 1rem;
  background: linear-gradient(to bottom right, #080c0f, #060a0e, #160d09);
  overflow: hidden;
  color: white;
  --silver: linear-gradient(90deg, #9ca3af, #6b7280);
  --gold: linear-gradient(90deg, #f59e0b, #fbbf24);
  --bronze: linear-gradient(90deg, #d97706, #ea580c);
}

.monthly-prizes-section .head {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.monthly-prizes__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  margin-bottom: 1rem;
  gap: 10px;
  display: flex;
  width: fit-content;
  margin: 0 auto 1rem;
}

.monthly-prizes-section .head h2 {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  font-family: "Exo", sans-serif !important;
}

.monthly-prizes-section .head h2 span {
  color: var(--primary-color);
  font-family: "Exo", sans-serif !important;
}

.monthly-prizes-section .head p {
  max-width: 600px;
  margin: 0 auto;
  color: #9ca3af;
}

.monthly-prizes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .monthly-prizes__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.monthly-prizes__card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border-radius: 20px;
  transition: 0.4s ease;
  background: #04060941;
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.monthly-prizes__card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.monthly-prizes__position-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 55px;
  height: 55px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.monthly-prizes__position-badge[data-place="gold"] {
  background: var(--gold);
}
.monthly-prizes__position-badge[data-place="silver"] {
  background: var(--silver);
}
.monthly-prizes__position-badge[data-place="bronze"] {
  background: var(--bronze);
}

.monthly-prizes__image-wrapper {
  position: relative;
  height: 230px;
  width: 100%;
  overflow: hidden;
}

.monthly-prizes__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.monthly-prizes__card:hover img {
  transform: scale(1.05);
}

.monthly-prizes__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.monthly-prizes__image-wrapper::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 60%,
    #000000 100%
  );
}

.monthly-prizes__content {
  padding: 1rem 1rem;
  text-align: center;
  background: #000;
}

.monthly-prizes__place {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  color: white;
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 0.5rem;
}

.monthly-prizes__place[data-place="gold"] {
  background: var(--gold);
}
.monthly-prizes__place[data-place="silver"] {
  background: var(--silver);
}
.monthly-prizes__place[data-place="bronze"] {
  background: var(--bronze);
}

.monthly-prizes__content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Exo", sans-serif !important;
  text-transform: uppercase;
}

.monthly-prizes__content p {
  color: #9ca3af;
}

.monthly-prizes__cta {
  text-align: center;
  margin-top: 4rem;
}
.monthly-prizes__cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  font-family: "Exo", sans-serif !important;
  margin-bottom: 12px;
}
.stay-connected-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.sc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .sc-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.sc-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 127, 80, 0.1);
  border: 1px solid rgba(255, 127, 80, 0.2);
  border-radius: 999px;
  margin-bottom: 1rem;
  gap: 10px;
  display: flex;
  width: fit-content;
  margin-bottom: 1rem;
  color: #ff7f50;
}
.sc-badge span {
  font-size: 0.875rem;
}

.sc-title {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--dark-color);
  text-transform: uppercase;
  font-family: "Exo", sans-serif !important;
  margin-bottom: 12px;
}

.sc-title span {
  color: var(--primary-color);
  font-family: "Exo", sans-serif !important;
}

.sc-features {
  display: grid;
  gap: 1rem;
  margin-bottom: 20px;
}

.sc-feature {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  transition: 0.25s;
}
.sc-feature:hover {
  border-color: #ff7f50;
}

.sc-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  font-weight: 700;
}
.sc-feature p {
  font-weight: 600;
  color: var(--dark-color);
  text-transform: uppercase;
  font-family: "Exo", sans-serif !important;
}

.sc-text {
  color: #666;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.sc-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  font-family: "Exo", sans-serif !important;
  margin-bottom: 12px;
}
.sc-visual-wrapper {
  position: relative;
}
.sc-visual-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.sc-image-frame {
  aspect-ratio: 1 / 1;
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(
    to bottom right,
    rgba(255, 127, 80, 0.2),
    rgba(124, 185, 255, 0.2)
  );
}
.sc-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bp-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(to bottom right, #080c0f, #060a0e, #160d09);
  overflow: hidden;
}

.bp-top-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(200, 107, 0, 0.815),
    transparent
  );
}
.bp-container {
  text-align: center;
}

.bp-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  margin-bottom: 1rem;
  gap: 10px;
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 14px;
}

.bp-title {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  font-family: "Exo", sans-serif !important;
}

.bp-title span {
  color: var(--primary-color);
  font-family: "Exo", sans-serif !important;
}
.bp-subtitle {
  color: #9ca3af;
  margin-bottom: 30px;
}

.bp-footer {
  color: #9ca3af;
  font-size: 16px;
}
.bp-footer span {
  color: var(--white);
}

.footer-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.counter {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 150px;
  margin: 0 auto;
}

.time_bunny {
  width: 100%;
  height: auto;
  display: block;
}

#countdownCanvas {
  position: absolute;
  top: 25px;
  left: 8px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.footer-section .footer-container {
  text-align: center;
}

.footer-section .countdown-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 3rem;
}

.footer-section .footer-heading h2 {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--dark-color);
  text-transform: uppercase;
  font-family: "Exo", sans-serif !important;
  margin-bottom: 1rem;
}

.footer-section .footer-heading h2 span {
  color: var(--primary-color);
  text-transform: uppercase;
  font-family: "Exo", sans-serif !important;
}

.footer-section .footer-heading ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  gap: 0.5rem;
}

.footer-section .footer-heading .dot {
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  display: inline-block;
}

.footer-section .footer-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  max-width: 700px;
  margin: 2rem auto;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.04);
}

.footer-form {
  display: grid;
  gap: 1.5rem;
  flex: 1;
}

.form-group {
  text-align: left;
}

.form-group label {
  font-size: 14px;
  display: block;
  margin-bottom: 0.3rem;
  color: var(--dark-color);
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 1rem;
  transition: 0.25s;
}

.form-group input:focus {
  border-color: var(--primary-color);
  outline: none;
}

.submit-btn {
  padding: 12px;
  background: var(--primary-color);
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

.footer-section .store-card {
  border: 1px solid #d1d5db;
}

.footer-section .footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.9rem;
  color: #6b7280;
}

/* ========================================
   PRELOADER STYLES
======================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 32px 0 #fff, -32px 0 #fff;
  position: relative;
  animation: flash 0.5s ease-in infinite alternate;
}

.loader::before,
.loader::after {
  content: "";
  position: absolute;
  left: -64px;
  top: 0;
  background: #fff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform-origin: 35px -35px;
  transform: rotate(45deg);
  animation: hitL 0.5s ease-in infinite alternate;
}

.loader::after {
  left: 64px;
  transform: rotate(-45deg);
  transform-origin: -35px -35px;
  animation: hitR 0.5s ease-out infinite alternate;
}

@keyframes flash {
  0%,
  100% {
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 32px 0 rgba(255, 255, 255, 0.25),
      -32px 0 rgba(255, 255, 255, 0.25);
  }
  25% {
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 32px 0 rgba(255, 255, 255, 0.25), -32px 0 rgba(255, 255, 255, 1);
  }
  50% {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 32px 0 rgba(255, 255, 255, 0.25),
      -32px 0 rgba(255, 255, 255, 0.25);
  }
  75% {
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 32px 0 rgba(255, 255, 255, 1), -32px 0 rgba(255, 255, 255, 0.25);
  }
}

@keyframes hitL {
  0% {
    transform: rotate(45deg);
    background-color: rgba(255, 255, 255, 1);
  }
  25%,
  100% {
    transform: rotate(0deg);
    background-color: rgba(255, 255, 255, 0.25);
  }
}

@keyframes hitR {
  0%,
  75% {
    transform: rotate(0deg);
    background-color: rgba(255, 255, 255, 0.25);
  }
  100% {
    transform: rotate(-45deg);
    background-color: rgba(255, 255, 255, 1);
  }
}
