* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(
    to bottom right,
    var(--color-gradient-start),
    var(--color-gradient-end)
  );
  color: var(--text-color-primary);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  box-sizing: border-box;
}

:root {
  /* Акцентные цвета */
  --color-primary: #00ff88;
  --color-secondary: #22ff99;
  --color-gradient-start: #0a4d3a;
  --color-gradient-end: #2d8f61;

  /* Дополнительные цвета */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-dark: #1a1a1a;
  --color-gold: #ffd700;
  --color-red: #ff4444;

  /* Текстовые цвета */
  --text-color-primary: var(--color-white);
  --text-color-secondary: #cccccc;
  --text-color-dark: var(--color-black);

  --border-radius: 12px;
  --box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  --transition-default: all 0.3s ease-in-out;
  --container-width: 1200px;
  --container-padding: 16px;
}

header {
  background: linear-gradient(
    135deg,
    rgba(10, 77, 58, 0.95),
    rgba(0, 255, 136, 0.08)
  );
  padding: 16px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 4px rgba(0, 255, 136, 0.15), 0 4px 18px rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Orbitron", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-white);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 1;
  text-shadow: 3px 0 red, -3px 0 cyan, 0 0 8px var(--color-primary),
    0 0 20px var(--color-secondary);
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.05);
  text-shadow: 3px 0 red, -3px 0 cyan, 0 0 10px var(--color-primary),
    0 0 16px var(--color-secondary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.language-switcher {
  font-size: 0.95rem;
  color: var(--text-color-secondary);
}

.language-switcher .lang {
  color: var(--text-color-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.language-switcher .lang:hover,
.language-switcher .lang.active {
  color: var(--color-primary);
  font-weight: bold;
}

.cta-header {
  background-color: var(--color-primary);
  color: var(--color-black);
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.4), 0 0 20px rgba(0, 255, 136, 0.2),
    inset 0 0 5px rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.cta-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 300%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  animation: shinePulse 1.8s infinite linear;
  z-index: 2;
  pointer-events: none;
}

.cta-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: inherit;
  z-index: 1;
}

.cta-header:hover {
  background-color: var(--color-secondary);
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.6), 0 0 25px rgba(0, 255, 136, 0.3),
    inset 0 0 8px rgba(255, 255, 255, 0.3);
}

@keyframes shinePulse {
  0% {
    left: -150%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@media (max-width: 1024px) {
  .cta-header {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .logo {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .cta-header {
    padding: 10px 20px;
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .language-switcher {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }

  .header-actions {
    align-items: flex-start;
    gap: 10px;
  }

  .cta-header {
    text-align: center;
  }
}

.timer-section {
  background: linear-gradient(45deg, #ff4444, #ff6666);
  margin: 30px 0;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.hero {
  position: relative;
  color: var(--text-color-primary);
  overflow: hidden;
  padding: 100px 0 80px;
  text-align: center;
  z-index: 0;
  /* height: 80vh; */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/hero.jpg") center/cover no-repeat;
  filter: blur(2px);
  z-index: -3;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 21, 20, 0.885),
    rgba(10, 14, 12, 0.6)
  );
  z-index: -2;
}

#particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.emoji-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.emoji-particles img.particle-img {
  position: absolute;
  animation: floatEmoji 12s linear forwards;
  opacity: 0.2;
  filter: blur(0.7px);
  pointer-events: none;
}

@keyframes floatEmoji {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120vh) scale(1.2);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 64px;
  font-weight: 900;
  text-shadow: 0 0 20px var(--color-primary);
  color: var(--text-color-primary);
}

.hero-subtitle {
  font-size: 32px;
  margin-top: 10px;
  color: var(--color-gold);
  text-transform: uppercase;
  font-weight: bold;
}
.hero-description {
  margin-top: 10px;
  font-size: 24px;
  color: #f6f6f6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.btn {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
  background: linear-gradient(
    to right,
    var(--color-primary),
    var(--color-secondary)
  );
  color: var(--color-black);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.btn-secondary {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(0, 255, 136, 0.1);
  transform: scale(1.05);
}

.hero-timer {
  margin-top: 25px;
  font-size: 18px;
  color: #ffffff;
  animation: fadeInUp 1s ease-out;
}
.hero-timer p {
  font-size: 22px;
}
.countdown {
  margin-top: 8px;
  font-size: 28px;
  font-weight: bold;
  color: var(--color-primary);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
  display: flex;
  justify-content: center;
  gap: 8px;
  letter-spacing: 1px;
  animation: pulseTimer 2s infinite;
}

@keyframes pulseTimer {
  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
  }
  50% {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.freespin-section {
  background: linear-gradient(135deg, #0f5b81, #1a6a77);
  padding: 60px 20px;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.freespin-title {
  font-size: 2.8em;
  font-weight: 900;
  color: #00ff88;
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
  margin-bottom: 20px;
}
.title-icon {
  width: 36px;
  height: 36px;
  vertical-align: middle;
  margin: 0 10px;
  animation: floatIcon 3s ease-in-out infinite;
}

.title-icon.small {
  width: 24px;
  height: 24px;
}

.title-icon.left {
  margin-right: 8px;
}

.title-icon.right {
  margin-left: 8px;
}

@keyframes floatIcon {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-6px) rotate(10deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.8;
  }
}

.freespin-subtitle {
  font-size: 1.4em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px;
}

.freespin-highlight {
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
  backdrop-filter: blur(6px);
}
.freespin-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, #00ff88, #ff66cc, #ffd700);
  border-radius: inherit;
  z-index: -1;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.highlight-title {
  font-size: 2.2em;
  color: var(--color-gold);
  margin-bottom: 15px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.highlight-desc {
  font-size: 1.3em;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 16px;
}

.highlight-note {
  font-size: 1.2em;
  color: #ffffcc;
  font-style: italic;
}

.cta-button {
  display: inline-block;
  padding: 16px 32px;
  font-size: 1.2em;
  font-weight: 700;
  border-radius: 50px;
  color: #fff;
  background: linear-gradient(to right, #00ff88, #ff66cc);
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 102, 204, 0.5);
}
@media (max-width: 1024px) {
  .freespin-title {
    font-size: 2.2em;
  }

  .highlight-title {
    font-size: 1.9em;
  }

  .highlight-desc {
    font-size: 1.15em;
  }

  .highlight-note {
    font-size: 1.1em;
  }

  .cta-button {
    font-size: 1.1em;
    padding: 14px 28px;
  }

  .title-icon {
    width: 30px;
    height: 30px;
  }

  .title-icon.small {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 768px) {
  .freespin-title {
    font-size: 2em;
  }

  .freespin-subtitle {
    font-size: 1.2em;
    padding: 0 10px;
  }

  .freespin-highlight {
    padding: 24px;
  }

  .highlight-title {
    font-size: 1.6em;
  }

  .highlight-desc,
  .highlight-note {
    font-size: 1em;
  }

  .cta-button {
    font-size: 1em;
    padding: 12px 24px;
  }

  .title-icon {
    width: 26px;
    height: 26px;
  }

  .title-icon.small {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .freespin-title {
    font-size: 1.6em;
  }

  .freespin-subtitle {
    font-size: 1em;
  }

  .highlight-title {
    font-size: 1.3em;
  }

  .highlight-desc,
  .highlight-note {
    font-size: 0.95em;
  }

  .cta-button {
    font-size: 0.95em;
    padding: 10px 20px;
  }

  .title-icon {
    width: 22px;
    height: 22px;
  }

  .title-icon.small {
    width: 16px;
    height: 16px;
  }
  .cta-button {
    font-size: 14px;
    padding: 10px;
  }
}

.stats-section {
  padding: 40px 0;
  background: rgba(0, 0, 0, 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 2.5em;
  color: #00ff88;
  font-weight: bold;
}

/* Article Section */
.article-section {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.article-section h2 {
  color: #00ff88;
  margin-bottom: 20px;
}

.article-section h3 {
  color: #b3ffb3;
  margin: 25px 0 15px 0;
}

.article-section p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #e6ffe6;
}

/* CTA Buttons */
.cta-button {
  background: linear-gradient(45deg, #00ff88, #22ff99);
  color: #000;
  padding: 18px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  margin: 10px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.6);
}

.cta-secondary {
  background: linear-gradient(45deg, #ffffff, #f0f0f0);
  color: #000;
}

/* Footer */
footer {
  background: #000;
  padding: 40px 0;
  text-align: center;
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding-top: 150px;
  }
  .hero h1 {
    font-size: 2.5em;
  }
  .bonus-grid {
    grid-template-columns: 1fr;
  }
  .timer {
    flex-wrap: wrap;
  }
  .header-content {
    flex-direction: column;
    gap: 15px;
  }
}

/* Floating elements */
.floating-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, #ff4444, #ff6666);
  padding: 15px 25px;
  border-radius: 50px;
  z-index: 1000;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.referral-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a4d3a, #2d8f61);
  color: var(--text-color-primary);
}

.referral-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.referral-steps,
.referral-tiers {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 30px;
  flex: 1 1 400px;
  box-shadow: var(--box-shadow);
  border: 1px solid #00ff889e;
}

.referral-steps h2,
.referral-tiers h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--color-white);
}

.referral-steps ul {
  list-style: none;
  padding: 0;
}

.referral-steps li {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  padding-left: 40px;
  color: var(--text-color-primary);
}

.referral-steps li strong {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-primary);
  color: var(--color-black);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

.referral-steps li span {
  display: block;
  font-size: 18px;
  color: var(--text-color-secondary);
  margin-top: 4px;
}

.referral-tiers {
  flex: 1 1 400px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  color: var(--text-color-primary);
}

.referral-tiers h2 {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--color-gold);
}

.tier {
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: var(--box-shadow);
  color: var(--text-color-primary);
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.tier-gold {
  background: linear-gradient(135deg, #ffd700, #fff0b3);
  color: var(--color-black);
  animation: glowGold 2s infinite alternate;
}

.tier-default {
  color: var(--color-black);

  background: linear-gradient(135deg, #22ff99, #00cc88);
}

.tier-bonus {
  background: linear-gradient(135deg, #ff4d4d, #ff1a1a);
  color: var(--color-black);
}

@keyframes glowGold {
  0% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  }
}
.money {
  font-size: 22px;
  font-weight: 900;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);

  display: inline-block;
  margin-right: 4px;
}

.referral-header {
  margin-bottom: 50px;
  text-align: center;

  color: var(--text-color-primary);
}

.referral-tagline {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--color-gold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.ref-link {
  display: inline-block;
  background: #111;
  padding: 12px 24px;
  border-radius: 8px;
  color: #fff;
  font-family: monospace;
  font-size: 16px;
  margin: 16px 0;
  box-shadow: inset 0 0 6px rgba(0, 255, 136, 0.3);
}

.referral-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.btn-ref {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease;
  color: #fff;
}

.btn-ref:hover {
  transform: scale(1.05);
}

.btn-ref.orange {
  background: linear-gradient(to right, #ff9966, #ff5e62);
}

.btn-ref.green {
  background: linear-gradient(to right, #00cc66, #00994d);
}
.promo-timer {
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.promo-container {
  background: linear-gradient(135deg, #ff1f2d, #ff6b6b);
  padding: 40px 30px;
  border-radius: 24px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
  animation: pulse 3s infinite ease-in-out;
}

.promo-subtitle {
  color: var(--color-white);
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  opacity: 0.85;
}

.promo-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-white);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  animation: shimmerText 2s infinite;
  line-height: 1.3;
}

.promo-title .highlight {
  color: var(--color-gold);
  text-shadow: 0 0 20px var(--color-gold);
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.time-block {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 15px;
  border-radius: 12px;
  width: 80px;
  color: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  font-size: 28px;
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--color-red);
}

.time-block span {
  display: 900;
  font-size: 32px;
}

.time-block small {
  font-size: 12px;
  display: block;
  color: #eee;
  letter-spacing: 0.5px;
}

.promo-cta {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-black);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  margin-top: 10px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.7);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.015);
  }
}

@keyframes shimmerText {
  0%,
  100% {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
  }
  50% {
    text-shadow: 0 0 24px rgba(255, 255, 255, 0.8);
  }
}

@media (max-width: 480px) {
  .promo-title {
    font-size: 24px;
  }

  .time-block {
    width: 65px;
    font-size: 24px;
  }

  .time-block span {
    font-size: 26px;
  }

  .promo-cta {
    font-size: 14px;
    padding: 12px 24px;
  }
}
@media (max-width: 768px) {
  .countdown-grid {
    gap: 10px;
    margin: 20px 0;
  }

  .time-block {
    width: 70px;
    padding: 12px 10px;
    font-size: 22px;
  }

  .time-block span {
    font-size: 26px;
  }

  .time-block small {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .countdown-grid {
    gap: 8px;
  }

  .time-block {
    width: 60px;
    padding: 10px 8px;
    font-size: 18px;
  }

  .time-block span {
    font-size: 22px;
  }

  .time-block small {
    font-size: 10px;
  }
}

.popular-games {
  color: var(--text-color-primary);
  padding: 80px 20px;
  text-align: center;
}

.games-title {
  font-size: 32px;
  color: var(--color-gold);
  font-weight: 800;
  margin-bottom: 10px;
}

.games-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
}

.game-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter {
  background: #1a1a1a;
  border: 2px solid transparent;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  transition: var(--transition-default);
}

.filter.active,
.filter:hover {
  background: var(--color-primary);
  color: var(--color-black);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

.game-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--box-shadow);
  transition: var(--transition-default);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.game-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.game-icon img {
  width: 42x;
  height: 42px;
}

.game-card h3 {
  margin: 10px 0 5px;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.game-rating {
  font-size: 14px;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.game-desc {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 12px;
}

.game-btn {
  background: linear-gradient(to right, var(--color-primary), #004d39);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  transition: var(--transition-default);
  text-decoration: none;
}

.game-btn:hover {
  background: var(--color-secondary);
  color: var(--color-black);
}
.gradient-red {
  background: linear-gradient(135deg, #ff6a5b, #ff3c97);
}
.gradient-blue {
  background: linear-gradient(135deg, #4d94ff, #1e72d0);
}
.gradient-yellow {
  background: linear-gradient(135deg, #ffd700, #ffb347);
}
.gradient-purple {
  background: linear-gradient(135deg, #cc33ff, #7f00ff);
}
.game-card:hover .game-icon {
  transform: scale(1.1);
}
.games-footer .games-link {
  display: inline-block;
  background: #3399ff;
  padding: 12px 30px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-default);
}

.games-footer .games-link:hover {
  background: #1a75ff;
}

.deposit-bonus-offer {
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.deposit-container {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateX(8deg);
  transition: transform 0.6s ease, box-shadow 0.4s ease;
  transform-origin: top center;
  background: transparent;
}

.deposit-container:hover {
  transform: perspective(1000px) rotateX(0deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.deposit-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/bonus.jpg") center/cover no-repeat;
  filter: blur(5px);
  z-index: -2;
}

.deposit-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(1, 34, 19, 0.581),
    rgba(243, 49, 36, 0.45)
  );
  z-index: -1;
}

.deposit-label {
  display: inline-block;
  background: var(--color-gold);
  color: #000;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 16px;
}

.deposit-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
}

.highlight-gold {
  color: var(--color-gold);
}

.highlight-green {
  color: var(--color-primary);
}

.deposit-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.deposit-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 24px;
  border-radius: 20px;
  min-width: 180px;
  text-align: center;
  color: #fff;
  z-index: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  cursor: pointer;
}

.deposit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, #00ff88, #ff66cc, #ffd700);
  border-radius: inherit;
  z-index: -1;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.deposit-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.35);
}

.deposit-amount {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-gold);
  text-shadow: 0 0 10px rgba(255, 217, 0, 0.601);
  display: block;
}

.deposit-desc {
  font-size: 18px;
  color: #d8fbee;
  font-weight: 600;
  text-decoration: underline;
  padding-bottom: 3px;
}

.deposit-banner {
  background: #111;
  color: #ffd700;
  font-weight: bold;
  padding: 14px 20px;
  border-radius: 40px;
  max-width: 500px;
  margin: 0 auto 30px;
  border: 2px solid #ffd700;
}

.deposit-cta .deposit-btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
}

.deposit-cta .deposit-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}
.site-footer {
  background-color: #181818;
  color: var(--text-color-secondary);
  padding: 60px 20px 30px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-primary);
  text-shadow: 0 0 10px var(--color-primary);
  margin-bottom: 12px;
}

.footer-description {
  margin-bottom: 20px;
  color: var(--text-color-secondary);
}

.social-icons a {
  margin-right: 12px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px var(--color-primary));
}

.footer-column h4 {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--text-color-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  font-size: 0.85rem;
  color: #888;
}
.footer-bottom a {
  color: var(--color-primary);
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
