/* ===============================
   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: linear-gradient(120deg, #7000ff, #ff1fc8 50%, #ffa327);
  --btn-color-hover: linear-gradient(120deg, #ff1fc8, #7000ff 50%, #ffa327);
  --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: 34px !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: 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: 10px 30px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.btn:hover {
  background: 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);
}


/* ===============================
   UTILITIES
================================= */

.cursor-pointer {
  cursor: pointer;
}

.text-bold {
  font-weight: 700;
}

.rounded-10 {
  border-radius: 10px;
}

.shadow-none {
  box-shadow: none !important;
}

/* ===============================
   HEADER
================================= */

.main-header {
    width: 100%;
    padding: 10px 0;
    background: #fff;
}

.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: #2f1a53;
  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/cms-img.jpg) no-repeat center right;
    background-size: cover;
    padding: 145px 0 145px;
    color: var(--white-color);
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-desc-text {
    padding-bottom: 25px;
}

.hero-top-text {
  font-size: 24px;
  font-family: var(--primary-font);
}

.hero-title {
    margin: 10px 0px 20px;
    line-height: 1.1;
}


/* ===============================
   WINNER CARDS
================================= */

.marquee-viewport{
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 14px; 
}

/* Optional subtle fade edges like many marquees */
.marquee-viewport:before,
.marquee-viewport:after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width:60px;
  pointer-events:none;
  z-index:2;
}
.marquee-viewport:before{
  left:0;
  background: linear-gradient(to right, rgba(10,12,16,1), rgba(10,12,16,0));
}
.marquee-viewport:after{
  right:0;
  background: linear-gradient(to left, rgba(10,12,16,1), rgba(10,12,16,0));
}

/* Track (the moving row) */
.marquee-track{
  display:flex;
  align-items:center;
  gap: 14px;
  width: max-content;
  will-change: transform;
  animation-name: marquee-left;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 22s; /* overridden by data-speed via JS */
  transform: translate3d(0,0,0);
}

/* Pause on hover (optional) */
.marquee-viewport:hover .marquee-track{
  animation-play-state: paused;
}

/* Winner cards */
.winner-card{
  flex: 0 0 auto;
  width: 280px;                /* key: fixed width prevents jerks */
  min-height: 62px;
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

/* left thumbnail */
.winner-thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

/* fallback icon block if you don’t use an image */
.winner-miniicon{
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
}

.winner-mid{
  min-width: 0; /* enables ellipsis */
  flex: 1;
}

.winner-title{
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-sub{
  margin-top: 4px;
  display:flex;
  align-items:center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
}

.winner-pill{
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: #1fbf5b;
  color: #06120a;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
}

/* Marquee animation */
@keyframes marquee-left{
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%,0,0); }
}

/* Mobile tweaks */
@media (max-width: 576px){
  .winner-card{ width: 240px; }
  .marquee-viewport:before,
  .marquee-viewport:after{ width: 36px; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none !important; }
}

/* ===============================
   WHY SECTION
================================= */


.why-section {
    padding: 80px 0;
    background: #19162f;
}

.why-section * {
    color: #fff;
}

.why-card-title {
    font-size: 26px;
    font-family: var(--primary-font);
}

/* Card */
.why-card{
  position: relative;
  border-radius: 14px;
  padding: 22px 22px 20px;
  border: 1px solid rgb(255 255 255 / 35%);
  box-shadow:
    0 12px 30px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,255,255,.03);
  backdrop-filter: blur(6px);
}


.why-card-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom: 12px;
}

.why-ico {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    background: var(--btn-color);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .35) inset;
}

/* Responsive polish */
@media (max-width: 991.98px){
  .why-sub{ max-width: 60ch; }
  .why-intro{ padding-bottom: 0; }
}

@media (max-width: 575.98px){
  .why-card{ padding: 18px; }
  .why-ico{ width: 38px; height: 38px; }
}

/* ===============================
   HOW TO PLAY
================================= */






a.btn.hero-btn {
    margin-right: 20px;
}
.featured-slots-section {
    padding: 80px 0;
    background: #100C26;
    border-top: 1px solid #acb0c338;
    border-bottom: 1px solid #acb0c338;
}
.featured-slots-section p {
    color: #fff;
}

.section-title {
  color: var(--white-color);
}

.slot-card {
  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(--yellow);
}



.crypto-features-section {
  background: #fff;
  padding: 80px 0;
}

.crypto-heading {
  font-family: var(--primary-font);
  margin-bottom: 60px;
}

.crypto-icon {
    width: 80px;
    margin: 0 auto 20px;
}

.crypto-feature-box h4 {
  font-family: var(--primary-font);
  margin-bottom: 15px;
}

.crypto-feature-box p {
    font-family: var(--seconday-font);
}


.bonus-details-section {
  background: var(--light-sec-bg);
  padding: 80px 0;
  color:var(--white-color);
}

.bonus-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
}

.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;
}

/* MAIN BONUS LIST */
.bonus-list{
  list-style:none;
  padding:0;
  margin:0 0 30px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* TOP LEVEL ITEMS */
.bonus-list > li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-weight:500;
  line-height:1.4;
}

/* HIGHLIGHT VALUES */
.bonus-list b{
  color:var(--yellow);
  font-weight:600;
  margin-left:4px;
}

/* CHECK ICON (ONLY TOP LEVEL) */
.bonus-list > li::before{
  content:"";
  flex:0 0 24px;
  width:24px;
  height:24px;
  margin-top:2px;
  background:url('../images/check-icon.svg') no-repeat center / contain;
}

/* ---------------------------
   SPECIAL: LI WITH SUBLIST
   label on first line
   games on next line
---------------------------- */
.bonus-list > li.has-sublist{
  display:grid;
  grid-template-columns:24px 1fr; /* icon col + content col */
  column-gap:12px;
  row-gap:8px;
  align-items:start;
}

/* keep check icon in column 1 */
.bonus-list > li.has-sublist::before{
  grid-column:1;
  grid-row:1;
}

/* label should align like other list text */
.bonus-list > li.has-sublist .bonus-label{
  grid-column:2;
  grid-row:1;
}

/* sublist goes UNDER the label, aligned with text column */
.bonus-list > li.has-sublist .bonus-sublist{
  grid-column:2;
  grid-row:2;
}

/* INLINE SUBLIST */
.bonus-sublist{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;          /* inline row */
  flex-wrap:wrap;        /* wrap on small widths */
  gap:8px 14px;
}

/* SUBLIST ITEMS */
.bonus-sublist li{
  position:relative;
  padding-left:12px;
  font-weight:500;
  white-space:nowrap;
}

/* SMALL BULLET */
.bonus-sublist li::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--yellow);
  position:absolute;
  left:0;
  top:0.6em;
}

/* RESPONSIVE */
@media (max-width:768px){
  .bonus-list{
    gap:10px;
  }

  .bonus-list > li{
    gap:10px;
    font-size:15px;
  }

  .bonus-list > li::before{
    width:20px;
    height:20px;
    flex-basis:20px;
  }

  .bonus-list > li.has-sublist{
    grid-template-columns:20px 1fr;
    column-gap:10px;
    row-gap:6px;
  }

  .bonus-sublist{
    gap:6px 12px;
  }
}

.how-it {
    text-align: center;
}

/* 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: 11px;
  color: #fff;
}

.mobile-sticky-cta .btn {
    display: block;
}

.mobile-sticky-cta .btn {
  animation: pulse 2.5s infinite;
}


/* testimonial section */


.tq-section {
    padding: 60px 0px 80px;
    border-bottom: 1px solid #acb0c338;
}

/* MAIN CONTAINER */
.tq-container{
  overflow:hidden;
  isolation:isolate; /* FIX: prevents next card shadow bleed */
}
.tq-heading {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
    text-transform: uppercase;
}

/* SLIDER TRACK */
.tq-track{
  display:flex;
  gap:40px;
  transition:transform .6s ease-in-out;
  will-change:transform;
}

/* CARD (2 PER SLIDE) */
.tq-card{
  flex:0 0 calc((100% - 40px)/2);
  box-sizing:border-box;
  overflow:hidden; /* FIX: clips shadow inside slide */
}

/* INNER CARD DESIGN */
.tq-inner{
  background:#19162F;
  padding:30px;
  border-radius:16px;
  color:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,.4);
  height:100%;
  position:relative; /* FIX */
  z-index:1;          /* FIX */
}

.tq-quote{
  background:var(--btn-color);
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  margin-bottom:15px;
  font-size:40px;
  line-height:1;
  position:relative;
}

.tq-quote::before {
    content: "❝";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
}

/* REVIEW TEXT */
.tq-review {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 120px;
}

/* STARS */
.tq-stars {
    color: #ffa327;
    margin-bottom: 10px;
    font-size: 20px;
}

/* NAME */
.tq-inner h4 {
    margin: 0;
    font-size: 24px;
    text-transform: uppercase;
}

/* VERIFIED PLAYER */
.tq-inner span{
  font-size:14px;
  color:#9ca3af;
}

/* DOTS FIX */
.tq-dots{
  width:fit-content;
  margin:40px auto 0 auto;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  position:relative;
  z-index:5;
}

.tq-dot{
  flex:0 0 auto;
  width:10px;
  height:10px;
  background:#374151;
  border-radius:50%;
  cursor:pointer;
  transition:all .3s ease;
}

.tq-dot.active{
  background:var(--btn-color);
}



/* MOBILE */
@media(max-width:768px){

    .tq-section {
        padding: 40px 0px 40px;
    }
	.tq-dots {
    margin: 20px auto 0 auto;
}
    .tq-heading {
        margin-bottom: 20px !important;
    }
  

  .tq-slider{
    overflow:hidden;
    width:100%;
    position:relative;
  }

  .tq-track{
    gap:0;
  }

  .tq-card{
    flex:0 0 100%;
    max-width:100%;
    padding:0;
  }

  /* THIS IS THE MAIN FIX */
  .tq-inner{
    margin:0;
    box-shadow:none;
  }

  /* ADD SAFE SHADOW WITHOUT BLEED */
  .tq-card{
    padding:0 2px;
  }

  .tq-card .tq-inner{
    box-shadow:0 6px 15px rgba(0,0,0,.35);
  }



}

/* testimonial sections ends */

.payments-section {
    padding: 80px 0px;
}

.payments-title {
    color: #fff;
    text-transform: uppercase;
}

.payments-subtitle{
color:#fff;
max-width:650px;
margin:auto;
}

.payment-card{
background:#19162F;
border:1px solid rgba(255,255,255,0.06);
border-radius:14px;
padding:18px;
display:flex;
align-items:center;
justify-content:center;
gap:10px;
transition:all .3s ease;
}

.payment-card img {
    width: 50px;
    height: 50px;
}

.payment-card span{
color:#fff;
font-weight:600;
font-size:15px;
}

.payment-card:hover{
border-color:#7c3aed;
transform:translateY(-4px);
background:#18182a;
}

/***************/

