* {
  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: "Montserrat";
  src: url("fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
body {
  background: linear-gradient(135deg, #0a4d3a 0%, #1a6b4a 50%, #2d8a5a 100%);
  color: white;
  overflow-x: hidden;
  line-height: 1.6;
  font-family: "Lato", sans-serif;
  font-weight: 400;
}
h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.btn-primary,
.bonus-highlight,
.hero-stat,
.countdown-timer {
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: rgba(0, 0, 0, 0.4);
  padding: 15px 0;
  width: 100%;

  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: baseline;
  font-family: "Montserrat", sans-serif;
  user-select: none;
}

.logo-main {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 255, 255, 0.2); /* мягкое свечение */
}

.logo-highlight {
  color: #00cc66;
  text-shadow: 0 0 4px rgba(0, 200, 190, 0.4); /* лёгкий неон */
}

.logo-sub {
  font-size: 0.9rem;
  font-weight: 600;
  color: #b0b0b0;
  letter-spacing: 1px;
  margin-top: 4px;
}

.lang-switch {
  background: transparent;
  border: 2px solid #00ff88;
  color: #00ff88;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  font-weight: bold;
}

.lang-switch:hover {
  background: #00ff88;
  color: black;
  transform: scale(1.05);
}
.license-block {
  background: linear-gradient(
    to right,
    rgba(0, 255, 136, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  padding: 20px 0;
  border-top: 1px solid rgba(0, 255, 136, 0.1);
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
  font-family: inherit;
}

.license-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 10px 20px;
}

.license-logo {
  font-size: 1.8rem;
  color: #00ff88;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.license-text {
  font-size: 1rem;
  font-weight: 500;
  color: #e0e0e0;
}

.license-number {
  font-size: 0.9rem;
  color: #999999;
}

.ssl-badge {
  font-size: 1rem;
  color: #00ff88;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .license-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .license-logo,
  .ssl-badge {
    margin-bottom: 8px;
  }
}
.hero {
  padding: 80px 0;
  text-align: center;
  position: relative;
  background: radial-gradient(
    circle at center,
    rgba(0, 255, 136, 0.1) 0%,
    transparent 70%
  );
}
.container-hero {
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 25px;
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
  background: linear-gradient(45deg, #00ff88, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 40px;
  opacity: 0.9;
  color: #cccccc;
}

.mega-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  color: white;
  font-size: 22px;
  font-weight: bold;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  margin: 20px 0;
  text-align: center;
  transition: transform 0.2s ease;
  animation: megaPulse 2s infinite;
}

.mega-button:hover {
  transform: scale(1.05);
}

.mega-text {
  font-size: 22px;
  font-weight: bold;
}

.bonus-highlight {
  font-size: 16px;
  font-weight: 600;
  color: #ffff00;
  margin-top: 4px;
}

@keyframes megaPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.6);
  }
}

.mega-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: slideLight 3s infinite;
}

@keyframes slideLight {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2.8rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .mega-button {
    padding: 14px 28px;
    font-size: 20px;
  }

  .mega-text {
    font-size: 20px;
  }

  .bonus-highlight {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .mega-button {
    padding: 12px 20px;
    font-size: 16px;
  }

  .mega-text {
    font-size: 16px;
  }

  .bonus-highlight {
    font-size: 13px;
  }
}

.bonus-highlight {
  display: block;
  font-size: 16px;
  margin-top: 5px;
  color: #ffd700;
  text-shadow: 0 0 10px #ffd700;
}

.hero-stats {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  color: #00ff88;
  font-weight: bold;
}

/* Games Section */
.games-section {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.2);
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 50px;
  color: #00ff88;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.game-card:hover::before {
  opacity: 0.15;
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: #00ff88;
  box-shadow: 0 25px 50px rgba(0, 255, 136, 0.3);
}

.game-image {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.game-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #00ff88;
  font-weight: bold;
}

.game-rtp {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 20px;
  display: inline-block;
  border: 1px solid #ffd700;
}

.game-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.play-demo {
  background: transparent;
  border: 2px solid #00ff88;
  color: #00ff88;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.play-demo:hover {
  background: #00ff88;
  color: black;
  transform: scale(1.05);
}

.play-real {
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.play-real:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}
.game-description {
  opacity: 0.9;
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.5;
}

.game-card {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85),
    rgba(0, 255, 136, 0.05)
  );
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid rgba(0, 255, 136, 0.15);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: #00ff88;
  box-shadow: 0 20px 45px rgba(0, 255, 136, 0.2);
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #00ff88, #00cc66);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
  border-radius: inherit;
}
.loyalty-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.02),
    rgba(255, 255, 255, 0.01)
  );
}

.loyalty-title {
  color: #00ff88;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: bold;
}

.loyalty-level {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #00ff88;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #ffffff;
}
.demo-section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 40px;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.demo-card {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8),
    rgba(0, 255, 136, 0.05)
  );
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(0, 255, 136, 0.15);
  transition: all 0.3s ease;
}

.demo-card:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
  box-shadow: 0 12px 30px rgba(0, 255, 136, 0.2);
}

.demo-title {
  color: #00ff88;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.demo-description {
  color: #e0e0e0;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Sports Section */
.sports-section {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.1);
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.sport-card {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  padding: 25px;
  border: 2px solid rgba(0, 255, 136, 0.3);
  transition: all 0.3s;
}

.sport-card:hover {
  border-color: #00ff88;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
}

.sport-title {
  color: #00ff88;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.match {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s;
}

.match:hover {
  background: rgba(0, 255, 136, 0.1);
}

.odds {
  background: #00ff88;
  color: black;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  min-width: 60px;
  text-align: center;
}

/* Bonuses Section */
.bonuses-section {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.3);
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.bonus-card {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.1),
    rgba(0, 204, 102, 0.1)
  );
  border: 3px solid #00ff88;
  border-radius: 25px;
  padding: 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(0, 255, 136, 0.3),
    transparent
  );
  animation: rotate 6s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.bonus-content {
  position: relative;
  z-index: 2;
  background: rgba(10, 77, 58, 0.95);
  border-radius: 20px;
  padding: 25px;
}

.bonus-amount {
  font-size: 3rem;
  color: #00ff88;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 0 0 20px #00ff88;
}

.bonus-description {
  margin-bottom: 25px;
  opacity: 0.9;
  font-size: 1.1rem;
}

.winners-section {
  padding: 80px 0;
}

.winners-ticker {
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.winners-list {
  display: flex;
  gap: 50px;
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.winner-item {
  flex: 0 0 280px;
  text-align: center;
  background: rgba(0, 255, 136, 0.08);
  padding: 22px;
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 5px 20px rgba(0, 255, 136, 0.05);
  transition: transform 0.3s;
}

.winner-item:hover {
  transform: scale(1.05);
  border-color: #00ff88;
}

.winner-amount {
  color: #00ff88;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.winner-game {
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.winner-location {
  opacity: 0.8;
  font-size: 0.9rem;
  color: #cccccc;
}

.winner-time {
  font-size: 0.8rem;
  color: #00ff88;
  margin-top: 6px;
  opacity: 0.6;
}
.referral-section {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.05),
    rgba(255, 142, 83, 0.05)
  );
}

.referral-content {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 20px;
}

.referral-title {
  color: #ff6b35;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.referral-subtitle {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #00ff88;
  font-weight: 600;
}

.referral-description {
  margin-bottom: 30px;
  opacity: 0.9;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
}

.countdown-box {
  background: rgba(0, 0, 0, 0.45);
  padding: 20px;
  border-radius: 15px;
  margin: 30px 0;
  border: 2px solid #ff6b35;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.08);
}

.countdown-text {
  font-size: 1.2rem;
  color: #ff6b35;
  margin-bottom: 10px;
  font-weight: 500;
}

.countdown-timer {
  font-size: 1.8rem;
  color: #00ff88;
  font-weight: bold;
  text-shadow: 0 0 6px rgba(0, 255, 136, 0.3);
}

.referral-button {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
}

.payment-section {
  padding: 80px 0;
}

.payment-highlight {
  text-align: center;
  margin-bottom: 50px;
}

.payment-subtitle {
  color: #00ff88;
  font-size: 1.7rem;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(0, 255, 136, 0.2);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  max-width: 960px;
  margin: 0 auto;
}

.payment-method {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  padding: 26px 20px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 rgba(0, 255, 136, 0.2);
  backdrop-filter: blur(4px);
}

.payment-method:hover {
  border-color: #00ff88;
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 255, 136, 0.15);
}

.payment-icon {
  font-size: 2.7rem;
  margin-bottom: 15px;
  color: #00ff88;
  text-shadow: 0 0 4px rgba(0, 255, 136, 0.3);
}

.payment-method h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: bold;
}

.payment-method p {
  font-size: 0.9rem;
  opacity: 0.8;
  color: #cccccc;
  margin-bottom: 4px;
}

/* Trust Section */
.trust-section {
  padding: 80px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
}

.trust-card {
  text-align: center;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4),
    rgba(0, 255, 136, 0.1)
  );
  border-radius: 20px;
  border: 2px solid rgba(0, 255, 136, 0.3);
  transition: all 0.3s;
}

.trust-card:hover {
  border-color: #00ff88;
  transform: translateY(-5px);
}

.trust-number {
  font-size: 3rem;
  color: #00ff88;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.trust-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Customer Reviews */
.reviews-section {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.2);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.review-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(0, 255, 136, 0.05)
  );
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(0, 255, 136, 0.2);
  transition: all 0.3s;
}

.review-card:hover {
  border-color: #00ff88;
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #00ff88, #00cc66);
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: black;
  font-size: 1.2rem;
}

.review-info h4 {
  font-weight: bold;
  margin-bottom: 5px;
}

.review-stars {
  color: #ffd700;
  font-size: 1.1rem;
}

.review-text {
  line-height: 1.6;
  opacity: 0.9;
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}

.chat-button {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #00ff88, #00cc66);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
  animation: chatBounce 3s infinite;
  color: black;
  font-size: 1.8rem;
  transition: all 0.3s;
  text-decoration: none;
}

.chat-button:hover {
  transform: scale(1.1);
}

@keyframes chatBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  60% {
    transform: translateY(-6px);
  }
}

/* Article Section */
.article-section {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.1);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 16px;
}

.article-content h2 {
  color: #00ff88;
  margin: 40px 0 20px;
  font-size: 2rem;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.article-content h3 {
  color: #00cc66;
  margin: 30px 0 15px;
  font-size: 1.5rem;
}

.article-content p {
  margin-bottom: 20px;
  opacity: 0.9;
  text-align: justify;
}
.loyalty-description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.2rem;
  opacity: 0.9;
  color: #e0e0e0;
}

.loyalty-levels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.loyalty-level {
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  width: 280px;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.05);
  transition: transform 0.3s ease;
}

.loyalty-level:hover {
  transform: translateY(-5px);
  border-color: #00ff88;
  box-shadow: 0 15px 30px rgba(0, 255, 136, 0.15);
}

.loyalty-title {
  color: #00ff88;
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.loyalty-deposit {
  font-size: 1.5rem;
  color: #ffd700;
  font-weight: bold;
}

.loyalty-arrow {
  margin: 10px 0;
  font-size: 1.3rem;
  color: #ffffff;
}

.loyalty-reward {
  font-size: 2rem;
  color: #00ff88;
  font-weight: bold;
}

.footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 50px 0 25px;
  margin-top: 80px;
  border-top: 3px solid #00ff88;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #00ff88;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
  opacity: 0.8;
  margin-bottom: 10px;
  text-decoration: none;
  color: white;
  display: block;
  transition: all 0.3s;
}

.footer-section a:hover {
  color: #00ff88;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: 1fr;
  }

  .header-content {
    flex-direction: column;
    gap: 15px;
  }

  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .chat-popup {
    width: calc(100vw - 50px);
    right: -140px;
    height: 400px;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .game-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #00ff88;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Hover Effects */
.interactive:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}
