* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Thin.ttf") format("truetype");
  font-weight: 100;
}

@font-face {
  font-family: "Russo One";
  src: url("fonts/RussoOne-Regular.ttf") format("truetype");
  font-weight: 400;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
:root {
  --bg-dark: #0b140e;
  --bg-card: #1a1f1a;
  --bg-soft: #151d15;

  --green-primary: #00b925;
  --green-hover: #199f01;
  --green-soft: #1c401b;

  /* Тексты */
  --text-main: #e8fef2;
  --text-muted: #b6d1c1;
  --text-dark: #0d0d0d;

  /* Акценты и маркеры */
  --accent-yellow: #ffef13;
  --accent-red: #ff4d4f;
  --accent-blue: #1da1f2;

  /* Градиенты */
  --gradient-green: linear-gradient(135deg, #2be116, #41cf09);
  --gradient-dark: linear-gradient(180deg, #0f0f0f 0%, #1a1f1a 100%);
}

.site-header {
  background: linear-gradient(180deg, #001e0a 0%, #034e03 100%);
  padding: 16px 0;
  box-shadow: 0 4px 20px rgba(0, 255, 128, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.logo {
  font-size: 28px;
  font-family: "Russo One", sans-serif;
  color: var(--green-primary);
  text-shadow: 2px 2px 1px rgb(1, 22, 1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  text-decoration: none;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary {
  background: var(--gradient-green);
  color: var(--text-dark);
  box-shadow: 0 0 16px rgba(0, 255, 128, 0.3);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 255, 128, 0.3),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 28px rgba(0, 255, 128, 0.5);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--green-primary);
  box-shadow: 0 0 8px rgba(0, 255, 128, 0.1);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 255, 128, 0.05) 0%,
    rgba(0, 255, 128, 0.1) 50%,
    rgba(0, 255, 128, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn-secondary:hover {
  background: var(--green-soft);
  box-shadow: 0 0 20px rgba(0, 255, 128, 0.3);
}

.btn-secondary:hover::before {
  opacity: 1;
}

.lang-switcher {
  display: flex;
  align-items: center;
  background: #1b1b1b;
  border-radius: 20px;
  padding: 5px 12px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 255, 128, 0.15);
}

.lang-link {
  text-decoration: none;
  font-size: 14px;
  padding: 0 4px;
  transition: color 0.3s ease;
  color: white;
}

.lang-link:hover,
.lang-link.active {
  color: var(--green-primary);
}

.lang-switcher .divider {
  margin: 0 6px;
  color: #555;
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .lang-switcher {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .logo {
    font-size: 22px;
  }

  .btn {
    font-size: 14px;
    padding: 9px 16px;
  }

  .lang-link {
    font-size: 13px;
  }
}
.neon-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  top: -10px;
  background: var(--green-primary);
  border-radius: 50%;
  opacity: 0.8;
  filter: drop-shadow(0 0 6px var(--green-primary));
  animation: floatDown linear forwards;
}

@keyframes floatDown {
  to {
    transform: translateY(120vh);
    opacity: 0;
  }
}

.hero-section {
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100vh;
  max-height: 2000px;
  display: flex;
  align-items: center;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: url("images/hero.jpg") center center / cover no-repeat;
  z-index: 0;
  will-change: transform;
  filter: blur(3px);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(15, 23, 15, 0.788) 0%,
    #0d3f127b 100%
  );
  z-index: 1;
}
.container.hero {
  position: relative;
  z-index: 2;
}
.trust-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: bold;
  background: var(--green-soft);
  color: var(--text-main);
  border-radius: 999px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Russo One", sans-serif;
}

.hero-title .highlight {
  color: #ffffff;
  font-size: 56px;
  font-weight: 900;
  font-family: "Russo One", sans-serif;
  text-shadow: -3px 0 #ff0040, 2px 0 #00ff51, 0 0 12px rgba(0, 255, 128, 0.2); /* мягкое неоновое свечение */
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
}

.hero-offer {
  font-size: 18px;
  color: var(--green-primary);
  font-weight: 600;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
}

.btn.with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: floatPulse 2.8s ease-in-out infinite;
}
@keyframes floatPulse {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-4px) scale(1.04);
    opacity: 0.95;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border: 1px solid var(--green-primary);
  box-shadow: 0 0 0 transparent;
}

.btn-outline:hover {
  background: var(--green-soft);
  box-shadow: 0 0 12px rgba(0, 255, 128, 0.2);
}

.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.stat-value {
  font-family: "Russo One", sans-serif;

  font-size: 42px;
  font-weight: bold;
  color: white;
  text-shadow: 0 2px 1px #05ca2c;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-title .highlight {
    font-size: 40px;
  }

  .hero-subtitle,
  .hero-offer {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn.with-icon {
    justify-content: center;
  }
  .hero-stats {
    gap: 20px;
  }

  .stat-value {
    font-size: 24px;
  }
}

.referral-section {
  padding: 80px 20px;
  background: var(--bg-dark);
  text-align: center;
}

.badge.referral {
  display: inline-block;
  background: var(--green-primary);
  color: var(--text-dark);
  font-weight: bold;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
}

.referral-heading {
  font-size: 36px;
  color: #fff;
  line-height: 1.4;
  font-family: "Russo One", sans-serif;
}

.referral-heading .green {
  color: var(--green-primary);
}

.referral-heading .gold {
  color: var(--accent-yellow);
}

.referral-subtext {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 780px;
  margin: 10px auto 40px;
}

.referral-card {
  display: flex;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 2px solid var(--green-soft);
  border-radius: 16px;
  padding: 50px 20px;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  box-shadow: 0 0 20px rgba(0, 255, 128, 0.331);
  max-width: 900px;
  margin: 0 auto;
}

.referral-left,
.referral-right {
  flex: 1 1 300px;
}

.timer-title {
  color: var(--green-primary);
  font-weight: bold;
  margin-bottom: 20px;
}

.countdown {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.time-segment {
  background: radial-gradient(
    circle at center,
    rgba(0, 255, 128, 0.08),
    transparent
  );
  border: 1px solid var(--green-primary);
  border-radius: 12px;
  padding: 12px 10px;
  width: 64px;
  box-shadow: 0 0 8px rgba(39, 223, 3, 0.339);
  transition: transform 0.3s ease;
}

.time-segment:hover {
  transform: scale(1.05);
  box-shadow: 0 0 14px rgba(0, 255, 128, 0.35);
}

.time-segment span {
  font-size: 24px;
  font-weight: bold;
  color: #05ca2c;
  display: block;
  font-family: "Russo One", sans-serif;
}

.time-segment small {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.referral-right {
  text-align: left;
}

.reward-icon {
  font-size: 32px;
  margin-bottom: 12px;
  color: var(--green-primary);
  text-align: center;
}

.reward-title {
  color: var(--accent-yellow);
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.reward-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reward-list li {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 12px;
}

.reward-list .green {
  color: var(--green-primary);
  font-weight: bold;
}

.reward-list .yellow {
  color: var(--accent-yellow);
  font-weight: bold;
}

.reward-list .red {
  color: var(--accent-red);
  font-weight: bold;
}

@media (max-width: 768px) {
  .referral-card {
    flex-direction: column;
    padding: 24px 16px;
    align-items: center;
  }

  .countdown {
    justify-content: center;
  }

  .reward-title,
  .timer-title {
    text-align: center;
  }

  .referral-right {
    text-align: center;
  }
}
.game-feature-section {
  padding: 80px 20px;
  background: var(--bg-dark);
  text-align: center;
}

.section-title {
  font-size: 38px;
  font-family: "Russo One", sans-serif;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-description {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 50px;
}

.game-card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--green-soft);
  border-radius: 14px;
  padding: 28px 20px;
  width: 300px;
  box-shadow: 0 0 12px rgba(0, 255, 128, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-card:hover {
  box-shadow: 0 0 20px rgba(0, 255, 128, 0.2);
}

.game-icon img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 10px #4ff08a75);
  animation: floatIcon 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

.game-title {
  font-family: "Russo One", sans-serif;
  color: var(--green-primary);
  margin-bottom: 10px;
}

.game-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.game-stat {
  background: var(--green-soft);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
  width: 100%;
}

.game-stat strong {
  display: block;
  color: var(--green-primary);
  font-size: 18px;
  font-weight: bold;
}

.game-stat span {
  color: var(--text-muted);
  font-size: 13px;
}

.all-games-btn {
  margin-top: 40px;
}

.all-games-btn .btn {
  padding: 12px 28px;
}
.btn-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  filter: drop-shadow(0 0 2px var(--green-primary));
}
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 22px;
  }

  .game-card {
    width: 100%;
    max-width: 330px;
  }
}
.bonus-section {
  padding: 80px 20px;
  background: var(--bg-dark);
  text-align: center;
}

.bonus-badge {
  display: inline-block;
  background: var(--accent-yellow);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.bonus-title {
  font-family: "Russo One", sans-serif;
  font-size: 38px;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 10px;
}

.bonus-title .yellow {
  color: var(--accent-yellow);
}

.bonus-title .green {
  color: var(--green-primary);
}

.bonus-subtext {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.bonus-call {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 40px;
  border: 1px solid var(--green-primary);
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 255, 128, 0.2);
}

.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid #00e67346;
  border-top: 3px solid var(--green-primary);
  border-radius: 12px;
  padding: 24px 18px;
  width: 250px;
  position: relative;
  box-shadow: 0 0 16px rgba(0, 255, 128, 0.05);
  transition: transform 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(0, 255, 128, 0.15);
}

.bonus-in {
  color: var(--green-primary);
  font-size: 20px;
  font-weight: bold;
}

.bonus-out {
  font-size: 28px;
  color: var(--accent-yellow);
  margin: 8px 0;
  font-family: "Russo One", sans-serif;
}

.bonus-out.highlight {
  color: var(--accent-yellow);
}

.bonus-out.ultra {
  color: var(--accent-red);
}

.arrow {
  font-size: 18px;
  color: var(--text-muted);
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 12px;
  font-weight: 700;
}

.badge.hot {
  background: var(--accent-yellow);
  color: #000;
}

.badge.vip {
  background: var(--accent-red);
  color: #fff;
}

.bonus-bar {
  height: 6px;
  border-radius: 10px;
  background: var(--green-soft);
  margin: 12px 0;
  position: relative;
  overflow: hidden;
}

.bonus-bar::before {
  content: "";
  display: block;
  height: 100%;
  background: var(--green-primary);
  position: absolute;
  left: 0;
  top: 0;
}

.bonus-bar.basic::before {
  width: 30%;
}

.bonus-bar.medium::before {
  width: 50%;
}

.bonus-bar.vip::before {
  width: 75%;
}

.bonus-bar.vip-full::before {
  width: 100%;
}

.bonus-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.btn-glow {
  background: var(--green-primary);
  color: #000;
  padding: 10px 16px;
  font-weight: 700;
  border-radius: 50px;
  display: inline-block;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 255, 128, 0.3);
}

.btn-glow:hover {
  background: var(--green-hover);
  box-shadow: 0 0 16px rgba(0, 255, 128, 0.5);
}

@media (max-width: 768px) {
  .bonus-grid {
    flex-direction: column;
    align-items: center;
  }

  .bonus-title {
    font-size: 24px;
  }

  .bonus-call {
    font-size: 16px;
    padding: 10px 18px;
  }
}
.bonus-terms {
  margin-top: 60px;
  padding: 30px 20px;
  border-radius: 16px;
  background: var(--bg-card);
  box-shadow: 0 0 12px rgba(0, 255, 128, 0.1);
}

.terms-title {
  color: var(--green-primary);
  font-size: 20px;
  text-align: center;
  font-family: "Russo One", sans-serif;
  margin-bottom: 20px;
}

.terms-grid {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.term-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
  gap: 10px;
}

.term-item img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 6px rgba(0, 255, 128, 0.4));
}

.term-item strong {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.term-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .terms-grid {
    flex-direction: column;
    align-items: center;
  }

  .term-item {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .timer {
    flex-wrap: wrap;
  }
  .nav-buttons {
    display: none;
  }
}

.fixed-deposit-btn {
  position: fixed;
  bottom: 20px;
  right: 0px;
  transform: translateX(-50%);
  z-index: 9999;
  background: linear-gradient(135deg, #00ff08, #a1f621);
  color: var(--text-dark);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-family: "Russo One", sans-serif;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 255, 128, 0.5);
  animation: pulse-glow 2.5s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.fixed-deposit-btn:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 128, 0.8);
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 255, 128, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 255, 128, 0.8);
  }
}

@media (max-width: 480px) {
  .fixed-deposit-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

.partners-section {
  padding: 80px 20px;
  color: var(--text-main);
  text-align: center;
}

.partners-header .badge {
  background: var(--accent-yellow);
  color: #000;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 30px;
  font-weight: bold;
  position: relative;
}

.partners-header .section-title {
  font-size: 36px;
  font-family: "Russo One", sans-serif;
  margin-bottom: 10px;
}

.partners-header .highlight {
  color: var(--green-primary);
}

.partners-sub {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 12px;
  margin: 20px auto 50px;
  max-width: 600px;
  box-shadow: 0 0 10px rgba(0, 255, 128, 0.1);
}

.partners-sub strong {
  display: block;
  font-size: 18px;
  color: var(--green-primary);
  margin-bottom: 6px;
}

.partners-body {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.partners-benefits {
  flex: 1;
  min-width: 300px;
}

.partners-subtitle {
  color: var(--green-primary);
  font-size: 22px;
  margin-bottom: 30px;
  font-family: "Russo One", sans-serif;
}

.benefit-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.benefit-list li strong {
  color: var(--accent-yellow);
}

.benefit-list img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 6px var(--green-primary));
}

.benefit-list p {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--text-muted);
}

.partners-table {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 30px 20px;
  flex: 1;
  min-width: 280px;
  box-shadow: 0 0 12px rgba(0, 255, 128, 0.05);
}

.table-title {
  font-size: 20px;
  color: var(--green-primary);
  text-align: center;
  margin-bottom: 20px;
  font-family: "Russo One", sans-serif;
}

.commission-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.commission-list li {
  background: var(--bg-soft);
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}

.commission-list .yellow {
  color: var(--accent-yellow);
}

.commission-list .red {
  color: var(--accent-red);
}

.partners-table .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  margin-top: 10px;
}

.partners-table .disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}

@media (max-width: 768px) {
  .partners-body {
    flex-direction: column;
    align-items: center;
  }

  .partners-benefits,
  .partners-table {
    width: 100%;
  }
}

.btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.partner-contact {
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
}

.contact-heading {
  font-size: 20px;
  color: var(--text-main);
  font-family: "Russo One", sans-serif;
  margin-bottom: 10px;
}

.contact-subtext {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--green-primary);
  color: var(--green-primary);
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: var(--green-soft);
  box-shadow: 0 0 12px rgba(0, 255, 128, 0.3);
  color: var(--text-main);
}

.btn-icon {
  width: 16px;
  height: 16px;
}
.about-section {
  padding: 60px 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 215, 0, 0.03),
    transparent 70%
  );
  color: var(--text-main);
}

.about-heading {
  text-align: center;
  color: var(--accent-yellow);
  font-size: 28px;
  margin-bottom: 2rem;
  font-family: "Russo One", sans-serif;
}

.about-subheading {
  color: var(--accent-yellow);
  font-size: 20px;
  margin: 2.5rem 0 1rem;
  font-weight: 600;
  font-family: "Russo One", sans-serif;
}
.about-body {
  max-width: 800px;
  margin: 0 auto;
}
.about-section p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 15px;
  color: var(--text-muted);
}

.about-section strong {
  color: var(--green-primary);
  font-weight: 600;
}
.site-footer {
  background: var(--bg-soft);
  padding: 60px 20px 30px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 16px;
  font-family: "Russo One", sans-serif;
}

.footer-col p {
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--green-primary);
  text-shadow: 0 0 4px rgba(0, 255, 128, 0.3);
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  color: #777;
}
