:root {
  --primary-red: #e60000;
  --secondary-red: #9e1c1c;

  --dark-orange: #1f1206;
  --medium-orange: #5c380f;
  --light-orange: #faeedc;

  --dark-bg: #110000;
  --text-light: #ffffff;

  --success-green: #00cc66;
  --danger-red: #ff4e4e;
  --logo-color: #ffffff;
  --highlight-color: #ffd034;

  --btn-gradient-red: linear-gradient(135deg, #e60000, #c94040);
  --btn-gradient-indigo: linear-gradient(135deg, #ff5e00, #ffa047);

  --header-bg: linear-gradient(135deg, #000000, #330000);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Russo One";
  src: url("fonts/RussoOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: "Lato", Arial, sans-serif;
  font-weight: 400;
  color: #fff;
}

h1,
h2,
h3,
h4,
.hero-title,
.promo-modern-title,
.win-amount,
.logo {
  font-family: "Russo One", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}

body {
  background-color: var(--dark-bg);
  color: var(--primary-red);
  overflow-x: hidden;
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-red);
  color: var(--dark-bg);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1001;
}

.skip-link:focus {
  top: 6px;
}

.header {
  background: var(--header-bg);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(255, 215, 0, 0.3);
}

.container-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.download-btn {
  background: var(--btn-gradient-red);
  color: var(--light-orange);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 132, 176, 0.3);
}

.download-btn:hover,
.download-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 132, 176, 0.4);
  outline: none;
}

.lang-switcher {
  display: flex;
  gap: 0.5rem;
  role: group;
  aria-label: "Language selector";
}

.lang-btn {
  background: linear-gradient(45deg, var(--primary-red), var(--secondary-red));
  color: var(--dark-bg);
  border: 2px solid var(--dark-bg);
  padding: 0.4rem 0.6rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
}

.lang-btn:hover,
.lang-btn:focus,
.lang-btn.active {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  outline: 2px solid var(--dark-bg);
  outline-offset: 2px;
}

.lang-content {
  display: none;
}

.lang-content.active {
  display: block;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--logo-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-text {
  color: var(--logo-color);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.15);
}

.logo-text .highlighted {
  font-size: 1rem;

  color: var(--highlight-color);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25), 0 2px 2px rgba(0, 0, 0, 0.15);
}
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.burger-menu span {
  height: 3px;
  width: 100%;
  background: var(--light-orange);
  border-radius: 3px;
  transition: 0.3s ease;
}

.mobile-menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.mobile-menu.open {
  display: flex;
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .nav-controls {
    display: none;
  }

  .mobile-menu.open .nav-controls {
    display: flex;
    gap: 1rem;
  }
  .container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-size: 1rem;
  }
}

.play-btn {
  background: var(--btn-gradient-red);
  color: var(--dark-bg);
  border: none;
  padding: 1.25rem 3.125rem;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  animation: pulse 1.5s infinite ease-in-out;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform; /* 💥 фикс */
}

.play-btn:hover,
.play-btn:focus {
  outline: 3px solid var(--text-light);
  outline-offset: 3px;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.75);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  }
}
.hero {
  position: relative;
  overflow: hidden;
  color: var(--text-light);
  text-align: center;
  padding: 100px 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("images/hero.jpg") center/cover no-repeat;
  z-index: -3;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    #0a140d8b,
    rgba(255, 0, 0, 0.269),
    #0a0f14f2
  );
  backdrop-filter: blur(0px);
  z-index: -2;
}

.hero-title {
  font-size: 5.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  color: #fff;

  text-shadow: 0 3px 0 var(--dark-bg), 0 5px 0 var(--dark-orange),
    2px 2px 0 var(--primary-red), -2px 2px 0 var(--secondary-red);
}

.hero-title::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  color: var(--primary-red);
  text-shadow: 0 3px 3px var(--secondary-red);
}
.hero-title span {
  color: var(--highlight-color);
}
.hero-subtitle {
  color: var(--logo-color);
  font-size: 2.3rem;
  margin-bottom: 15px;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.17),
    2px 2px 2px rgba(0, 0, 0, 0.2), 0 0 3px rgba(255, 255, 255, 0.3),
    0 2px 6px rgba(0, 0, 0, 0.15);
}

.hero-desc {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--light-orange);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-cta,
.btn-outline {
  padding: 18px 36px;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  line-height: 1.4;
  text-transform: uppercase;
  transition: all 0.25s ease-in-out;
  letter-spacing: 1px;
  min-width: 220px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.btn-cta::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 999px;
  background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
  opacity: 0.25;
  z-index: -1;
  animation: pulse-wave 2.5s infinite ease-out;
}
.btn-cta {
  animation: heartbeat 1.8s infinite ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.04);
  }
  60% {
    transform: scale(0.98);
  }
}

@keyframes pulse-wave {
  0% {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.3;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.15;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
}
.btn-cta {
  background: var(--btn-gradient-indigo);
  background-size: 200% 200%;
  color: var(--dark-orange);
  border: none;
  box-shadow: 0 6px 18px rgba(0, 255, 204, 0.25);
}

.btn-outline {
  background: #09270177;
  color: var(--highlight-color);
  border: 2px solid var(--highlight-color);
  box-shadow: inset 0 0 10px rgba(0, 255, 204, 0.2),
    0 0 6px rgba(0, 255, 204, 0.1);
}

.btn-cta:hover,
.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 255, 204, 0.3);
}

@media (max-width: 1024px) {
  .btn-cta,
  .btn-outline {
    padding: 16px 28px;
    font-size: 1rem;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .btn-cta,
  .btn-outline {
    padding: 14px 24px;
    font-size: 0.95rem;
    min-width: 180px;
    border-radius: 10px;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .btn-cta,
  .btn-outline {
    padding: 12px 20px;
    font-size: 0.9rem;
    min-width: 100%;
    width: 100%;
    border-radius: 8px;
    gap: 0.4rem;
  }
}
.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.4);
  padding: 40px 30px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2),
    inset 0 0 8px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 2px solid var(--primary-red);
  animation: pulse-glow 2s infinite ease-in-out;
  margin-bottom: 30px;
}

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid var(--primary-red);
  border-radius: 12px;
  padding: 16px 22px;
  min-width: 70px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.time-value {
  font-family: "Orbitron", "Courier New", monospace;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--light-orange);
  text-shadow: 0 0 6px var(--primary-red), 0 0 3px rgba(255, 215, 0, 0.4);
}

.time-label {
  font-size: 0.75rem;
  color: #eee;
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.time-separator {
  font-size: 2rem;
  color: var(--primary-red);
  font-weight: bold;
  margin: 0 6px;
  text-shadow: 0 0 5px var(--primary-red);
}
.timer-content {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto;
}

.timer-heading {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--highlight-color);
  text-shadow: 0 0 6px rgba(255, 255, 0, 0.3);
}

.timer-subtext {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--light-orange);
}
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
  .hero {
    height: auto;
  }
  .timer-heading {
    font-size: 1.5rem;
  }

  .timer-subtext {
    font-size: 1rem;
  }
}
.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.timer-section {
  position: relative;

  padding-bottom: 60px;
}

@media (max-width: 768px) {
  .timer-section {
    padding-bottom: 40px;
  }
}
.hero-timer {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    gap: 30px;
  }

  .hero-text {
    text-align: center;
    align-items: center;
  }

  .hero-timer {
    order: -1;
  }
}
@media (max-width: 1024px) {
  .countdown-timer {
    gap: 10px;
    padding: 16px 24px;
  }

  .time-box {
    padding: 8px 14px;
    min-width: 60px;
  }

  .time-value {
    font-size: 1.7rem;
  }

  .time-label {
    font-size: 0.7rem;
  }

  .time-separator {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .countdown-timer {
    flex-wrap: wrap;
    gap: 16px;
    padding: 14px 20px;
  }

  .time-box {
    min-width: 56px;
    padding: 8px 12px;
  }

  .time-value {
    font-size: 1.6rem;
  }

  .time-label {
    font-size: 0.68rem;
  }

  .time-separator {
    font-size: 1.4rem;
    margin: 0 4px;
  }
}

@media (max-width: 480px) {
  .countdown-timer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.3);
  }

  .time-box {
    width: 100%;
    padding: 10px 6px;
    border-radius: 10px;
    min-width: 0;
    background: rgba(255, 215, 0, 0.07);
    border: 1px solid var(--primary-red);
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.2);
  }

  .time-value {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--highlight-color);
    text-shadow: none;
  }

  .time-label {
    font-size: 0.65rem;
    color: var(--text-light);
    opacity: 0.6;
    margin-top: 4px;
    letter-spacing: 0.5px;
  }

  .time-separator {
    display: none;
  }
}
.section {
  padding: 3.75rem 0;
  margin: 1.25rem 0;
}

.section h2,
#bonus-title {
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 800;
  color: var(--primary-red);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  line-height: 1.3;
  word-break: break-word;
}

.section h2::after,
#bonus-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-red);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--secondary-red);
  margin: 1.5rem 0 1rem 0;
  line-height: 1.4;
  word-break: break-word;
}
.games-section {
  position: relative;
  padding: 4rem 1.5rem;
  color: var(--text-light);
  overflow: hidden;
  z-index: 0;
}

.games-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/games-bg.jpg") center/cover no-repeat;
  z-index: -3;
}

.games-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 102, 0, 0.05),
    rgba(255, 174, 25, 0.08),
    rgba(0, 0, 0, 0.8)
  );
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: -2;
}
#promo-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-red);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  line-height: 1.3;
}
.games-section h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--light-orange);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  line-height: 1.3;
}
.games-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--light-orange);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
#promo-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-red);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
}
.game-card {
  background: rgba(12, 12, 12, 0.437);
  border: 2px solid var(--primary-red);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 12px rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(6px);
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(255, 215, 0, 0.25);
}

/* Image & Badges */
.game-img-wrapper {
  position: relative;
}

.game-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid var(--primary-red);
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--primary-red);
  font-size: 0.6rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 8px;
  backdrop-filter: blur(2px);
  margin-bottom: 4px;
}

.badge.provider {
  top: 10px;
  right: 10px;
  left: auto;
}

/* Info content */
.game-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-card h3 {
  font-size: 1.25rem;
  color: var(--highlight-color);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 2px rgba(21, 21, 21, 0.551);
}

.game-desc {
  font-size: 0.95rem;
  color: var(--light-orange);
  margin-bottom: 1rem;
  flex-grow: 1;
}
.game-info p {
  color: var(--light-orange);
}
.game-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.meta-label {
  color: var(--light-orange);
  white-space: nowrap;
}

.meta-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.meta-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(
    to right,
    var(--primary-red),
    var(--secondary-red)
  );
  border-radius: 10px;
}

.game-cta {
  display: inline-block;
  margin-top: auto;
  text-align: center;
  background: var(--primary-red);
  color: var(--light-orange);
  font-weight: bold;
  border-radius: 12px;
  padding: 0.6rem 1rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.game-cta:hover {
  background: var(--secondary-red);
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .game-img {
    height: 150px;
  }

  .game-card h3 {
    font-size: 1.15rem;
  }

  .game-card p {
    font-size: 0.95rem;
  }

  .game-cta {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .game-img {
    height: 140px;
  }

  .game-card h3 {
    font-size: 1.05rem;
  }

  .game-card p {
    font-size: 0.875rem;
  }

  .game-cta {
    font-size: 0.9rem;
    padding: 0.5rem 0.9rem;
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr;
  }

  .game-img {
    height: 130px;
  }

  .game-card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .game-card p {
    font-size: 0.85rem;
  }

  .game-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .meta-bar {
    width: 100%;
  }

  .game-cta {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    width: 100%;
  }
}
.feature-card {
  background: linear-gradient(
    135deg,
    var(--medium-orange) 0%,
    var(--dark-orange) 100%
  );
  border: 2px solid var(--primary-red);
  border-radius: 15px;
  padding: 1.875rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.game-card:hover,
.game-card:focus-within,
.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.promo-section {
  padding: 4rem 1.5rem;
  color: var(--text-light);
}

.promo-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.promo-modern-banner {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 1.5rem 3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  border-radius: 22px;
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.25);
  margin-bottom: 50px;
  background: none;
}

.promo-modern-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("images/banner.jpg") center/cover no-repeat;
  filter: blur(2px);
  opacity: 0.82;
}

.promo-modern-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 255, 119, 0.275),
    rgba(255, 255, 0, 0.08),
    rgba(0, 0, 0, 0.85)
  );
  pointer-events: none;
}

.promo-modern-bg,
.promo-modern-content {
  position: relative;
  z-index: 3;
}

.promo-modern-bg {
  pointer-events: none;
  position: relative;
  z-index: 3;
  inset: 0;
  background: radial-gradient(
      ellipse 340px 80px at 38% 32%,
      rgba(255, 215, 0, 0.13),
      transparent 90%
    ),
    radial-gradient(
      ellipse 400px 70px at 85% 72%,
      rgba(255, 255, 255, 0.09),
      transparent 70%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 215, 0, 0.14) 100%
    );
  filter: blur(2.5px);
  opacity: 0.85;
}

.promo-modern-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 0 0.5rem;
}

.promo-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
  color: #1a402a;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.32em 1.1em;
  border-radius: 1.5em;
  letter-spacing: 0.09em;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.14);
  margin-bottom: 1.1em;
  animation: badgeFlash 2.8s infinite alternate;
}

@keyframes badgeFlash {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.15);
  }
}

.promo-modern-title {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.9em;
  letter-spacing: 0.01em;
  text-shadow: 0 3px 14px rgba(255, 215, 0, 0.16), 0 1.5px 0 #0f3829;
}
.promo-gradient {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  filter: drop-shadow(0 2px 12px rgba(1, 104, 35, 0.18));
  animation: modernPulse 1.7s infinite;
  text-shadow: 1px 1px 0 var(--secondary-red), 2px 2px 6px rgba(0, 0, 0, 0.709),
    0 0 8px rgba(3, 97, 42, 0.545);
}
@keyframes modernPulse {
  0%,
  100% {
    filter: drop-shadow(0 2px 12px rgba(255, 215, 0, 0.18));
  }
  50% {
    filter: drop-shadow(0 6px 24px rgba(255, 215, 0, 0.25));
  }
}

.promo-modern-desc {
  color: var(--text-secondary, #fff7cc);
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.promo-modern-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
  color: var(--text-light);
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: 12px;
  padding: 0.82em 2.2em;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.14);
  text-decoration: none;
  transition: transform 0.17s cubic-bezier(0.42, 1.75, 0.35, 0.95),
    background 0.28s;
  animation: ctaPop 2.7s infinite alternate;
}
.promo-modern-cta:hover {
  transform: scale(1.06);
  background: linear-gradient(90deg, var(--secondary-red), var(--primary-red));
}
@keyframes ctaPop {
  0% {
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.13);
  }
  100% {
    box-shadow: 0 7px 35px rgba(255, 215, 0, 0.19);
  }
}

@media (max-width: 650px) {
  .promo-modern-banner {
    padding: 2.2rem 0.5rem 2rem 0.5rem;
    min-height: 180px;
    border-radius: 14px;
  }
  .promo-modern-title {
    font-size: 1.4rem;
  }
  .promo-modern-cta {
    font-size: 1rem;
    padding: 0.65em 1.5em;
  }
  .promo-badge {
    font-size: 0.92rem;
  }
  .promo-modern-desc {
    font-size: 0.95rem;
  }
}
.promo-scroller {
  overflow-x: auto;
  padding-bottom: 1rem;
}

.scroll-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  min-width: max-content;
  align-items: stretch;
}

.scroll-card {
  min-width: 250px;
  max-width: 260px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 18px;
  border: none;
  padding: 1.35rem 1.1rem 1.2rem 1.1rem;
  box-shadow: 0 2px 22px 0 rgba(0, 0, 0, 0.08),
    0 1.5px 14px 0 rgba(255, 215, 0, 0.1);
  transition: transform 0.19s cubic-bezier(0.58, 1.2, 0.57, 1.07),
    box-shadow 0.24s;
  position: relative;
  z-index: 1;
  background: var(
    --card-gradient,
    linear-gradient(120deg, #232e37 0%, #1a5e3a 100%)
  );
  overflow: hidden;
}
.scroll-card:hover {
  box-shadow: 0 7px 28px 0 rgba(255, 215, 0, 0.12),
    0 1.5px 20px 0 rgba(255, 215, 0, 0.17);
}

.scroll-card h4 {
  font-family: "Russo One", Arial, sans-serif;
  font-size: 1.18rem;
  color: #fff;
  margin-bottom: 0.82rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  line-height: 1.18;
}
.scroll-card p {
  font-size: 0.97rem;
  color: #fff7cc;
  opacity: 0.98;
  margin-bottom: 1.22rem;
  flex-grow: 1;
}
.cta-small {
  align-self: flex-start;
  background: var(--btn-gradient-red);
  color: var(--light-orange);
  font-size: 0.95rem;
  padding: 0.48rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 2px 12px 0 rgba(255, 215, 0, 0.15);
  border: none;
  letter-spacing: 0.03em;
  transition: background 0.18s, transform 0.17s;
}
.cta-small:hover {
  background: linear-gradient(90deg, var(--secondary-red), var(--primary-red));
  transform: (1.06);
}

.card-blue {
  --card-gradient: linear-gradient(
    120deg,
    #25326d 0%,
    #2196f3 85%,
    #1a5e3a 100%
  );
  border: 1.5px solid #41aaff;
}
.card-green {
  --card-gradient: linear-gradient(
    120deg,
    #0e523a 5%,
    #22c55e 90%,
    #e6ffea 100%
  );
  border: 1.5px solid #22c55e;
}
.card-purple {
  --card-gradient: linear-gradient(
    120deg,
    #301c43 7%,
    #a076f9 80%,
    #f7b3fa 100%
  );
  border: 1.5px solid #a076f9;
}
.card-orange {
  --card-gradient: linear-gradient(
    120deg,
    #6d4b20 10%,
    #ffa726 70%,
    #ffeb3b 100%
  );
  border: 1.5px solid #ffb347;
}

.promo-scroller::-webkit-scrollbar {
  height: 8px;
}
.promo-scroller::-webkit-scrollbar-thumb {
  background: var(--primary-red);
  border-radius: 4px;
}

@media (max-width: 1200px) {
  .scroll-row {
    gap: 1rem;
  }
}
@media (max-width: 900px) {
  .scroll-card {
    min-width: 220px;
    max-width: 225px;
    height: 240px;
    padding: 1rem 0.7rem 1rem 0.7rem;
  }
}
@media (max-width: 600px) {
  .scroll-row {
    gap: 0.6rem;
  }
  .scroll-card {
    min-width: 86vw;
    max-width: 88vw;
    height: auto;
    padding: 1rem 0.6rem 1rem 0.6rem;
  }
}

.wins-counter {
  position: relative;
  padding: 4rem 1.5rem;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
  border-top: 1px solid var(--primary-red);
  border-bottom: 1px solid var(--primary-red);
  z-index: 1;
}

.wins-counter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/wins.jpg") center/cover no-repeat;
  z-index: 0;
  filter: blur(1px) brightness(0.5);
  transform: scale(1.1);
}

.wins-counter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 51, 0, 0.1),
    rgba(255, 72, 0, 0.08),
    rgba(0, 0, 0, 0.85)
  );

  z-index: 0;
}

.wins-counter > .container {
  position: relative;
  z-index: 1;
}

.wins-counter h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--light-orange);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.win-amount {
  font-size: 3.4rem;
  font-weight: 900;
  text-shadow: 0 2px 0 var(--dark-orange), -2px 2px 0 var(--medium-orange);
  color: var(--light-orange);
  padding: 0.5rem 1rem;
  display: inline-block;
  border-radius: 12px;
  animation: winPulse 1.8s infinite ease-in-out;
}

@keyframes winPulse {
  0%,
  100% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.05);
  }
  60% {
    transform: scale(1.02);
  }
}

.wins-counter p {
  margin-top: 1.3rem;
  font-size: 1rem;
  color: var(--light-orange);
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .wins-counter h3 {
    font-size: 1.6rem;
  }

  .win-amount {
    font-size: 2.4rem;
  }

  .wins-counter p {
    font-size: 0.95rem;
  }
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: stretch;
  gap: 10px;
  margin-top: 30px;
}

.payment-method {
  background: rgba(255, 255, 255, 0.05);
  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;
}
.button-wrapper {
  margin-top: 2.5rem;
  text-align: center;
}

.button-primary {
  display: inline-block;
  background: var(--primary-red);
  color: var(--light-orange);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

.button-primary:hover {
  background: var(--secondary-red);
  transform: translateY(-2px);
}

.button-primary.large {
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
}
@media (max-width: 480px) {
  .button-primary.large {
    font-size: 14px;
    padding: 0.7rem 1.1rem;
  }
}

@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: 1fr;
  }

  .bonus-cards {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    gap: 0.625rem;
  }

  .payment-method {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}
.mobile-app-section {
  padding: 60px 20px;
  border-radius: 16px;
}

.app-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.app-text {
  flex: 1;
  max-width: 600px;
}

.app-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-red);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  line-height: 1.3;
}

.app-text h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-red);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
.app-text p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1rem;
}

.app-features {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  gap: 10px;
}

.app-feature {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.app-feature span {
  font-size: 1.2rem;
  margin-right: 6px;
}

.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.qr-box {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 10px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-weight: bold;
}

.store-button {
  background: #000;
  color: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  text-align: left;
  line-height: 1.2;
  font-size: 0.85rem;
  text-decoration: none;
  width: 140px;
  transition: background 0.3s;
}

.store-button strong {
  font-size: 1rem;
}

.store-button.apple::before {
  content: "";
  font-size: 1.4rem;
  margin-right: 8px;
}

.store-button.google::before {
  content: "▶";
  font-size: 1.2rem;
  margin-right: 8px;
}

.phone-wrapper {
  perspective: 500px;
  flex-shrink: 0;
}

.phone-card {
  width: 250px;
  height: 480px;
  border-radius: 24px;
  background: linear-gradient(to bottom, #15203e, #000);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: rotateY(-15deg);
  transition: transform 0.6s ease;
  border: 5px solid #223b4c;
}

.phone-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.phone-card p {
  font-size: 0.95rem;
  text-align: center;
  color: var(--text-muted);
  padding: 0 10px;
  line-height: 1.4;
}

.logo-highlight {
  font-weight: 800;
  color: var(--secondary-red);
}

.logo-green {
  color: var(--secondary-color);
  font-weight: 800;
}

.phone-wrapper:hover .phone-card {
  transform: rotateY(0deg);
}
.cta-in-phone {
  margin-top: 1.5rem;
  background: var(--primary-red);
  color: var(--dark-bg);
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-in-phone:hover {
  background: var(--secondary-red);
  transform: translateY(-2px);
}
.app-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .app-flex {
    flex-direction: column;
    align-items: center;
  }

  .phone-card {
    margin-top: 30px;
    width: 220px;
    height: 400px;
  }
}
.site-footer {
  border-top: 2px solid var(--medium-orange);
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 3rem 1.5rem 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-brand h4 {
  font-size: 1.25rem;
  color: var(--primary-red);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  opacity: 0.85;
  line-height: 1.6;
}

.footer-links h5,
.footer-info h5 {
  color: var(--secondary-red);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.footer-links ul,
.footer-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-info li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-info a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.9;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-info a:hover {
  color: var(--primary-red);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  text-align: center;
  opacity: 0.7;
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links,
  .footer-info {
    margin-top: 1.5rem;
  }
}
.highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(
    135deg,
    rgba(97, 81, 56, 0.345),
    rgba(155, 144, 47, 0.256)
  );
  border: 2px solid var(--primary-red);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 3rem;
  color: var(--text-light);
  backdrop-filter: blur(8px);
  position: relative;
}

.highlight-icon {
  font-size: 2rem;
  line-height: 1;
  color: var(--primary-red);
}

.highlight-content {
  font-size: 1rem;
  line-height: 1.5;
}

.highlight-content strong {
  color: var(--highlight-color);
  font-size: 1.1rem;
}

.highlight-amount {
  font-weight: bold;
  color: var(--highlight-color);
  font-size: 1.2rem;
  padding: 0 4px;
}

.highlight-callout {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .highlight-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .highlight-icon {
    font-size: 1.6rem;
  }

  .highlight-content {
    font-size: 0.95rem;
  }

  .highlight-amount {
    font-size: 1.1rem;
  }
}
.section-about {
  padding: 80px 20px;

  position: relative;
  overflow: hidden;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-title span {
  background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-description {
  color: var(--text-light);
  font-size: 1.125rem;
  max-width: 700px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.highlight {
  color: var(--secondary-red);
  font-weight: 600;
}

.glow {
  color: var(--light-orange);
  text-shadow: 0 0 8px rgba(56, 160, 201, 0.5);
}

.about-content em {
  color: var(--primary-red);
  font-style: normal;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  color: var(--text-light);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 6px rgba(56, 201, 119, 0.4));
}

.about-note {
  margin-top: 1.5rem;
  color: var(--text-light);
  font-size: 1rem;
}

.bonus-section {
  padding: 80px 20px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.bonus-card {
  background: var(--medium-orange);
  border-radius: 24px;
  border: 2px solid var(--highlight-color);
  padding: 32px 24px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-8px);
}

.bonus-offer {
  font-size: 1.25rem;
  color: var(--light-orange);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.bonus-big {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-light);
}

.bonus-big span {
  background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bonus-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  font-size: 1rem;
  line-height: 1.6;
}

.bonus-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bonus-tag {
  background: var(--primary-red);
  color: var(--text-light);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  align-self: flex-start;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

.bonus-button {
  background: var(--btn-gradient-red);
  color: var(--light-orange);
  padding: 14px 24px;
  border-radius: 14px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 16px rgba(56, 201, 119, 0.4);
  transition: all 0.2s ease;
}

.bonus-button:hover {
  transform: scale(1.05);
}
.demo-banner {
  background: linear-gradient(
    135deg,
    rgba(255, 94, 0, 0.05),
    rgba(51, 42, 0, 0.8)
  );
  border-top: 2px solid var(--primary-red);
  border-bottom: 2px solid var(--secondary-red);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.demo-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  gap: 60px;
  flex-wrap: wrap;
}

.demo-text {
  flex: 1;
  min-width: 300px;
  color: var(--text-light);
}

.demo-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--highlight-color);
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.2);
}

.demo-desc {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--light-orange);
}

.demo-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}
.demo-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
  color: var(--text-light);
}
.demo-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-red);
}
.demo-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 600px;
}
.demo-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  background-color: #000;
  text-decoration: none;
}

.demo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  transition: transform 0.3s ease;
}

.demo-card:hover {
  transform: translateY(-6px);
  border: 2px solid var(--primary-red);
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.4);
}

.demo-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .demo-content {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .demo-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .demo-title {
    font-size: 2rem;
  }
  .bonus-big {
    font-size: 2rem;
  }
}
