* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Thin.ttf") format("truetype");
  font-weight: 100;
}

@font-face {
  font-family: "Russo One";
  src: url("fonts/RussoOne-Regular.ttf") format("truetype");
  font-weight: 400;
}

body {
  font-family: "Roboto", sans-serif;

  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  color: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: linear-gradient(90deg, #000000 0%, #0d0d0d 100%);
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Russo One", sans-serif;
}

.logo-img {
  height: 40px;
  width: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}

.logo-text {
  font-size: 28px;
  font-weight: bold;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.8);
  }
  to {
    text-shadow: 2px 2px 20px rgba(255, 215, 0, 1);
  }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lang-switcher {
  display: flex;
  align-items: center;
  font-weight: bold;
  background: #111;
  border-radius: 10px;
  padding: 6px 14px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.lang-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
  padding: 2px 6px;
}

.lang-link:hover,
.lang-link.active {
  color: #ffd700;
}

.lang-switcher .divider {
  margin: 0 6px;
  color: #888;
}

.cta-button {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  animation: pulse 2s infinite;
  white-space: nowrap;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

@media (max-width: 1024px) {
  .logo-text {
    font-size: 22px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .logo {
    justify-content: center;
    width: 100%;
  }

  .header-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .lang-switcher {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 30px;
  }

  .logo-text {
    font-size: 18px;
  }

  .cta-button {
    font-size: 13px;
    padding: 10px 16px;
  }

  .lang-link {
    font-size: 13px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 20px 80px;
  text-align: center;
  color: #fff;
  background-color: #000;
  height: 100vh;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: url("images/hero.jpg") center center / cover no-repeat;
  transform: translateZ(-1px) scale(1.1);
  z-index: 0;
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.561)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.hero-title {
  font-family: "Russo One", sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: #ffd700;
  text-shadow: 0 0 20px #ffd700;
  animation: glowText 2s ease-in-out infinite alternate;
  letter-spacing: 4px;
  line-height: 1.1;
  margin-bottom: 10px;
}

@keyframes glowText {
  from {
    text-shadow: 0 0 10px #ffd700;
  }
  to {
    text-shadow: 0 0 30px #ffa500;
  }
}

.hero-subtitle {
  font-size: 46px;
  margin: 20px 0 10px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-description {
  font-size: 20px;
  margin-bottom: 35px;
  color: #f5f5f5;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-buttons.secondary {
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  padding: 22px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.btn.red {
  background: linear-gradient(45deg, #ff0000, #ff6347);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.btn.red:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
}

.btn.yellow {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.btn.yellow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.promo-banner {
  background: linear-gradient(45deg, #ff0000, #ff6347);
  color: #fff;
  padding: 28px 40px;
  border-radius: 22px;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 25px;
  box-shadow: 0 0 24px rgba(255, 0, 0, 0.5);
  animation: pulseBanner 2s infinite;
  font-family: "Russo One", sans-serif;
}
.promo-banner .icon {
  width: 25px;
  height: 25px;
  vertical-align: middle;
  filter: drop-shadow(0 0 4px #ffd700);
}

@keyframes pulseBanner {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.referral-text {
  font-size: 16px;
  font-weight: 500;
  color: #ffd700;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

#countdown {
  font-family: monospace;
  font-weight: 700;
}
@media (max-width: 768px) {
  .hero {
    height: auto;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 20px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-buttons .btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  .hero-timer {
    font-size: 16px;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .promo-banner {
    font-size: 20px;
    padding: 20px 30px;
    gap: 10px;
    border-radius: 18px;
  }

  .promo-banner .icon {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .promo-banner {
    flex-direction: column;
    text-align: center;
    font-size: 18px;
    padding: 18px 20px;
    gap: 8px;
  }

  .promo-banner .icon {
    width: 20px;
    height: 20px;
  }
}

.bonus-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.section-title {
  text-align: center;
  font-size: 38px;
  color: #ffd700;
  margin-bottom: 60px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  letter-spacing: 1px;
  font-family: "Russo One", sans-serif;
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.bonus-card {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  border: 3px solid #ffd700;
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bonus-card--featured {
  border-color: #ff6b6b;
  transform: scale(1.05);
  z-index: 2;
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 215, 0, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.bonus-card:hover::before {
  animation: shine 0.6s ease;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.bonus-amount {
  font-size: 52px;
  color: #ffd700;
  font-weight: 900;
  margin-bottom: 15px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.bonus-text {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
}

.bonus-card p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 20px;
}

.cta-button {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.bonus-note {
  text-align: center;
  font-size: 20px;
  color: #ffd700;
  margin-top: 40px;
  line-height: 1.6;
}
.bonus-table {
  background: radial-gradient(circle at center, #1a1a1a, #000);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.bonus-table-title {
  font-family: "Russo One", sans-serif;
  font-size: 38px;
  color: #ffd700;
  margin-bottom: 10px;
}

.bonus-table-subtitle {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
}

.bonus-grid {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(180deg, #121212, #1e1e1e);
  border: 1px solid #ffd700;
  border-radius: 12px;
  overflow: hidden;
  min-width: 600px;
}

.bonus-grid th,
.bonus-grid td {
  padding: 18px 25px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-grid thead th {
  background: #ffd700;
  color: #000;
  font-size: 18px;
  font-weight: bold;
}

.bonus-grid tbody tr {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.bonus-grid tbody tr:hover {
  background: linear-gradient(
    90deg,
    rgba(255, 215, 0, 0.05),
    rgba(255, 215, 0, 0.15)
  );
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.2);
}

.bonus-grid td.bonus {
  color: #ff4444;
  font-weight: bold;
  text-shadow: 0 0 6px rgba(255, 0, 0, 0.3);
}

.bonus-table-cta {
  margin-top: 40px;
}

.cta-button.red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  padding: 14px 28px;
  font-size: 16px;
  background: linear-gradient(45deg, #ff0000, #ff4500);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
  transition: 0.3s ease;
}

.cta-button.red:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .bonus-table-title {
    font-size: 30px;
  }
  .bonus-grid th,
  .bonus-grid td {
    padding: 14px 16px;
    font-size: 14px;
  }
}

.partners-section {
  padding: 80px 20px;
  background: radial-gradient(circle at center, #000, #1a1a1a 80%);
  text-align: center;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.35);
  }
  50% {
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.6);
  }
}

.partner-offer {
  position: relative;
  color: #fff;
  padding: 60px 40px;
  border-radius: 24px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.25);
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.457);
}

.partner-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("images/partner.jpg") center center / cover no-repeat;
  filter: blur(3px) brightness(0.9);
  transform: scale(1.05);
}

.partner-offer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
  opacity: 0.9;
}

.partner-amount {
  font-size: 72px;
  font-weight: 900;
  color: #f3f2ed;
  text-shadow: 0 0 10px #ffd700, 0 0 20px #ffa500,
    0 0 40px rgba(255, 215, 0, 0.5);
  margin-bottom: 20px;
  position: relative;
  animation: floatAmount 3s ease-in-out infinite,
    glowPulse 2.5s ease-in-out infinite;
  font-family: "Russo One", sans-serif;
}

@keyframes floatAmount {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    text-shadow: 0 0 10px #ffd700, 0 0 20px #ffa500,
      0 0 40px rgba(255, 215, 0, 0.5);
  }
  50% {
    text-shadow: 0 0 20px #ffd700, 0 0 30px #ffa500,
      0 0 60px rgba(255, 215, 0, 0.7);
  }
}

.partner-headline {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.4;
}

.partner-benefits {
  font-size: 18px;
  line-height: 1.7;
  color: #f8f8f8;
  margin-bottom: 35px;
}

.partner-benefits p {
  margin: 12px 0;
}

.cta-button.large {
  font-size: 20px;
  padding: 16px 32px;
  background: linear-gradient(45deg, #ff0000, #ff6347);
  color: #fff;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

.cta-button.large:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.6);
}

.partner-note {
  margin-top: 40px;
  font-size: 18px;
  color: #ffd700;
  line-height: 1.6;
}

.partner-note p {
  margin: 10px 0;
}

@media (max-width: 768px) {
  .partner-offer {
    padding: 40px 20px;
  }
  .partner-amount {
    font-size: 56px;
  }
  .partner-headline {
    font-size: 20px;
  }
  .cta-button.large {
    font-size: 14px;
    padding: 14px 24px;
  }
}
.success-section {
  padding: 80px 20px;
  background: linear-gradient(145deg, #1a1a1a 0%, #000 100%);
  color: #fff;
  text-align: center;
}

.success-section .section-title {
  color: #ffd700;
  font-size: 36px;
  margin-bottom: 50px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial {
  background: radial-gradient(
    circle at top,
    rgba(255, 215, 0, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border: 2px solid rgba(255, 215, 0, 0.2);
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.testimonial-amount {
  font-size: 32px;
  font-weight: 800;
  color: #00ff88;
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
  margin-bottom: 15px;
  animation: riseIn 0.8s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial p {
  font-size: 16px;
  line-height: 1.6;
  color: #e6e6e6;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .testimonial-amount {
    font-size: 28px;
  }

  .testimonial p {
    font-size: 15px;
  }

  .success-section .section-title {
    font-size: 28px;
  }
}

.stats-section {
  padding: 80px 0;
  background: linear-gradient(90deg, #ffd700 0%, #ffa500 100%);
  color: #000;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 48px;
  color: #151515;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  animation: pop-in 0.6s ease forwards;
  opacity: 0;
  transform: scale(0.95);
  font-family: "Russo One", sans-serif;
}

@keyframes pop-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.stat-label {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #333;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 5px;
}

.stat-number:not(.live-counter) {
  font-size: 48px;
  color: #b30000;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

@media (max-width: 600px) {
  .stat-number {
    font-size: 42px;
  }
  .stat-label {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 18px;
  }
  .bonus-amount {
    font-size: 36px;
  }
  .partner-amount {
    font-size: 48px;
  }
  .nav {
    flex-direction: column;
    gap: 20px;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.article-section {
  background: linear-gradient(180deg, #1a1a1a, #000000);
  padding: 80px 20px;
  color: #f5f5f5;
  line-height: 1.7;
}

.article-section .section-title {
  color: #ffd700;
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

.article {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);
  backdrop-filter: blur(4px);
}

.article h2 {
  font-size: 26px;
  color: #ffd700;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
}

.article h3 {
  font-size: 20px;
  color: #ffa500;
  margin-top: 30px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.article h3::before {
  content: "🎲";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 16px;
}

.article p {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 18px;
  text-align: justify;
}
@media (max-width: 600px) {
  .article-section .section-title {
    font-size: 28px;
  }

  .article {
    padding: 30px 20px;
  }

  .article h2 {
    font-size: 22px;
  }

  .article h3 {
    font-size: 18px;
  }

  .article p {
    font-size: 15px;
  }
}
.games-section {
  background: linear-gradient(180deg, #0d0d0d, #1a1a1a);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #ffd700;
  margin-bottom: 50px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.game-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  text-align: left;
  background: #111;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.1);
  background-size: cover;
  background-position: center;
  text-decoration: none;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.3);
}

.game-slot {
  background-image: url("images/slot.jpg");
}
.game-live {
  background-image: url("images/live.jpg");
}
.game-sports {
  background-image: url("images/sport.jpeg");
}
.game-mini {
  background-image: url("images/game.jpg");
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.9)
  );
  z-index: 1;
}

.game-content {
  position: relative;
  z-index: 2;
  padding: 30px 20px;
  color: #fff;
  backdrop-filter: blur(2px);
}

.game-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 3px #ffd700);
}

.game-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffd700;
}

.game-content p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #eee;
}

.game-cta {
  display: inline-block;
  font-weight: bold;
  padding: 10px 18px;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  border-radius: 10px;
  color: #000;
  font-size: 14px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  transition: 0.3s ease;
}

.game-cta:hover {
  background: linear-gradient(45deg, #ffa500, #ffd700);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* ярлыки */
.game-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 12px;
  background: red;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.game-tag.hot {
  background: #ff4500;
}
.game-tag.new {
  background: #00bfff;
}
.game-tag.jackpot {
  background: #ffcc00;
  color: #000;
}
.site-footer {
  background: linear-gradient(135deg, #000, #1a1a1a);
  color: #fff;
  padding: 60px 20px 30px;
  font-size: 15px;
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-block h3,
.footer-block h4 {
  color: #ffd700;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-block p {
  color: #ccc;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block ul li {
  margin-bottom: 10px;
}

.footer-block a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-block a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 14px;
  color: #888;
}
@media (max-width: 480px) {
  .site-footer {
    padding: 40px 15px 20px;
  }

  .footer-block h3,
  .footer-block h4 {
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}
