:root {
  --primary: #000000;
  --secondary: #ffae00;
  --accent: #ffcc00;

  --text: #ffffff;
  --text-secondary: #bbbbbb;

  --gradient-soft: linear-gradient(135deg, #ff8800, #ffae00);
  --gradient-deep: linear-gradient(135deg, #ff4d00, #ff8800);
  --gradient-glow: linear-gradient(135deg, #fff200, #ffcc00, #ffaa00);
  --gradient-metal: linear-gradient(135deg, #ffae00, #ff9900, #ff4d00);
  --gradient-electric: linear-gradient(135deg, #ffe600, #ff9900);

  --header-bg: linear-gradient(135deg, #ff4d00, #ffae00);
  --header-text: #ffffff;
  --header-text-light: #fff5cc;
  --header-accent: #ffdd33;
}

html {
  scroll-behavior: smooth;
}
h2 {
  text-shadow: 1px 1px 2px #333;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
body {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

h1,
h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}
body {
  background-color: var(--primary);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-nav a:hover {
  color: var(--secondary);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
}

.site-header {
  background: var(--header-bg);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--header-accent);
}

.logo {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ececec;
  text-decoration: none;
  position: relative;
  z-index: 10;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}

.logo span {
  font-size: 1.4rem;

  color: var(--header-text);
  text-shadow: 1px 2px 1px #222;
}

.logo:hover {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.main-nav a {
  position: relative;
  color: var(--header-text-light);
  text-decoration: none;
  font-weight: 600;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--header-accent);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--header-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--header-accent);
  color: var(--header-accent);
  padding: 0.3rem 0.75rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--header-accent);
  color: var(--primary);
}

.mobile-menu-btn img {
  width: 28px;
  height: 28px;
  filter: invert(1);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--header-bg);
    display: none;
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 1rem;
    margin-top: 0px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1.2rem;
  }
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

.mobile-menu-btn .bar {
  height: 3px;
  width: 100%;
  background-color: var(--secondary);
  border-radius: 2px;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    position: absolute;
    top: 18px;
    right: 20px;
  }
}
.alt-hero {
  position: relative;
  color: var(--text);
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: none;
}

.alt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(157, 70, 3, 0.6), rgba(0, 0, 0, 0.8)),
    url("images/hero-bg.jpg") no-repeat center center / cover;
  filter: blur(0px);
  z-index: -2;
}

.alt-hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  margin: 0 auto;
  z-index: 1;
}

.alt-hero-left {
  max-width: 580px;
  flex: 1;
  animation: fadeInLeft 1.2s ease-out;
}

.alt-hero-right {
  flex: 1;
  animation: fadeInRight 1.2s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  max-width: 90%;
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(255, 220, 120, 0.3));
  transition: filter 0.4s ease;
  will-change: transform;
  animation: float 4s ease-in-out infinite;
}

.hero-image:hover {
  filter: drop-shadow(0 0 18px rgba(255, 215, 0, 0.5));
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.alt-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #f9f9f9;
  margin-bottom: 1rem;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
}

.glow {
  background: linear-gradient(90deg, var(--accent), #f07c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  font-weight: 900;
}

.alt-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 2rem;
}

.alt-hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.alt-hero-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #eee;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .alt-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .alt-hero-right {
    margin-top: 2rem;
  }
  .alt-hero-badges {
    justify-content: center;
  }
}
/* Games Section */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  color: var(--secondary);
  font-size: 36px;
  position: relative;
}

.section-title:after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--secondary);
  margin: 15px auto 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.game-card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  border: 1px solid var(--secondary);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}
.game-card-img-wrapper {
  position: relative;
}
.game-card-img-wrapper img {
  border-bottom: 1px solid var(--accent);
}
.game-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  background-color: var(--accent);
  color: #ededed;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

.tag.hot {
  background-color: #e60000;
}

.tag.rtp {
  background-color: #007700;
}

.game-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 13px;
  color: #222;
}

.stars {
  color: #ff8d03;
  font-size: 14px;
  letter-spacing: 1px;
}

.players {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .game-card-content {
    padding: 12px;
  }

  .tag {
    font-size: 10px;
    padding: 2px 5px;
  }

  .stars {
    font-size: 13px;
  }

  .players {
    font-size: 11px;
  }
}
.game-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.game-card-content {
  padding: 15px;
}

.game-card h3 {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--secondary);
}

.game-card p {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 15px;
}
#bonusesTitle,
#testimonialsTitle {
  color: var(--accent);
  text-shadow: 1px 2px 1px #2d0c0c;
}
/* .bonuses {
  background: linear-gradient(
      rgba(255, 237, 134, 0.471),
      rgba(255, 222, 157, 0.351)
    ),
    url("images/bonus.jpg") no-repeat center center/cover;
  background-attachment: fixed;
} */

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.bonus-card {
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  color: #fff;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.bonus-card--1 {
  background: linear-gradient(135deg, #ff4e00, #ff7400);
  border-color: #ff5a00;
}
.bonus-card--2 {
  background: linear-gradient(135deg, #00c3ff, #005eff);
  border-color: #00aaff;
}

.bonus-card--3 {
  background: linear-gradient(135deg, #7f5eff, #a37cff);
  border-color: #b195ff;
}

.bonus-card:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.bonus-card i {
  font-size: 50px;
  color: var(--text);
  margin-bottom: 20px;
  display: block;
}

.bonus-card h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--text);
  text-shadow: 1px 1px 1px var(--primary);
  margin-top: 15px;
}

.bonus-card p {
  margin-bottom: 20px;
  color: var(--text);
}
.bonus-card {
  position: relative;
}

.bonus-tag {
  position: absolute;
  top: 10px;
  left: 14px;
  background: white;
  color: #222;
  font-size: 9px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 50px;
  text-transform: uppercase;
}

.bonus-meta {
  list-style: none;
  padding: 0;
  margin: 15px 0 20px;
  font-size: 13px;
  color: var(--header-text-light);
  line-height: 1.6;
}
#referralTitle {
  font-size: 3rem;
  text-align: center;
}
.referral-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.referral-image {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.referral-image img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid var(--secondary);
}

.referral-content {
  flex: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.referral-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--secondary);
}

.referral-content p {
  margin-bottom: 15px;
  color: var(--text-secondary);
  text-align: center;
}

.highlight {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03),
    rgba(0, 100, 50, 0.08)
  );
  border-radius: 12px;
  padding: 24px 20px;
  margin: 40px 0;
  border: 1px solid rgba(100, 25, 0, 0.3);
  box-shadow: 0 4px 20px rgba(150, 55, 0, 0.12);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 5px;
  background: linear-gradient(to bottom, var(--secondary), transparent);
  border-radius: 5px 0 0 5px;
}

.highlight h3 {
  color: var(--secondary);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#tier2Text {
  margin-bottom: 10px;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.countdown-item {
  text-align: center;
  min-width: 90px;
}

.countdown-number {
  font-size: 38px;
  font-weight: 800;
  padding: 0.3em 0.5em;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: white;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4),
    inset 0 0 5px rgba(57, 1, 1, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.countdown-number:hover {
  transform: scale(1.1);
}

.countdown-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
  letter-spacing: 0.5px;
}
.referral-link-box {
  max-width: 500px;
  margin: 0 auto;
  margin-top: 20px;
  position: relative;
  border: 2px dashed var(--secondary);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.04);
  padding: 12px 16px;
  cursor: pointer;
  transition: border 0.3s ease;
}

.referral-link-box:hover {
  border-color: var(--accent);
}

.referral-link-box input {
  border: none;
  background: none;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  pointer-events: none;
}

.copy-hint {
  position: absolute;
  right: 16px;
  bottom: 10px;
  font-size: 12px;
  color: var(--text-secondary);
}
@media (max-width: 1024px) {
  #referralTitle {
    font-size: 2.5rem;
    padding: 0 1rem;
  }

  .countdown-item {
    text-align: center;
    min-width: 50px;
  }
  .referral-content h2 {
    font-size: 28px;
  }

  .referral-content p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .referral-container {
    flex-direction: column;
    align-items: center;
  }

  .referral-image {
    padding: 10px;
    min-width: 100%;
  }

  .referral-content {
    padding: 10px;
    max-width: 100%;
  }

  .referral-content h2 {
    font-size: 24px;
    text-align: center;
  }

  .referral-content p {
    font-size: 14px;
    text-align: center;
  }

  .highlight {
    padding: 16px 12px;
    margin: 30px 0;
  }

  .highlight h3 {
    font-size: 18px;
  }

  .countdown {
    gap: 12px;
    margin: 24px 0;
  }

  .countdown-number {
    font-size: 28px;
    padding: 0.25em 0.4em;
  }

  .countdown-label {
    font-size: 12px;
  }

  .referral-link-box {
    padding: 10px 12px;
    font-size: 14px;
  }

  .copy-hint {
    font-size: 11px;
    right: 12px;
    bottom: 8px;
  }
}

@media (max-width: 480px) {
  #referralTitle {
    font-size: 1.7rem;
  }

  .referral-content h2 {
    font-size: 20px;
  }

  .highlight h3 {
    font-size: 16px;
  }

  .countdown-number {
    font-size: 24px;
  }
  .referral-link-box input {
    font-size: 11px;
  }
}

/* Deposit Bonus Section */
.deposit-bonus {
  text-align: center;
}
.bonus-tier p {
  color: var(--primary);
}
.bonus-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.bonus-tier {
  position: relative;
  overflow: hidden;
  padding: 30px 24px;
  border-radius: 20px;
  background: var(--gradient-electric);
  border: 2px solid transparent;
  box-shadow: 0 6px 24px rgba(255, 213, 70, 0.25),
    inset 0 0 10px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
  z-index: 1;
}
.bonus-tier h3 {
  font-size: 24px;
  color: #1a1a1a;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 0.4em;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.bonus-tier .amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--header-text);
  text-shadow: 1px 2px 2px var(--primary), 0 4px 8px rgba(255, 255, 255, 0.5);
  animation: pulse3d 2.5s infinite ease-in-out;
  display: inline-block;
}

.bonus-tier .bonus-amount {
  font-size: 28px;
  font-weight: 700;
  color: #1f1f1f;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
  margin-bottom: 10px;
  display: block;
}

.bonus-tier p {
  font-size: 15px;
  color: #3c3c3c;
  text-align: center;
  line-height: 1.6;
}

.bonus-tier:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.bonus-tier .cta-button {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  color: #1f1f1f;
  background: linear-gradient(135deg, #fff200, #ffd700);
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(255, 200, 0, 0.4);
  transition: all 0.3s ease;
}

.bonus-tier .cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(255, 200, 0, 0.5);
}

#tier1Text {
  margin-bottom: 10px;
}
.winning-section {
  position: relative;
}
.winning-counter {
  text-align: center;
  background: var(--gradient-metal);
  border: 2px solid var(--accent);
  padding: 2.5rem 1.5rem;
  box-shadow: 0 8px 30px rgba(242, 212, 140, 0.25),
    inset 0 0 6px rgba(255, 244, 200, 0.2);
  position: relative;
  animation: shimmer-glow 6s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes shimmer-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 235, 180, 0.3),
      inset 0 0 10px rgba(255, 230, 150, 0.2);
  }
  50% {
    box-shadow: 0 0 28px rgba(255, 220, 100, 0.45),
      inset 0 0 18px rgba(255, 240, 180, 0.3);
  }
}

.winning-counter h3 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.counter-glow {
  background: linear-gradient(135deg, #fff8e2, #ffefc1);
  padding: 1.4rem 3rem;
  margin: 1rem auto;
  border-radius: 16px;
  display: inline-block;
  border: 1px solid var(--secondary);
  box-shadow: 0 0 16px rgba(255, 224, 100, 0.3),
    inset 0 0 10px rgba(255, 255, 200, 0.15);
  position: relative;
  overflow: hidden;
}

.counter-glow::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: 16px;
  box-shadow: inset 0 0 30px rgba(240, 210, 110, 0.07);
  pointer-events: none;
}

.counter {
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  text-shadow: 0 2px 2px rgba(220, 94, 3, 0.625),
    0 0 10px rgba(255, 221, 100, 0.108);
  font-family: "Orbitron", sans-serif;
  letter-spacing: 2px;
}

.winning-counter p {
  font-size: 1rem;
  color: #f7f7f7;
  margin-top: 1rem;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .winning-counter {
    padding: 2rem 1rem;
  }

  .counter {
    font-size: 2rem;
  }

  .winning-counter h3 {
    font-size: 1.5rem;
  }

  .winning-counter p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .counter {
    font-size: 1.8rem;
  }

  .counter-glow {
    padding: 0.75rem 1.5rem;
  }

  .winning-counter h3 {
    font-size: 1.3rem;
  }
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
}

.partner-logo {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
  max-height: 80px;
  width: auto;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.partners-marquee {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
  position: relative;
  margin-bottom: 30px;
}

.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--accent),
    var(--text-secondary),
    var(--accent)
  );
  z-index: 1;
}

.partners-marquee::before {
  top: 0;
}

.partners-marquee::after {
  bottom: 0;
}

.partners-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.partner-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  padding: 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.partner-name:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, #333, #222);
  opacity: 0.6;
}
.partner-name:hover {
  color: var(--secondary);
  text-shadow: 0 0 6px var(--accent);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .partner-name {
    font-size: 1rem;
    gap: 2rem;
  }

  .partners-track {
    animation-duration: 20s;
  }
}

.testimonials {
  background: linear-gradient(rgba(50, 43, 2, 0.426), rgba(34, 26, 10, 0.85)),
    url("images/testimonials.jpg") no-repeat center center/cover;
  background-attachment: fixed;
}

.testimonial-slider {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px 20px;
}

.testimonial {
  position: relative;
  background: var(--header-text-light);
  border-radius: 12px;
  padding: 30px 20px;
  border: 1px solid var(--secondary);
  text-align: left;
  color: var(--text);
  box-shadow: 0 4px 20px rgba(204, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-6px);
}

.testimonial::before {
  content: "❝";
  font-size: 30px;
  color: #333;
  position: absolute;
  top: -4px;
  left: 20px;
  opacity: 0.7;
}

.testimonial-content {
  font-style: italic;
  font-size: 16px;
  margin-bottom: 20px;
  color: #222;
  line-height: 1.6;
  padding-left: 10px;
}

.testimonial-author {
  font-weight: 700;
  color: #555;
  text-align: right;
  font-size: 14px;
  padding-right: 10px;
}

#testimonialsTitle {
  text-align: center;
  font-size: 2rem;

  font-weight: 800;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .testimonial-slider {
    grid-template-columns: 1fr;
    padding: 20px 15px;
  }

  .testimonial {
    padding: 20px;
  }

  .testimonial-content {
    font-size: 15px;
  }

  .testimonial-author {
    font-size: 13px;
  }
}
/* SEO Article Section */
.seo-article {
  padding: 60px 0;
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
}

.article-container h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--secondary);
}

.article-container h3 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: var(--secondary);
}

.article-container p {
  margin-bottom: 15px;
  color: var(--text-secondary);
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: stretch;
  gap: 10px;
  margin-top: 30px;
}

.payment-method {
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-light);
  transition: transform 0.3s ease;
}

.payment-method:hover {
  transform: translateY(-5px);
}

.payment-method img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  margin-bottom: 10px;
  display: block;
}

.payment-method p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}
#paymentText {
  text-align: center;
}
/* Footer */
footer {
  padding: 50px 0 20px;
  border-top: 2px solid var(--secondary);
  background-color: var(--primary);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h3 {
  color: var(--header-text);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--header-text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ff2f00;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgb(232, 232, 232);
  font-size: 14px;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    width: 100%;
    margin-top: 15px;
    display: none;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 10px 0;
  }

  .mobile-menu-btn {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .referral-container {
    flex-direction: column;
  }

  .section-title {
    font-size: 28px;
  }
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  padding: 0.8rem 2rem;
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(65, 50, 1, 0.6);
  position: relative;
  overflow: hidden;
  color: var(--text-secondary);
  border: 2px solid var(--text-secondary);
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  background: var(--text-secondary);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn {
  display: inline-block;
  background: var(--gradient-deep);
  color: var(--header-text);
  padding: 0.8rem 2rem;
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 800;
  border: 2px solid var(--secondary);
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(65, 50, 1, 0.5);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.6px;
}

.btn::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 10%,
    transparent 60%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.5s;
}

.btn:hover::before {
  top: 50%;
  left: 50%;
  opacity: 1;
}

.btn:hover {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.4);
  border: 2px solid var(--primary);
}

.btn.btn-secondary {
  background-color: transparent;
}
@media (max-width: 768px) {
  .btn {
    padding: 0.5rem 1.3rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .btn-secondary,
  .btn {
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    width: 100%;
  }
}
.bonuses,
.testimonials {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.bonuses::before,
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(5px);
  z-index: -1;
  transform: scale(1.05);
}
.free-spin-section {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.free-spin-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.free-spin-image {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.free-spin-image img {
  max-width: 100%;
  max-height: 320px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.free-spin-image img:hover {
  transform: scale(1.03);
}

.free-spin-panel {
  position: relative;
  flex: 1 1 520px;
  background: var(--gradient-metal);

  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 20px rgba(255, 208, 100, 0.15),
    inset 0 0 12px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.free-spin-glow {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 9px;
  height: 100%;
  background: linear-gradient(to bottom, #ffcf00, #ff6600);
  border-radius: 4px;
}

.free-spin-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--header-text);
  text-shadow: 0 2px 1px rgba(0, 0, 0, 0.489);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.free-spin-subtitle {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 1rem;
}

.free-spin-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 2rem;
}

.cta-button-glow {
  display: inline-block;
  background: linear-gradient(90deg, #ffe066, #ffbb00);
  color: #3a2900;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(62, 62, 62, 0.36);
  transition: transform 0.3s ease;
}

.cta-button-glow:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .free-spin-panel {
    padding: 15px 20px;
  }
  .free-spin-title {
    font-size: 1.6rem;
    text-align: center;
  }
  .free-spin-subtitle,
  .free-spin-text {
    font-size: 1rem;
  }
  .free-spin-image img {
    max-height: 220px;
  }
}

.particles-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  bottom: -20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.8), transparent);
  opacity: 0;
  animation: rise 6s ease-in infinite;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-300px) scale(1.2);
    opacity: 0;
  }
}
.bonus-banner-block {
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.bonus-banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.bonus-banner-text {
  flex: 1 1 300px;
  text-align: left;
}

.bonus-banner-heading {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.bonus-banner-description {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  max-width: 500px;
}

.bonus-banner-btn {
  text-decoration: none;
  display: inline-block;
  background: var(--gradient-deep);
  color: var(--header-text);
  padding: 1rem 1.7rem;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 210, 100, 0.3);
}

.bonus-banner-btn:hover {
  background: #ffeb99;
  transform: translateY(-2px);
}

.bonus-banner-image {
  flex: 0 1 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-banner-image img {
  width: 100%;
  max-width: 240px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
  .bonus-banner-container {
    flex-direction: column;
    gap: 0px;
  }

  .bonus-banner-heading {
    font-size: 1.4rem;
    text-align: center;
  }

  .bonus-banner-text {
    text-align: left;
  }

  .bonus-banner-btn {
    width: 100%;
    text-align: center;
  }

  .bonus-banner-image {
    margin-top: 0.5rem;
  }
}

.referral-section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  border-radius: 28px;
}

.referral-bg-glow {
  position: absolute;
  top: -30%;
  left: -15%;
  width: 160%;
  height: 160%;
  background: radial-gradient(
    circle,
    rgba(255, 240, 180, 0.2),
    transparent 70%
  );
  z-index: 0;
  animation: pulseLight 10s ease-in-out infinite;
}

@keyframes pulseLight {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.referral-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.referral-left,
.referral-right {
  flex: 1 1 400px;
}

.referral-heading {
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--gradient-electric);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: none;
}

.referral-subheading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.referral-intro {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.referral-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.referral-benefits li {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.referral-btn {
  display: inline-block;
  background: var(--gradient-electric);
  color: #3a2d00;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(255, 204, 0, 0.3);
  transition: all 0.3s ease;
}

.referral-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 204, 0, 0.4);
}

.referral-steps {
  background: var(--header-text-light);
  padding: 2rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255, 220, 100, 0.15);
  margin-bottom: 1.5rem;
}

.referral-steps h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.referral-steps ol {
  margin: 0;
  padding-left: 1.5rem;
  color: #444;
  line-height: 1.6;
}

.referral-visual img {
  width: 100%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.05));
}

@media (max-width: 768px) {
  .referral-grid {
    flex-direction: column;
  }
  .referral-heading {
    font-size: 1.7rem;
    text-align: center;
  }
}
.rtp-section {
  padding: 4rem 1.5rem;
  background: var(--gradient-deep);
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(255, 200, 80, 0.25);
  position: relative;
  overflow: hidden;
}

.rtp-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  color: var(--text);
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.3);
}

.rtp-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.rtp-box {
  background: var(--secondary);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 77, 0, 0.395);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 12px rgba(255, 128, 0, 0.15);
  min-width: 180px;
  flex: 1 1 220px;
}

.rtp-label {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(86, 37, 0, 0.729);
}

.rtp-value {
  font-size: 2.3rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 10px var(--accent), 0 0 3px #ffae00;
}

.withdrawal-section {
  color: var(--text);
  padding: 5rem 2rem;
  overflow: hidden;
  position: relative;
}

.withdrawal-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}

.withdrawal-left {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.withdrawal-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.withdrawal-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.withdrawal-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.withdrawal-features li {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

.withdrawal-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.withdrawal-visual {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.withdrawal-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.withdrawal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 6px var(--accent));
}

@media (max-width: 768px) {
  .withdrawal-grid {
    flex-direction: column;
    text-align: center;
  }
  .withdrawal-right {
    margin-top: 2rem;
  }
}
.promo-banner {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url("images/promo-bg.jpg") no-repeat center center / cover;
  backdrop-filter: blur(4px);
  padding: 5rem 2rem;
  color: var(--text);
  overflow: hidden;
}

.promo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 2rem;
  z-index: 1;
}

.promo-content {
  max-width: 700px;
}

.promo-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: #fff;
  line-height: 1.3;
}

.promo-accent {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
  font-weight: 900;
}

.promo-text {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.btn-glow {
  background: var(--accent);
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 0 12px var(--accent);
  transition: all 0.3s ease;
}

.btn-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--accent);
}

@media (max-width: 768px) {
  .promo-title {
    font-size: 2rem;
  }
  .promo-text {
    font-size: 1.1rem;
  }
}
