* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #1a5f1a 0%, #2d8f2d 50%, #ffd700 100%);
  color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-header {
  background: linear-gradient(90deg, #32cd32, #adff2f);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(34, 139, 34, 0.2);
  border-bottom: none;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.4), 0 0 8px rgba(50, 205, 50, 0.3);
  transition: transform 0.3s ease, text-shadow 0.3s ease;
  display: inline-block;
}

.logo:hover {
  transform: scale(1.08);
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5), 0 0 12px rgba(124, 252, 0, 0.5);
}

.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #111;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, #32cd32, #ffd700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.main-nav a:hover {
  color: #000;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a:hover {
  color: #000;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.language-switcher button {
  background: transparent;
  border: 1px solid rgba(47, 47, 47, 0.4);
  color: #212121;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-switcher button:hover {
  background: rgba(183, 219, 4, 0.46);
  color: #000;
}

.header-buttons {
  display: flex;
  gap: 12px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
  }
}

.header-buttons .btn {
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border: 2px solid #444;
  transition: transform 0.3s;
}
.header-buttons .btn:hover {
  transform: scale(1.05);
}

.btn-primary {
  background: linear-gradient(135deg, #ffa500, #ffd700);
  color: #000;
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.673);
}

.btn-primary:hover {
  background: #ffc107;
  box-shadow: 0 0 18px rgba(255, 193, 7, 0.8);
  animation: none;
}

.btn-secondary {
  background: linear-gradient(135deg, #5ff700, #cffc07);
  color: #111111;
  border: none;
  box-shadow: 0 0 10px rgba(50, 205, 50, 0.574);
}

.btn-secondary:hover {
  background: #7cfc00;
  color: #000;
  box-shadow: 0 0 16px rgba(124, 252, 0, 0.8);
  animation: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  height: 3px;
  background: #ffffff;
  width: 100%;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    width: 100%;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .header-buttons {
    display: none;
  }

  .language-switcher {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav.active {
    display: block;
    margin-top: 10px;
  }
}
.hero-section {
  background: linear-gradient(135deg, #1a5f1a, #32cd32);
  color: white;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(255, 215, 0, 0.08),
      transparent 70%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(255, 255, 255, 0.04),
      transparent 70%
    );
  z-index: 0;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
}

.hero-content {
  flex: 2;
  max-width: 550px;
  padding-right: 20px;
}

.tagline {
  font-size: 14px;
  text-transform: uppercase;
  color: #adff2f;
  letter-spacing: 1px;
  border-left: 3px solid #adff2f;
  padding-left: 5px;
}

.hero-title {
  font-size: 62px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 22px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.hero-subtitle strong {
  color: #ffa500;
}

.hero-note {
  font-size: 15px;
  color: #ddd;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-cta {
  background: linear-gradient(to right, #ffa500, #ffd700);
  color: #111;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
  position: relative;
  animation: pulseGlow 2s infinite;
  transition: transform 0.3s;
}

.btn-cta:hover {
  transform: scale(1.05);
  animation: none;
}

.security-label {
  font-size: 13px;
  color: #fff8b3;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.hero-stats div {
  text-align: center;
}

.hero-stats strong {
  font-size: 28px;
  color: #ffd700;
}

.hero-stats span {
  font-size: 13px;
  color: #ccc;
}
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 320px;
}

.card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  color: #fff;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
  z-index: 0;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 21px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.card p {
  margin: 0;
  font-size: 16px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.icon {
  font-size: 24px;
  margin-right: 16px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.2));
}

.arrow {
  font-size: 20px;
  color: #ffd700;
  font-weight: bold;
  position: relative;
  z-index: 1;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.card:hover .arrow {
  transform: translateX(4px);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.926);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
  }
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
  }
  .hero-content,
  .hero-cards {
    width: 100%;
  }
  .hero-title {
    font-size: 42px;
  }
}
.bonus-hero {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.bonus-card-glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  padding: 50px 30px;
  max-width: 1000px;
  width: 100%;
  text-align: center;
  color: white;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: fadeSlideUp 0.9s ease-out both;
}

.bonus-header.cta {
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 255, 255, 0.2);
  animation: popText 0.6s ease both;
  text-align: center;
}

.bonus-amount.cta {
  font-size: 62px;
  font-weight: 900;
  color: #ffa500;
  background: linear-gradient(90deg, #f1fe00, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 2px rgba(67, 44, 2, 0.9), 0 4px 12px rgba(0, 0, 0, 0.4),
    0 0 2px rgba(17, 21, 1, 0.457);
  margin-bottom: 24px;
  animation: glowScale 2.5s infinite ease-in-out;
  transition: transform 0.3s ease;
}

@keyframes glowScale {
  0% {
    transform: scale(1);
    text-shadow: 0 0 8px rgba(255, 166, 0, 0.497);
  }
  50% {
    transform: scale(1.07);
    text-shadow: 0 0 18px rgba(255, 166, 0, 0.59),
      0 0 28px rgba(255, 255, 255, 0.174);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 8px rgba(255, 166, 0, 0.59);
  }
}

.bonus-subtext {
  font-size: 18px;
  color: #f0f0f0;
  font-weight: 500;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 32px;
}

@keyframes glowPulse {
  0% {
    text-shadow: 0 0 8px rgba(255, 165, 0, 0.8);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 165, 0, 1),
      0 0 40px rgba(255, 255, 255, 0.3);
  }
  100% {
    text-shadow: 0 0 8px rgba(255, 165, 0, 0.8);
  }
}

@keyframes popText {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.bonus-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.bonus-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.bonus-tag:hover {
  background: rgba(255, 255, 255, 0.18);
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .bonus-card-glass {
    padding: 40px 20px;
  }

  .bonus-tag {
    font-size: 13px;
    padding: 10px 16px;
  }
  .bonus-amount.cta {
    font-size: 36px;
  }
}
.btn-bonus-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 18px 35px;
  font-size: 16px;
  font-weight: 800;
  color: #111;
  background: linear-gradient(135deg, #ff9900, #ffd700);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(255, 179, 0, 0.6);
  animation: bonusPulse 2.5s infinite ease-in-out;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-bonus-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(255, 179, 0, 0.9);
  animation: none;
}

@keyframes bonusPulse {
  0% {
    box-shadow: 0 0 12px rgba(255, 193, 7, 0.6);
  }
  50% {
    box-shadow: 0 0 24px rgba(255, 193, 7, 1);
  }
  100% {
    box-shadow: 0 0 12px rgba(255, 193, 7, 0.6);
  }
}

:root {
  --primary-yellow: #ffd700;
  --amber: #ffa500;
  --dark-gray: #1a5f1a;
  --card-bg: rgba(50, 205, 50, 0.2);
}

.site-footer {
  color: #1a1a1a;
  font-family: "Segoe UI", sans-serif;
  padding: 60px 20px 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.footer-column h4 {
  color: #ffd700;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
  font-size: 16px;
}
.footer-column a {
  color: #121212;
  text-decoration: none;
  position: relative;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-column a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 0;
  background: #ffd700;
  transition: width 0.3s ease;
}

.footer-column a:hover {
  transform: scale(1.05);
}

.footer-column a:hover::after {
  width: 100%;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #181818;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #777;
}

@media (max-width: 600px) {
  .footer-container {
    gap: 24px;
  }

  .footer-column h4 {
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}
.sports-section {
  padding: 80px 20px;
  color: white;
  font-family: "Segoe UI", sans-serif;
  text-align: center;
}

.section-title {
  text-align: center;
  font-size: 2.7rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 6px #33333357;
}

.section-subtitle {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.sports-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px 22px;
  border-radius: 20px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.sports-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 24px rgba(173, 255, 47, 0.25);
}

.icon-circle {
  font-size: 32px;
  background: #adff2f;
  color: #000;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 12px rgba(173, 255, 47, 0.4);
}

.sports-card h3 {
  color: #adff2f;
  font-size: 28px;
  margin-bottom: 14px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 6px #33333357;
}

.sports-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  color: #e8ffe0;
  font-size: 16px;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ffd700;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
}

.badge.new {
  background: #ffa500;
}

.sports-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 26px;
  font-weight: 800;
  font-size: 16px;
  border-radius: 50px;
  border: none;
  color: #1a1a1a;
  background: linear-gradient(135deg, #ffd700, #ffb300, #ffea00);
  background-size: 300% 300%;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseGlow 2.5s infinite ease-in-out, gradientFlow 6s ease infinite;
  box-shadow: 0 0 12px rgba(255, 221, 0, 0.3);
  overflow: hidden;
  z-index: 1;
}

.sports-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 221, 0, 0.6), 0 0 40px rgba(255, 241, 118, 0.5);
}

.cta-center {
  margin-top: 40px;
}

.cta-full-btn {
  display: inline-block;
  background: var(--amber);
  color: #000;
  padding: 14px 36px;
  font-weight: bold;
  border-radius: 50px;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
  transition: all 0.3s ease;
}

.cta-full-btn:hover {
  background: var(--primary-yellow);
}

.cta-note {
  color: #aaa;
  font-size: 14px;
  margin-top: 10px;
}

.game-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.game-card-link:hover .game-card {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.1);
}

.btn-play {
  position: relative;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 14px;
  border: none;
  color: #000;
  background: linear-gradient(
    135deg,
    var(--primary-yellow),
    var(--amber),
    var(--light-yellow)
  );
  background-size: 300% 300%;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseGlow 2.5s infinite ease-in-out, gradientFlow 6s ease infinite;
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.3);
  overflow: hidden;
  z-index: 1;
}

.btn-play:hover {
  background: var(--amber);
}
.games-cta {
  position: relative;
  background: url("images/cta.jpg") center center / cover no-repeat;
  padding: 80px 20px;
  text-align: center;
  color: white;
  overflow: hidden;
  margin: 0px auto;
}

.games-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 67, 0, 0.507);
  backdrop-filter: blur(5px);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.games-cta h2 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  color: white;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.5px;
}

.games-cta p {
  font-size: 22px;
  color: #ffffff;
  line-height: 1.75;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-btn {
  position: relative;
  padding: 18px 29px;
  font-weight: 700;
  font-size: 18px;
  border-radius: 14px;
  border: none;
  color: #000;
  background: linear-gradient(
    135deg,
    var(--primary-yellow),
    var(--amber),
    var(--light-yellow)
  );
  background-size: 300% 300%;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseGlow 2.5s infinite ease-in-out, gradientFlow 6s ease infinite;
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.3);
  overflow: hidden;
  z-index: 1;
}

.cta-btn:hover {
  background: var(--amber);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

@media (max-width: 600px) {
  .games-cta h2 {
    font-size: 24px;
  }

  .games-cta p {
    font-size: 14px;
  }

  .cta-btn {
    padding: 12px 26px;
    font-size: 15px;
  }
}

.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.floating-element {
  position: absolute;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  animation-name: float;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.el-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-duration: 6s;
  animation-delay: -2s;
}

.el-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 10%;
  animation-duration: 6s;
  animation-delay: -4s;
}

.el-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-duration: 6s;
  animation-delay: -1s;
}

.el-4 {
  width: 39.3134px;
  height: 39.3134px;
  left: 31.8649%;
  top: 54.4679%;
  animation-duration: 6.19702s;
  animation-delay: 1.39522s;
}

.el-5 {
  width: 72.6511px;
  height: 72.6511px;
  left: 65.7825%;
  top: 79.1798%;
  animation-duration: 6.10617s;
  animation-delay: 0.819287s;
}

.el-6 {
  width: 78.0009px;
  height: 78.0009px;
  left: 96.2684%;
  top: 32.6103%;
  animation-duration: 7.17224s;
  animation-delay: 0.435722s;
}

.geo-info-section {
  background: linear-gradient(135deg, #1a5f1a, #32cd32);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.geo-info-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 40px 30px;
  max-width: 1200px;
  width: 100%;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  color: white;
}
.geo-info-title {
  text-align: center;
  font-size: 2.7rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 6px #33333357;
}

.geo-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.geo-block {
  flex: 1;
  min-width: 260px;
  border-left: 2px solid var(--primary-yellow);
  padding: 24px 20px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.geo-block:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.geo-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: #adff2f;
  margin-bottom: 12px;
}

.geo-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #f3f3f3;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .geo-columns {
    flex-direction: column;
  }
  .geo-info-title {
    font-size: 24px;
  }
  .geo-block {
    padding: 20px;
  }
}
