:root {
  --primary-purple: #2d1b69;
  --secondary-purple: #4a148c;
  --light-purple: #7b1fa2;
  --accent-lilac: #9c27b0;
  --text-white: #ffffff;
  --text-light: #e1bee7;
  --gradient-main: linear-gradient(135deg, #2d1b69, #4a148c, #7b1fa2);
  --gradient-accent: linear-gradient(45deg, #9c27b0, #7b1fa2);
}
html {
  scroll-behavior: smooth;
}
ul li {
  list-style: none;
}
@font-face {
  font-family: "Kode Mono";
  src: url("fonts/KodeMono-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
h1,
h2,
h3,
.section-title {
  font-family: "Kode Mono", monospace;
  font-weight: 500;
  letter-spacing: 0.5px;
}

body,
p,
a,
li {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--gradient-main);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: var(--gradient-main);
  color: var(--text-white);
  padding: 1rem 0;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-white);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 1rem;
  }
}

nav.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--text-white);
  font-weight: 500;
  position: relative;
  padding: 6px 12px;
  transition: all 0.3s ease;
  border-radius: 40px;
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: linear-gradient(135deg, #9c27b0, #e040fb);
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.3s ease;
  z-index: -1;
  filter: blur(4px);
}

.nav-link:hover {
  color: #fff;
  background: linear-gradient(135deg, #9c27b0, #e040fb);
  box-shadow: 0 0 10px #e040fb55, 0 0 20px #9c27b055;
}

.nav-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.lang-switcher {
  display: flex;
  gap: 0.5rem;
  margin-left: 1rem;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--text-light);
  color: var(--text-light);
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: background 0.3s;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--gradient-accent);
  color: var(--text-white);
  border-color: transparent;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .lang-switcher {
    margin-top: 1rem;
  }
}

.hero {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
  background: var(--gradient-main);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/hero-bg.jpeg") center/cover no-repeat;
  filter: blur(4px) brightness(0.7);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(45, 27, 105, 0.7),
    rgba(74, 20, 140, 0.8)
  );
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: var(--text-white);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff, #e1bee7, #9c27b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s ease-out both;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.earning-highlight {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: 16px;
  margin: 20px 0;
  color: var(--text-white);
}

.earning-highlight strong {
  color: #ffeb3b;
}

.earning-highlight em {
  display: block;
  margin-top: 1rem;
  color: #ffd54f;
  font-style: italic;
}

.cta-button {
  display: inline-block;
  margin-top: 30px;
  background: var(--gradient-accent);
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(156, 39, 176, 0.4);
  transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
  transform: translateY(-3px);
  background: linear-gradient(45deg, #7b1fa2, #9c27b0);
}

.timer {
  margin-top: 40px;
  font-size: 1rem;
  color: #ffccbc;
  font-weight: 500;
}

@media (max-width: 768px) {
  .realtime-counter,
  .earning-highlight {
    padding: 1.2rem;
  }

  .cta-button {
    width: 100%;
    max-width: 320px;
    font-size: 14px;
  }
}
.realtime-counter {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  margin: 2rem auto;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 0 30px rgba(156, 39, 176, 0.15);
  animation: fadeInUp 0.8s ease-out both;
}

.counter-title {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.counter-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #76ff03;
  text-shadow: 0 0 15px #76ff03;
  animation: pulseGlow 2s infinite ease-in-out;
}

.counter-subtext {
  font-size: 1rem;
  color: #ccc;
  margin-top: 1rem;
}

/* Анимации */
@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 6px #76ff03;
  }
  50% {
    text-shadow: 0 0 18px #76ff03;
  }
  100% {
    text-shadow: 0 0 6px #76ff03;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .realtime-counter {
    padding: 1.5rem 1rem;
  }

  .counter-value {
    font-size: 2rem;
  }
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: var(--text-white);
  position: relative;
}

.section-title::after {
  content: "";
  width: 100px;
  height: 4px;
  background: var(--gradient-accent);
  display: block;
  margin: 20px auto;
  border-radius: 2px;
}
.game-cta {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(45deg, #7b1fa2, #9c27b0);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(156, 39, 176, 0.5);
  transition: transform 0.2s, box-shadow 0.3s;
  animation: pulseBtn 2s infinite ease-in-out;
}

.game-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(156, 39, 176, 0.8);
}

@keyframes pulseBtn {
  0% {
    box-shadow: 0 0 10px rgba(156, 39, 176, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.9);
  }
  100% {
    box-shadow: 0 0 10px rgba(156, 39, 176, 0.4);
  }
}

@media (max-width: 480px) {
  .game-cta {
    width: 100%;
    text-align: center;
  }
}

.games {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #2d1b69, #4a148c);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.games .section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff, #e1bee7, #9c27b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out both;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
}

.game-card {
  position: relative;
  padding: 2rem;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  border: 2px solid var(--accent-lilac);
  box-shadow: 0 0 25px rgba(155, 39, 176, 0.664);
  animation: fadeInCard 0.9s ease both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to top right,
      rgba(18, 18, 18, 0.7),
      rgba(44, 0, 56, 0.6)
    ),
    url("images/games.jpeg") center/cover no-repeat;
  filter: blur(3px);
  z-index: -1;
}

.game-card * {
  position: relative;
  z-index: 1;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(156, 39, 176, 0.4);
}

@keyframes glowingBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.game-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
  animation: bounceIcon 2s infinite ease-in-out;
}

.game-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #76ff03;
  text-shadow: 0 0 15px #76ff03;
  animation: pulseGlow 2s infinite ease-in-out;
}

.game-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.5;
}

@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 480px) {
  .games .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .game-card {
    padding: 1.5rem;
  }

  .game-icon {
    font-size: 2.4rem;
  }

  .game-card h3 {
    font-size: 1.15rem;
  }
}

.bonus-section {
  padding: 80px 20px;
  background: radial-gradient(circle at center, #4a148c, #2d1b69);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
  background: linear-gradient(45deg, #ffffff, #e1bee7, #9c27b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from {
    text-shadow: 0 0 10px rgba(156, 39, 176, 0.6);
  }
  to {
    text-shadow: 0 0 30px rgba(156, 39, 176, 1);
  }
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 25px rgba(124, 77, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(12px);
  animation: fadeInCard 0.8s ease both;
}

.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(156, 39, 176, 0.3);
}

.bonus-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.bonus-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: #eaefe6;
  margin-bottom: 1rem;
  text-shadow: 0 0 6px #74ff03c0, 0 0 12px #74ff037a, 0 0 18px #74ff0364,
    0 0 25px rgba(118, 255, 3, 0.4);

  animation: neonPulse 2.5s infinite ease-in-out,
    slightWiggle 4s infinite ease-in-out;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease;
}

@keyframes neonPulse {
  0%,
  100% {
    text-shadow: 0 0 6px #76ff03, 0 0 12px #76ff03, 0 0 18px #76ff03,
      0 0 25px rgba(118, 255, 3, 0.4);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 10px #b2ff59, 0 0 20px #b2ff59, 0 0 30px #b2ff59,
      0 0 40px rgba(178, 255, 89, 0.5);
    transform: scale(1.05);
  }
}

@keyframes slightWiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(0.5deg);
  }
  75% {
    transform: rotate(-0.5deg);
  }
}

.bonus-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

.bonus-card strong {
  color: #ffd54f;
  display: inline-block;
  margin-bottom: 0.5rem;
}

@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .bonus-card {
    padding: 1.5rem;
  }

  .bonus-amount {
    font-size: 1.5rem;
  }
}
.referral {
  position: relative;
  padding: 80px 20px;
  color: var(--text-white);
  overflow: hidden;
  z-index: 0;
}

.referral::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/refferal.jpeg") center/cover no-repeat;
  filter: blur(4px) brightness(0.6);
  z-index: -2;
}

.referral::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(45, 27, 105, 0.6);
  z-index: -1;
}

.referral-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.referral-card {
  background: rgba(156, 39, 176, 0.1);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--accent-lilac);
  position: relative;
  transition: all 0.3s;
}

.referral-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(156, 39, 176, 0.3);
}

.referral-card.premium {
  background: var(--gradient-accent);
  transform: scale(1.08);
  border-color: #00ff94;
  box-shadow: 0 20px 50px rgba(156, 39, 176, 0.5);
}

.premium-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(45deg, #ff1744, #e91e63);
  color: var(--text-white);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.9rem;
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
  background: radial-gradient(circle, #4a148c, #2d1b69);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.review-card {
  background: rgba(156, 39, 176, 0.1);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--accent-lilac);
  transition: all 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: #00ff94;
  box-shadow: 0 15px 35px rgba(156, 39, 176, 0.3);
}

.review-stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.review-author {
  font-weight: bold;
  color: var(--accent-lilac);
  margin-top: 15px;
}

/* Article Section */
.article-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2d1b69, #4a148c);
}

.article-content {
  background: rgba(156, 39, 176, 0.1);
  backdrop-filter: blur(15px);
  padding: 50px;
  border-radius: 25px;
  margin-top: 40px;
  border: 1px solid var(--accent-lilac);
}

.article-content h3 {
  color: var(--text-light);
  margin: 30px 0 15px 0;
  font-size: 1.6rem;
}

.article-content h4 {
  color: #00ff94;
  margin: 25px 0 10px 0;
  font-size: 1.3rem;
}

/* Footer */
footer {
  background: linear-gradient(180deg, #2d1b69, #1a0f3d);
  padding: 60px 0 30px 0;
  border-top: 2px solid var(--accent-lilac);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--accent-lilac);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--accent-lilac);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--accent-lilac);
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .referral-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .referral-card.premium {
    transform: scale(1);
  }

  .nav-links {
    display: none;
  }
}

/* Language Content Toggle */
.lang-content {
  display: none;
}

.lang-content.active {
  display: block;
}

.seo-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
