/* ===============================
   GLOBAL RESET
================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-font: "Sofia Sans Condensed", sans-serif;	
  --seconday-font: 'Inter', sans-serif;
  --btn-color: #FD3D91;
  --btn-color-hover: #e73583;
  --light-sec-bg: #1F1D35;
  --yellow:#FC9731;
  --white-color: #fff;
}

html {
  scroll-behavior: smooth;
}

@keyframes marqueeMove {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-20%);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

body {
  font-family: var(--seconday-font);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  background-color: #100c26;
  overflow-x: hidden;
}


/* ===============================
   TYPOGRAPHY
================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--primary-font);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Heading Scale */

h1 { font-size: 80px; }
h2 { font-size: 60px; }
h3 { font-size: 40px; }
h4 { font-size: 30px; }
h5 { font-size: 23px; }
h6 { font-size: 18px; }

@media (max-width: 992px) {
  h1 { font-size: 60px; }
  h2 { font-size: 50px; }
}

@media (max-width: 576px) {
  h1 { font-size: 38px !important; }
  h2 { font-size: 30px !important; }
}


/* ===============================
   IMAGES
================================= */

img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 100%;
}


/* ===============================
   CUSTOM CONTAINER (FIGMA 1420px)
================================= */

.container {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}


.row {
  margin-right: 0;
  margin-left: 0;
}


/* ===============================
   BUTTON BASE
================================= */

.btn {
    background-color: var(--btn-color);
    color: var(--white-color);
    font-family: var(--primary-font);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 15px 35px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.btn:hover {
  background-color: var(--btn-color-hover);
  color: var(--white-color);
}

.btn:focus,
.btn:active {
  outline: none !important;
  box-shadow: none !important;
}

/* ===============================
   SECTION SPACING
================================= */

.section-padding {
  padding: 80px 0;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 40px 0;
  }
}


/* ===============================
   TRANSITION
================================= */

.transition {
  transition: all 0.3s ease-in-out;
}


/* ===============================
   ANIMATION BASE
================================= */

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}


/* ===============================
   COUNTDOWN BASE
================================= */

.countdown-timer {
  display: flex;
  gap: 12px;
}

.time-box {
  min-width: 60px;
  text-align: center;
}


/* ===============================
   UTILITIES
================================= */

.cursor-pointer {
  cursor: pointer;
}

.text-bold {
  font-weight: 700;
}

.rounded-10 {
  border-radius: 10px;
}

.shadow-none {
  box-shadow: none !important;
}

/* ===============================
   HEADER
================================= */

.main-header {
  position: absolute;
  width: 100%;
  top: 30px;
  left: 0;
  z-index: 99;
  padding: 40px 0;
}

.logo img {
  max-height: 62px;
}

.crypto-icons img,
.crypto-icons-mobile img {
  width: 40px;
  margin-right: 15px;
  transition: transform 0.3s ease;
}
.crypto-icons-mobile {
    margin: 0px 0 20px;
}	

.crypto-icons-mobile img {
    width: 35px;
    height: 35px;
	margin: 0;
}

.crypto-icons-mobile .crypto-item span {
    font-size: 14px;
}

.crypto-icons-mobile .crypto-item {
    margin-right: 15px;
    text-align: center;
}

.crypto-icons img:hover,
.crypto-icons-mobile img:hover {
  transform: scale(1.15);
  filter: brightness(1.2);
}

.crypto-icons img:last-child {
    margin-right: 35px;
}


/* Base (Mobile first) */
.top-marquee {
  width: 100%;
  overflow: hidden;
  background: var(--yellow);
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 30px;                 /* spacing between items */
  will-change: transform;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===============================
   HERO BANNER
================================= */

.hero-banner {
  position: relative;
  background: url('../images/hero-bg.webp') no-repeat center right;
  background-size: cover;
  padding: 160px 0 100px;
  color: var(--white-color);
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-top-text {
  font-size: 24px;
  font-family: var(--primary-font);
}

.hero-title {
    margin: 10px 0px 20px;
    line-height: 1.1;
}
.hero-features {
    margin-bottom: 40px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: var(--seconday-font);
    color: var(--white-color);
}

.hero-features img {
  width: 35px;
  height: auto;
  flex-shrink: 0;
}

/* ===============================
   CLAIM TIMER SECTION
================================= */

.claim-timer-section {
  background: linear-gradient(90deg, #5B559B 0%, #1F1D35 100%);
  padding: 20px 0;
}

.claim-timer-wrapper {
  gap: 20px;
}

.claim-text h3 {
  color: var(--white-color);
  font-family: var(--primary-font);
}

.fire-icon {
  font-size: 30px;
  line-height: 1;
}

.claim-countdown p {
    color: var(--white-color);
    font-size: 20px;
}

#claimTimer {
    font-size: 50px !important;
    font-weight: 800;
    line-height: 40px !important;
}

.claim-btn .btn {
    background: var(--white-color);
    color: var(--btn-color);
}
.claim-btn .btn:hover {
    background: var(--btn-color);
    color: var(--white-color);
}

a.btn.hero-btn {
    margin-right: 20px;
}
.featured-slots-section {
  padding: 80px 0;
  background: #100C26;
}
.featured-slots-section p {
    color: #fff;
}

.section-title {
  color: var(--white-color);
}

.slot-card {
  border: 1px solid #353051;
  padding: 20px;
  height: 100%;
  transition: 0.3s ease;
}

.slot-card:hover {
  transform: translateY(-5px);
}

.slot-img {
  margin-bottom: 15px;
}

.slot-content h4 {
  color: var(--white-color);
  margin-bottom: 10px;
}

.slot-content p {
    font-size: 18px;
    margin-bottom: 0;
}

.slot-content a {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: underline;
    color: var(--white-color);
    font-family: var(--primary-font);
    font-size: 22px;
}

.slot-content a:hover {
    color: var(--btn-color);
}

.win-marquee {
  background: linear-gradient(90deg, #5B559B 0%, #1F1D35 100%);
  overflow: hidden;
  padding: 20px 0;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  width: fit-content;
  animation: marqueeMove 20s linear infinite;
}

.marquee-content span {
    font-family: var(--primary-font);
    font-size: 50px;
    font-weight: 800;
    color: var(--white-color);
    white-space: nowrap;
}

.diamond {
  margin: 0 20px;
  color: var(--yellow) !important;
}

.marquee-content:hover {
  animation-play-state: paused;
}


.crypto-features-section {
  background: #100C26;
  padding: 80px 0;
}

.crypto-heading {
  font-family: var(--primary-font);
  color: var(--white-color);
  margin-bottom: 60px;
}

.crypto-icon {
    width: 80px;
    margin: 0 auto 20px;
}

.crypto-feature-box h4 {
  font-family: var(--primary-font);
  color: var(--white-color);
  margin-bottom: 15px;
}

.crypto-feature-box p {
    font-family: var(--seconday-font);
    color: var(--white-color);
}


.bonus-details-section {
  background: var(--light-sec-bg);
  padding: 80px 0;
  color:var(--white-color);
}

.bonus-image img {
  width: 100%;
}

.bonus-content {
    padding-left: 45px;
}

.bonus-content h2 {
  font-family: var(--primary-font);
  margin-bottom: 15px;
}

.bonus-desc {
  font-family: var(--seconday-font);
  margin-bottom: 25px;
}

.bonus-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.bonus-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  flex-wrap: wrap;
}
.bonus-list li b {
    color: var(--yellow);
}

/* CHECK ICON */
.bonus-list li::before {
  content: "";
  min-width: 35px;
  width: 24px;
  height: 24px;
  background: url('../images/check-icon.svg') no-repeat center;
  background-size: contain;
}

.how-it {
    text-align: center;
    color: #fff;
}

/* FAQ SECTION */
.faq-section {
  padding: 80px 0;
  background: #1F1D35;
}

.faq-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 50px;
}

/* ACCORDION */

.faq-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(255,255,255,0.1);
}

.faq-accordion .accordion-button {
  background: transparent;
  color: var(--white-color);
  font-weight: 600;
  box-shadow: none;
  padding: 20px 0;
  font-family: var(--seconday-font);
  font-size:22px;
}

.faq-accordion .accordion-button::after {
  filter: invert(1);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: #fff;
}

.faq-accordion .accordion-body {
  color: var(--white-color);
  padding: 0 0 20px 0;
}

.logo-section {
  padding: 50px 0px 60px;
  background: var(--white-color);
}

.logo-slider{
  overflow: hidden;
  width: 100%;
}

.logo-track{
  display: flex;
  align-items: center;
  width: max-content;            /* KEY */
  gap: 40px;                     /* spacing between logos */
  animation: scroll 18s linear infinite;
  will-change: transform;
}

/* IMPORTANT: no % widths */
.logo-item{
  flex: 0 0 auto;
}

.logo-item img{                 
  width: auto;
  display: block;
}

/* Smooth loop (because duplicated once) */
@keyframes scroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Mobile tuning */
@media (max-width: 576px){
  .logo-track{ gap: 24px; animation-duration: 14s; }
}

.footer {
  background: #100C26;
  padding: 80px 0 30px;
  color: var(--white-color);
  text-align: center;
}

.footer-logo img {
    max-width: 160px;
    margin: 0 auto 25px;
}

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 16px;
}

.footer-crypto {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-crypto img {
  width: 40px;
  height: 40px;
}

.footer-divider {
    border: none;
    border-top: 1px solid;
    margin: 30px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.age-badge {
  width: 40px;
  height: 40px;
  border: 2px solid red;
  color: red;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* MOBILE STICKY */

.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0f0c2b;
  padding: 12px 16px 14px;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: none;
}

.mobile-sticky-cta .sticky-subtext {
  margin-top: 6px;
  font-size: 12px;
  color: #cfcfe8;
}

.mobile-sticky-cta .btn {
    display: block;
}

.mobile-sticky-cta .btn {
  animation: pulse 2.5s infinite;
}