* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Thin.ttf") format("truetype");
  font-weight: 100;
  font-display: swap;
}
.section-title,
h1,
h2,
h3,
.bonus-card h3,
.about-subtitle,
.timer-title,
.hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

:root {
  --background: #000000;
  --foreground: #d5ffd0;
  --primary: #78b453;
  --primary-hover: #5ac43f;
  --text-muted: #b6eab2;
  --button-bg: #6dd94d;
  --button-text: #0a0a0a;
  --button-bg-hover: #5ac43f;
  --card-bg: #121212;
  --card-border: #6dd94d;
  --link: #6dd94d;
  --accent: #6dd94d;
}

body {
  font-family: "Lato", sans-serif;
  background-color: var(--background);
  color: #ffffff;
  line-height: 1.6;
}
html {
  scroll-behavior: smooth;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background-color: var(--background);
  color: var(--foreground);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--accent), #66e0c9, #e17dcf);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-transform: uppercase;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;

  transform: scale(1.05);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.6), 0 0 20px rgba(255, 0, 204, 0.4);
}
.bet {
  font-size: 1.2rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
}

.lang-btn {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
}

.lang-btn:hover {
  background-color: var(--primary);
  color: var(--button-text);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--foreground);
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--background);
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 1rem;
    display: none;
  }

  .main-nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .language-switcher {
    margin-top: 1rem;
  }

  .burger {
    display: flex;
  }
}
.hero-section {
  position: relative;
  background-color: var(--background);
  color: var(--foreground);
  padding: 8rem 1rem 6rem;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.hero-bg-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  background: url("images/hero.jpg") center / cover no-repeat fixed;
  filter: brightness(0.4) blur(4px);
  z-index: -2;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 255, 0, 0.114),
    transparent 60%
  );
  z-index: -1;
}

.decorative-sphere {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 0, 0.375), transparent);
  z-index: -1;
}

.sphere-1 {
  width: 300px;
  height: 300px;
  top: -50px;
  left: -100px;
}

.sphere-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -100px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--foreground);
  text-shadow: 0 0 30px #d5ffd051;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px var(--primary);
  }
  to {
    text-shadow: 0 0 25px var(--primary);
  }
}

.hero-subtitle {
  font-size: 1.7rem;
  margin: 1rem 0 0.5rem;
  font-weight: 800;
}

.hero-text {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-text .highlight {
  color: var(--primary);
  font-weight: bold;
}

.hero-cta {
  display: inline-block;
  background-color: var(--button-bg);
  color: var(--button-text);
  padding: 0.9rem 2rem;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 0 12px var(--primary);
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta:hover {
  background-color: var(--button-bg-hover);
  box-shadow: 0 0 16px var(--primary);
}
ul li {
  list-style: none;
}
.hero-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-features i {
  margin-right: 0.4rem;
  color: var(--primary);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .decorative-sphere {
    display: none;
  }
}

.timer-section {
  background: linear-gradient(45deg, #78b453, #5a8a3e);
  padding: 4rem 1rem;
  text-align: center;
  color: var(--foreground);
}
.container.timer-content {
  max-width: 900px;
}
.timer-title {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 15px var(--primary);
}

.timer-subtitle {
  font-size: 1.1rem;
  color: var(--foreground);
  margin: 0.5rem 0 2rem;
  font-weight: 800;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.count-box {
  background: var(--card-bg);
  color: var(--accent);
  border-radius: 12px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px var(--primary);
  animation: pulse 2s infinite;
}

.count-box span:first-child {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
}

.label {
  font-size: 0.8rem;
  color: var(--foreground);
  margin-top: 0.3rem;
}

.separator {
  font-size: 2rem;
  color: var(--background);
  font-weight: bold;
  margin-bottom: 1rem;
  user-select: none;
}

@media (max-width: 600px) {
  .count-box {
    width: 70px;
    height: 70px;
  }

  .count-box span:first-child {
    font-size: 1.4rem;
  }

  .label {
    font-size: 0.7rem;
  }

  .separator {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .timer-title {
    font-size: 1.4rem;
  }
}
.bonus-box {
  background: var(--background);
  padding: 3rem 1rem;
  text-align: center;
}

.bonus-container {
  background: #0f172a;
  border: 2px solid var(--primary);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
  padding: 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.bonus-title {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.bonus-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  justify-items: center;
  align-items: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--foreground);
  font-size: 1rem;
}

.bonus-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .bonus-list {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bonus-list li {
    justify-content: center;
  }
}

.games-section {
  padding: 4rem 1rem;
  background: var(--background);
  color: var(--foreground);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto;
  margin-top: 2rem;
  max-width: 900px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
}
.game-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.game-link:hover .game-card {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}
.game-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 280px;
  padding: 1.5rem;
  background: #0f172a;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.15);
  overflow: hidden;
}

.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-icon {
  font-size: 2rem;
}

.game-meta {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tag {
  background: var(--primary);
  color: var(--button-text);
  padding: 0.1rem 0.4rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: bold;
  white-space: nowrap;
}

.game-card h3 {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  color: var(--foreground);
}

.game-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.game-info {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
}

@media (max-width: 768px) {
  .game-card {
    padding: 1.2rem;
  }

  .game-info {
    justify-content: center;
  }
}

.bonuses-section {
  padding: 4rem 1rem;
  background: var(--background);
  color: var(--foreground);
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 0 15px var(--primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: stretch;
}

.bonus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2rem 1.5rem 1.5rem;
  background: #0f172a;
  border: 2px solid var(--primary);
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
  transition: transform 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 255, 0, 0.4);
}

.bonus-badge {
  position: absolute;
  top: -14px;
  right: -14px;
  background-color: var(--accent);
  color: #000;
  font-weight: bold;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.5);
  animation: pulse-scale 2s ease-in-out infinite,
    float-up 4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes pulse-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes float-up {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.bonus-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.bonus-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary);
  margin-bottom: 0.25rem;
}

.bonus-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.bonus-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  color: var(--foreground);
  font-size: 0.95rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bonus-details li {
  margin-bottom: 0.4rem;
  list-style: none;
  position: relative;
}

.btn-bonus {
  background: var(--primary);
  color: var(--button-text);
  padding: 0.9rem 1.5rem;
  border-radius: 60px;
  font-weight: bold;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 0 10px var(--primary);
  transition: background 0.3s ease;
  margin-top: auto;
}

.btn-bonus:hover {
  background: var(--primary-hover);
}

/* Адаптив */
@media (max-width: 1024px) {
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .btn-cta {
    width: 100%;
  }

  .bonus-list {
    grid-template-columns: 1fr;
  }
}
.btn-cta {
  display: inline-block;
  background: var(--button-bg);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
  animation: pulse 2s infinite;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-cta:hover {
  transform: scale(1.05);
  background: #00e600;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .btn-cta {
    font-size: 0.95rem;
    padding: 0.9rem 1.5rem;
  }
}
.earnings-section {
  padding: 4rem 1rem;
  background: var(--background);
  color: var(--foreground);
  text-align: center;
}

.earnings-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 0 15px var(--primary);
}

.earnings-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0.5rem 0 2rem;
}

.earnings-counters {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.earnings-counters {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  width: 100%;
}

.counter-box {
  background: #000000;
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  min-width: 240px;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.35);
}

.counter {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  text-shadow: 0 0 12px var(--primary);
  line-height: 1.1;
}

.counter-box .label {
  margin-top: 0.5rem;
  color: var(--foreground);
  font-weight: 600;
  font-size: 1rem;
}

.counter-box .label small {
  display: block;
  margin-top: 0.25rem;
  font-weight: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .earnings-counters {
    flex-direction: column;
    align-items: center;
  }

  .counter-box {
    width: 100%;
    max-width: 320px;
  }
}
.earnings-table {
  overflow-x: auto;
}

.winner-list {
  min-width: 500px;
}
.earnings-table {
  max-width: 600px;
  margin: 0 auto;
  background: #0f172a;
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 1rem 0;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.table-title {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.winner-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.winner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
}

.winner-row:first-child {
  border-top: none;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--button-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
}

.info {
  flex-grow: 1;
  text-align: left;
}

.info strong {
  display: block;
  font-size: 1rem;
  color: var(--foreground);
}

.info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.amount {
  font-weight: bold;
  color: #00ff8c;
  font-size: 1rem;
  margin-left: 1rem;
}

.time {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 1rem;
}

@media (max-width: 768px) {
  .winner-row {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    text-align: left;
  }

  .amount,
  .time {
    margin-left: auto;
    text-align: right;
  }
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid var(--accent);
}

.stars {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.reviewer-name {
  color: var(--foreground);
  font-weight: bold;
  margin-top: 1rem;
}

/* Footer */
footer {
  background: #000000;
  padding: 3rem 0;
  text-align: center;
  border-top: 2px solid var(--primary);
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.payment-method {
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--text-muted);
  color: var(--foreground);
  font-weight: bold;
}

.site-footer {
  padding: 4rem 1rem;
  background: #0d0d0d;
  color: var(--foreground);
  text-align: center;
  font-size: 1rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.withdraw-info {
  margin: 2rem 0;
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: bold;
  line-height: 1.4;
}

.footer-disclaimer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .payment-methods {
    gap: 0.5rem;
  }
  .withdraw-info {
    font-size: 1rem;
  }
  .footer-title {
    font-size: 1.1rem;
  }
}

.hidden {
  display: none;
}
.about-section {
  padding: 5rem 1rem;
  background: var(--background);
  color: var(--foreground);
}

.about-content {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 2px solid var(--primary);
  border-radius: 15px;
  padding: 3rem;
  margin-bottom: 3rem;
}

.about-subtitle {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1rem;
  color: var(--text-muted);
}

.about-safety {
  background: rgba(0, 255, 0, 0.08);
  border: 2px solid var(--primary);
  border-radius: 15px;
  padding: 2rem;
}

.safety-title {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.safety-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: var(--foreground);
}

.safety-list li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
}
.about-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .about-content {
    padding: 2rem 1.5rem;
  }

  .about-safety {
    padding: 1.5rem 1.2rem;
  }
}
.live-counter {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #0d0d0d;
  color: var(--foreground);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  animation: counterFadeIn 1.2s ease-out forwards 1.5s;
}

.counter-title {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  text-align: center;
}

.counter-amount {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary);
  text-align: center;
}

@keyframes counterFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .live-counter {
    bottom: 1rem;
    right: 1rem;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .counter-amount {
    font-size: 1.2rem;
  }
}
.referral-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--card-bg), #101010);
  color: var(--foreground);
}

.referral-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.referral-header {
  text-align: center;
}

.referral-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.referral-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.referral-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.referral-text-block {
  font-family: "Lato", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.referral-description {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.referral-conditions {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.referral-conditions li {
  margin-bottom: 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.referral-conditions i {
  color: var(--primary);
}

.btn-referral {
  display: inline-block;
  background-color: var(--button-bg);
  color: var(--button-text);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-referral:hover {
  background-color: var(--button-bg-hover);
}

.referral-image-block {
  display: flex;
  justify-content: center;
}

.referral-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0, 255, 100, 0.15);
}

.card-heading {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.card-money {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #66e0c9;
}

.card-users img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 5px;
  border: 2px solid var(--primary);
}

.card-users span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 15px;
}

@media (max-width: 992px) {
  .referral-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .referral-text-block {
    align-items: center;
  }
}
