:root {
  --primary: #f8f5ef;
  --secondary: #fed326;
  --accent: #ffeb99;
  --text: #1f1f1f;
  --text-secondary: #5c4b1b;

  --gradient-soft: linear-gradient(135deg, #fff8dc, #fdf2cd);
  --gradient-deep: linear-gradient(135deg, #f5e2b0, #f0ca5f, #efbf3b);
  --gradient-gold: linear-gradient(135deg, #fff5cc, #f0c420);
  --gradient-metal: linear-gradient(135deg, #fff7d1, #f4d35e, #c9a227);
  --gradient-velvet: linear-gradient(135deg, #e8d9b8, #b08d57);
}

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;
}
:root {
  --header-bg: linear-gradient(145deg, #fdefb7, #fde06a);
  --header-text: #222;
  --header-text-light: #333333;
  --header-accent: black;
}

.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: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #1f1f1f;
  text-decoration: none;
  position: relative;
  z-index: 10;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.logo span {
  background: linear-gradient(90deg, #ffbb00, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.logo:hover {
  color: #000;
}

.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(--accent);
}

.mobile-menu-btn img {
  width: 28px;
  height: 28px;
}

.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;
  }
}

.hero-section {
  position: relative;
  color: var(--text);
  padding: 6rem 2rem 4rem;
  overflow: hidden;
  z-index: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/hero.jpg") no-repeat center center / cover;
  transform: scaleX(-1);
  z-index: -2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(23, 17, 1, 0.649),
    rgba(252, 234, 41, 0.281)
  );
  backdrop-filter: blur(3px);
  z-index: -1;
}
@media (max-width: 768px) {
  .hero-section::before {
    background-position: right center;
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-content {
  animation: fadeInLeft 1s ease-out;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
  text-align: left;
  text-shadow: 1px 2px 2px #222;
}

.hero-highlight {
  background: linear-gradient(90deg, #ffbb00, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: #f3f3f3;
  text-align: left;
  margin-bottom: 40px;
  max-width: 800px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
}

.btn {
  padding: 0.85rem 2rem;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--primary);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
  color: #e5e5e5;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e8e8e8;
  margin-bottom: 0.5rem;
}

.emoji-glow {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.8));
  animation: glowPulse 2s infinite ease-in-out;
}

.emoji-glow.large {
  font-size: 2rem;
}

@keyframes glowPulse {
  0% {
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.7));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 1));
  }
  100% {
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.7));
  }
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: fadeInRight 1.2s ease-out;
}

.visual-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--secondary);
  border-radius: 12px;
  padding: 1.1rem;
  text-align: center;
  color: var(--text-secondary);
  backdrop-filter: blur(3px);
  transition: transform 0.3s;
  box-shadow: 0 4px 15px rgba(204, 0, 0, 0.1);
}
.visual-card P {
  font-size: 22px;
  color: #fff;
}
.visual-card:hover {
  transform: translateY(-5px);
}

@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: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }
  .hero-content {
    align-items: center;
  }
}
@media (max-width: 768px) {
  .hero-section {
    height: auto;
  }
  .hero-visual {
    justify-content: center;
    gap: 1rem;
  }

  .visual-card {
    flex: 1 1 45%;
    max-width: 45%;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }
  .hero-subtitle {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .visual-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .emoji-glow.large {
    font-size: 1.8rem;
  }
  .visual-card P {
    font-size: 16px;
  }
}
/* 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 {
  background: var(--gradient-soft);
  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: gold;
  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 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.game-card p {
  font-size: 14px;
  color: var(--header-text-light);
  margin-bottom: 15px;
}
#bonusesTitle,
#testimonialsTitle {
  color: var(--accent);
  text-shadow: 1px 2px 1px #2d0c0c;
}
.bonuses {
  background: linear-gradient(rgba(50, 43, 2, 0.426), rgba(34, 26, 10, 0.85)),
    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 {
  background: var(--gradient-gold);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  border: 2px solid var(--secondary);
  transition: all 0.3s;
}

.bonus-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

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

.bonus-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text);
  text-shadow: 2px 1px 2px var(--secondary);
  margin-top: 10px;
}

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

.bonus-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gradient-gold);
  color: #222;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.bonus-meta {
  list-style: none;
  padding: 0;
  margin: 15px 0 20px;
  font-size: 13px;
  color: #333;
  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: 60px;
}

.countdown-number {
  font-size: 38px;
  font-weight: 800;
  padding: 0.3em 0.5em;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: var(--primary);
  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;
  }

  .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: radial-gradient(
    circle at 40% 40%,
    rgba(255, 239, 180, 0.95) 0%,
    rgba(255, 222, 100, 0.85) 50%,
    rgba(255, 205, 0, 0.8) 100%
  );
  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: #fffbf2;
  text-shadow: 0 2px 2px #b8860b, 0 4px 8px rgba(0, 0, 0, 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: linear-gradient(145deg, #fdf8e8, #fffef6);
  border: 2px solid var(--accent);
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  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.2rem 2.2rem;
  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: 2.7rem;
  font-weight: 800;
  color: #c9981a;
  text-shadow: 0 0 4px rgba(255, 240, 180, 0.5),
    0 0 10px rgba(255, 222, 100, 0.2);
  font-family: "Orbitron", sans-serif;
  letter-spacing: 2px;
}

.winning-counter p {
  font-size: 1rem;
  color: #6d5d34;
  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(--gradient-velvet);
  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: var(--text-secondary);
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.7;
}

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

.testimonial-author {
  font-weight: 700;
  color: var(--text-secondary);
  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 {
  background-color: var(--text-secondary);
  padding: 50px 0 20px;
  border-top: 2px solid var(--secondary);
}

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

.footer-column h3 {
  color: var(--secondary);
  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(--accent);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--secondary);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgb(200, 200, 200);
  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;
  color: var(--secondary);
  padding: 0.6rem 1.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 700;
  border: 2px solid var(--secondary);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(65, 50, 1, 0.532);
  position: relative;
  overflow: hidden;
}

.btn {
  display: inline-block;
  background: var(--gradient-metal);
  color: var(--text-secondary);
  padding: 0.6rem 1.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 700;
  border: 2px solid var(--secondary);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(65, 50, 1, 0.532);
  position: relative;
  overflow: hidden;
}

.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 8px 24px 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 {
    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(2px);
  z-index: -1;
  transform: scale(1.05);
}
.free-spin-section {
  background: linear-gradient(135deg, #ffffff, #fdf6e3);
  padding: 80px 20px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.free-spin-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 20px;
  overflow: hidden;
  color: #111;
  backdrop-filter: blur(8px);
}

.free-spin-blur-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/abstract-gold.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  z-index: -2;
}

.free-spin-blur-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.112) 0%,
    rgba(255, 209, 44, 0.166) 80%
  );
  z-index: -1;
}

.free-spin-title {
  font-size: 2.5rem;
  font-weight: 800;

  margin-bottom: 1rem;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: 1px 2px 3px #222;
}

.free-spin-subtitle {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.free-spin-text {
  font-size: 1.05rem;
  color: rgb(253, 252, 234);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-button-glow {
  display: inline-block;
  background: linear-gradient(90deg, #fff3a0, #ffd000);
  color: #3f2d00;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(255, 200, 50, 0.6),
    0 0 24px rgba(255, 215, 100, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(255, 210, 80, 0.8),
    0 0 36px rgba(255, 225, 120, 0.4);
}

@media (max-width: 768px) {
  .free-spin-title {
    font-size: 1.8rem;
  }
  .free-spin-subtitle,
  .free-spin-text {
    font-size: 1rem;
  }
}

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

.particle {
  position: absolute;
  bottom: -20px;
  width: 10px;
  height: 10px;
  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;
  background: var(--gradient-gold);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(240, 200, 100, 0.2);
  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-secondary);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  max-width: 500px;
}

.bonus-banner-btn {
  text-decoration: none;
  display: inline-block;
  background: #fff8dc;
  color: #4a3900;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  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;
  }
  .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: 1.5rem;
  }
}
.referral-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(145deg, #fffbee, #fff3c1);
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 10px 60px rgba(255, 204, 0, 0.1);
}

.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: linear-gradient(90deg, #ffc800, #f4b100);
  -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: #333;
  margin-bottom: 1rem;
}

.referral-intro {
  font-size: 1.1rem;
  color: #444;
  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: #2b2b2b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.referral-btn {
  display: inline-block;
  background: linear-gradient(to right, #ffd700, #fbbf24);
  color: #3a2d00;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  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: rgba(255, 255, 255, 0.7);
  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: #222;
}

.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;
  }
}
