@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght,YOPQ@100..900,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

:root {
  --font-primary: "Kumbh Sans", sans-serif;
  --font-secondary: "Onest", sans-serif;
  --font-size16: 16px;
  --font-size15: 15px;
  --font-size18: 18px;
  --color-primary: #0d6efd;
  --color-secondary: #6c757d;
  --color-dark: #212529;
  --color-light: #f8f9fa;
  --color-border: #e5e7eb;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 50px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --btn-grey: #2a2f36;
  --btn-grey-hover: #20262e;
  --primary-gradient: linear-gradient(120deg,#7000ff,#ff1fc8 50%,#ffa327);
  --primary-gradient-hover: linear-gradient(-120deg,#7000ff,#ff1fc8 50%,#ffa327)
}

/* Body & default text */
body {
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.6;
    font-size: var(--font-size16);
}

/* Headings */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}

/* Global reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Scrollbar styling */
html {
  crollbar-width: thin;
  scrollbar-color: transparent;
}

.auth-buttons {
  gap: 10px; 
}

section {
	padding:70px 0px 80px;
}

h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
h4 {
    font-size: 18px;
    margin: 0;
}


.payment-icons img {
    height: 30px;
    margin-right: 10px;
}

.payment-icons img:last-child {
  margin-right: 0;
}



/* Base button styles */
.btn-dark,
.btn-gradient {
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-lg);
  font-size: var(--font-size16);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
      text-decoration: none;
}

/* =========================
   DARK BUTTON (LOGIN)
========================= */
.btn-dark {
  background: var(--btn-grey);
  color: #ffffff;
}

.btn-dark:hover {
  background: var(btn-grey-hover);
}

/* =========================
   GRADIENT BUTTON (REGISTER)
========================= */
.btn-gradient {
  background: var(--primary-gradient);
  color: #ffffff;
}

.btn-gradient:hover {
  background: var(--primary-gradient-hover);
      color: #fff;
}

.simple-hero {
    padding: 0;
    background: url(../images/bnr-bg.jpg);
    color: #fff;
    background-size: cover;
    background-position: center;
}

.hero-image.game {
  width: 450px !important;
  margin-top: 50px;
}


/* LEFT */
.hero-tag {
  display: inline-block;
  color: #2dff9a;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: var(--font-primary);
}

.hero-text {
    margin-bottom: 25px;
    font-size: var(--font-size18);
}

/* RIGHT IMAGE */
.hero-image {
  width: 100%;
}
.pulse-soft {
  animation: pulseSoft 3s ease-in-out infinite;
}

@keyframes pulseSoft {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 120, 220, 0.0));
  }
  50% {
    transform: scale(1.04);
    filter: drop-shadow(0 0 24px rgba(255, 120, 220, 0.55));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 120, 220, 0.0));
  }
}



/* SECTION */
.trust-section {
  background: #ffffff;
  padding: 40px 0;
  color: #111111;
}


.trust-quote {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
  padding: 0 60px; /* space for quotes */
}

/* Quote text */
.quote-text {
  display: inline-block;
}

/* Quote marks */
.quote-mark {
    position: absolute;
    color: #00b67a;
    font-size: 6rem;
    line-height: 1;
    top: 50%;
    transform: translateY(-30%);
    pointer-events: none;
}

/* Left quote */
.quote-mark.start {
  left: 0;
}

/* Right quote */
.quote-mark.end {
  right: 0;
}
.quote-text {
    font-size: 30px;
}

/* RATING ROW */
.trust-label {
  font-weight: 600;
  color: #111;
}

/* STARS */
.trust-stars {
  display: inline-flex;
  gap: 4px;
  background: #00b67a;
  padding: 6px 8px;
  border-radius: 4px;
}

.trust-stars span {
  color: #ffffff;
  font-size: 25px;
  line-height: 1;
}

.trust-stars .half {
  opacity: 0.5;
}

/* REVIEWS + LOGO */
.trust-reviews {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #111;
    font-weight: 500;
}

.trust-reviews img {
  height: 30px;
  width: auto;
  vertical-align: middle;
}

.feature-icon svg {
    fill: #fea41c;
    width: 80px;
}

.features-section {
    background: #1b1d4e;
    color: #ffffff;
}


.features-text {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 16px;
}

/* Feature boxes */
.feature-box {
    padding: 20px;
    background: #2c2e5c;
    border-radius: 10px;
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #ffffff;
}

.feature-box h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    min-height: 90px;
}

/* testimonial section */

.testimonials-section {
    font-family: var(--primary-font);
    background: #f9f9f9;
}

.section-tag {
  font-size: 13px;
  letter-spacing: 2px;
  color: #c7c7c7;
}


/* Card */
.testimonial-card {
    border-radius: 12px;
    padding: 35px;
    height: 100%;
    text-align: left;
    transition: transform 0.3s ease;
    background: #ffffff;
}

/* Stars */
.stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 10px;
}

/* Text */
.testimonial-card p {
  margin-bottom: 20px;
  font-family: var(--secondary-font);
}

/* Name */
.testimonial-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-card span {
  font-size: 14px;
}

/* Carousel dots */
.carousel-indicators {
  position: relative;
  margin-top: 50px;
  margin-bottom: 0;
}

.carousel-indicators button {
  width: 8px;
  height: 8px;
  background-color: #f2c307 !important;
  opacity: 0.4;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #f2c307;
}


/* testimonial sections ends */

/* =========================
   WINNERS SECTION 
========================= */

.winners-section {
  position: relative;
background: url(../images/coin_overlay.webp) center / cover no-repeat fixed;
}

/* White overlay */
.winners-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1); 
  z-index: 1;
}
.winners-section .container {
  position: relative;
  z-index: 2;
}


/* Winner Card */
.winner-card {
  background: #2c2e5c;
  border-radius: 12px;
  padding: 18px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.winner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.winner-badge {
  background: linear-gradient(120deg, #7000ff, #ff1fc8 50%, #ffa327);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 5px !important;
  display: -webkit-inline-box;
}

/* Content */
.winner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}


.winner-info p {
  font-size: 0.85rem;
  margin-bottom: 0px;
  color: #fff;
}





.winner-amount {
  font-size: 1.1rem;
  font-weight: 700;

  /* Your gradient */
  background: linear-gradient(
    120deg,
    #ffa327,
    #ff1fc8 50%,
    #ffa327
  );
  background-size: 300% 300%;

  /* Gradient text */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  /* 360° animation */
  animation: gradient360 4s linear infinite;
}

@keyframes gradient360 {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* Game Image */
.winner-game img {
  width: 90px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.responsible-section {
  background: #1a1a1a;
  padding: 60px 0 30px;
  color: #ffffff;
}

.responsible-box {
  max-width: 400px;
  margin: 0 auto;
}

.responsible-icon {
  max-height: 50px;
  margin-bottom: 16px;
}

.responsible-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.responsible-box p {
  font-size: 0.8rem;
  line-height: 1.6;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-marquee-track {
  display: flex;
  width: calc(16.666% * 12); /* 6 logos × 2 sets */
  animation: marqueeScroll 30s linear infinite;
}

/* EXACTLY 6 logos visible */
.logo-item {
  flex:  20%;
  max-width:  20%;
  text-align: center;
}

.logo-item img {
  max-width: 140px;
  max-height: 60px;
  object-fit: contain;
  opacity: 0.9;
}

/* Smooth infinite loop */
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}


/* =========================
   FOOTER BASE
========================= */
.site-footer {
  background: #0a0a0a;
  color: #fff;
  padding: 70px 0 30px;
  font-size: 0.85rem;
}

/* =========================
   LOGO
========================= */
.footer-logo {
  max-width: 160px;
}

/* =========================
   DISCLAIMER
========================= */
.footer-disclaimer {
  line-height: 1.7;
  margin: 0;
}

/* =========================
   CRYPTO ICONS
========================= */
.footer-crypto {
  margin-top: 10px;
}

.crypto-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.crypto-icon:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

/* =========================
   DIVIDER
========================= */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 30px 0 20px;
}

/* =========================
   BOTTOM BAR
========================= */
.footer-bottom {
  align-items: center;
}

/* Copyright */
.footer-copy {
  margin: 0;
  font-size: 0.8rem;
}

/* Right-side icon */
.footer-bottom-icon img {
  max-height: 28px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer-bottom-icon img:hover {
  opacity: 1;
}



/* Base (Mobile first) */
.top-marquee {
    width: 100%;
    overflow: hidden;
    background: #18215c;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 14s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  padding: 0 15px;
  display: flex;
  align-items: center;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-20%);
  }
}





/* RESPONSIVE */

@media (max-width: 1366px) { 

.hero-title {
    font-size: 2.8rem;
}
.feature-box p {
    min-height: 120px;
}

}

@media (max-width: 1024px) { 

.hero-title {
    font-size: 2.2rem;
}
.feature-box p {
        min-height: 140px;
}
.hero-text {
    font-size: 15px;
}
.feature-box h3 {
    font-size: 20px;
}
.feature-box {
    padding: 10px;
}
.winner-info p {
    font-size: 12px;
}

}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  
  
.simple-hero {
    padding: 30px 0px;
}

  .logo-item {
    flex: 0 0 33.333%;
    min-width: 33.333%;
  }
  
   .top-marquee {
    font-size: 15px;
    padding: 10px 0;
  }

  .marquee-track {
    animation-duration: 22s;
  } 
 
h2 {
    font-size: 2.2rem;
}
.feature-box h3 br {
    display: none;
}
    .feature-box p {
        min-height: auto;
    } 
  
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .trust-quote {
    flex-wrap: wrap;
    font-size: 1.3rem;
  }

.quote-text {
    font-size: 24px;
    line-height: 30px;
}

  .features-title {
    font-size: 2rem;
  }
   .winners-title {
    font-size: 2rem;
  } 
    .footer-logo {
    max-width: 130px;
  }

  .footer-disclaimer {
    font-size: 0.8rem;
  }

  .crypto-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .footer-bottom {
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-icon img {
    margin-top: 8px;
  }
  
    .top-marquee {
    font-size: 14px;
    padding: 8px 0;
  }
  .marquee-track span {
    padding: 0 8px;
}

  .marquee-track {
    animation-duration: 18s;
  }

}


/* RESPONSIVE */
@media (max-width: 549px) {
    .navbar button {
        font-size: 14px;
        padding: 0 20px;
    }
  .hero-text {
    line-height: 20px;
    margin-bottom: 15px;
  }
    .hero-title {
        margin-bottom: 15px;
        font-size: 1.6rem;
    }
 
  .responsible-box {
    max-width: 100%;
  } 
   .logo-item {
    flex: 0 0 25%;
    min-width: 25%;
  } 
  
section {
  padding: 30px 10px 40px;
}
.feature-box h3 {
  font-size: 20px;
} 
h2 {
  font-size: 1.7rem !important;
  margin-bottom: 10px;
}
.winners-section .row .col-lg-3.col-md-4.col-12 {
  margin-top: 10px !important;
}

.carousel-indicators {
  margin-top: 20px;
  margin-bottom: 0;
}
.feature-box {
  padding: 10px;
} 
 
.site-footer {
  padding: 40px 0 25px;
}
.footer-crypto {
  margin-top: 0;
}
  .footer-bottom {
    gap: 0px;
  }
.responsible-icon {
  margin-bottom: 0;
}
.game {
  width: 300px !important;
  margin-top: 30px;
}  

.hero-image {
    width: 70%;
}
.simple-hero {
    padding: 30px 0px 0;
}
a.navbar-brand.fw-bold.me-auto {
    width: 150px !important;
}
.auth-buttons {
    gap: 5px;
}
.auth-buttons.d-flex.align-items-center a {
    font-size: 14px;
    padding: 0 15px;
}

.features-text {
    margin-bottom: 0px;
}

.trust-reviews {
    font-size: 14px;
}
.hero-image.game {
    width: 220px !important;
    margin-top: 20px;
}
  
}




