@font-face {
  font-family: "Bungee";
  src: url("fonts/Bungee/Bungee-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

.font-bungee {
  font-family: "Bungee", sans-serif;
}

.font--medium {
  font-weight: 500;
}

.font--bold {
  font-weight: 700;
}

.text-align-center {
  text-align: center;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background: linear-gradient(
    135deg,
    #0a1628 0%,
    #1e3a5f 25%,
    #2d5aa0 50%,
    #1e3a5f 75%,
    #0a1628 100%
  );
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

html {
  scroll-padding-top: 60px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0% {
    background-position: 20% 50%, 80% 20%, 40% 80%;
  }
  50% {
    background-position: 25% 50%, 75% 20%, 45% 80%;
  }
  100% {
    background-position: 20% 50%, 80% 20%, 40% 80%;
  }
}

.imgScript {
  display: none;
}

.live-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 15px 20px;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
  animation: bounce 2s infinite;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 22, 40, 0.95);
  border-bottom: 3px solid #3b82f6;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  height: 60px;
}

.header .logo {
  color: white;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header .logo img {
  height: 32px;
}
.header .logo-text {
  margin-left: 8px;
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(45deg, #3b82f6, #60a5fa, #93c5fd);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.header .nav {
  display: none;
}
.header .nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.header .nav li {
  margin: 0;
  margin-left: 24px;
}
.header .nav a {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
}

.header .lang-switch {
  display: none;
}
.header .lang-btn {
  padding: 0.7rem 1.5rem;
  margin: 2px;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.header .lang-btn:hover {
  background: linear-gradient(45deg, #1d4ed8, #3b82f6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.header .burger {
  background: none;
  border: none;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}
.header .burger-icon {
  width: 24px;
  height: 2px;
  background-color: white;
  margin: 3px 0;
}

.header .mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(10, 22, 40);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}
.header .mobile-menu.open {
  transform: translateX(0);
}
.header .mobile-menu-inner {
  width: 80%;
  max-width: 300px;
  height: 100%;
  padding: 16px;
}
.header .close-menu {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}
.header .mobile-menu nav ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.header .mobile-menu nav li {
  margin-bottom: 16px;
}
.header .mobile-menu nav a {
  color: white;
  font-size: 2rem;
}
.header .mobile-lang-switch {
  display: flex;
  gap: 8px;
}

.body--no-scroll {
  overflow: hidden;
}

@media (min-width: 1000px) {
  .header .nav {
    display: flex;
  }
  .header .lang-switch {
    display: flex;
    align-items: center;
  }
  .header .burger {
    display: none;
  }
  .header .mobile-menu {
    display: none;
  }
}

/* Hero Section */

.hero {
  background: linear-gradient(rgba(10, 22, 40, 0.8), rgba(10, 22, 40, 0.8)),
    radial-gradient(
      circle at 20% 50%,
      rgba(59, 130, 246, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(96, 165, 250, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(147, 197, 253, 0.2) 0%,
      transparent 50%
    );
  background-repeat: no-repeat;
  background-size: cover;
  animation: drift 10s ease-in-out infinite;
  min-height: 90vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("images/main.webp") repeat;
  opacity: 0.1;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.2s;
}
.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #3b82f6, #60a5fa, #93c5fd, #dbeafe);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
  }
  to {
    filter: drop-shadow(0 0 30px rgba(96, 165, 250, 0.8));
  }
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #d1d5db;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 1rem;
  background: linear-gradient(45deg, #ef4444, #f97316, #eab308);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-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
  );
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
  }
}

@keyframes pulse--purple {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(177, 94, 255, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(148, 68, 239, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(148, 68, 239, 0.4);
  }
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(239, 68, 68, 0.6);
}

/* Timer Section */
.timer-section {
  background: linear-gradient(
    145deg,
    rgba(59, 130, 246, 0.1),
    rgba(30, 58, 138, 0.2)
  );
  padding: 3rem;
  border-radius: 20px;
  margin: 3rem 0;
  text-align: center;
  border: 2px solid rgba(59, 130, 246, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
}

.timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.timer-item {
  background: linear-gradient(145deg, #1e3a5f, #0a1628);
  padding: 1.5rem;
  border-radius: 15px;
  min-width: 100px;
  border: 2px solid #3b82f6;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.timer-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #60a5fa;
  text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.timer-label {
  font-size: 1rem;
  color: #d1d5db;
  margin-top: 0.5rem;
}

/* Games Section */
.games-section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #3b82f6, #60a5fa);
  background-clip: text;
  -webkit-background-clip: text;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.game-card p {
  margin-bottom: 20px;
}

.game-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(
    145deg,
    rgba(30, 58, 95, 0.8),
    rgba(10, 22, 40, 0.9)
  );
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

.game-card {
  background: linear-gradient(
    145deg,
    rgba(30, 58, 95, 0.8),
    rgba(10, 22, 40, 0.9)
  );
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(59, 130, 246, 0.1),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.game-card:hover {
  transform: translateY(-10px);
  border-color: #3b82f6;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.game-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.game-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #60a5fa;
}

.game-card p {
  color: #d1d5db;
  line-height: 1.6;
}

/* Live Counter */
.live-counter {
  background: linear-gradient(
    145deg,
    rgba(34, 197, 94, 0.1),
    rgba(21, 128, 61, 0.2)
  );
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(34, 197, 94, 0.3);
  backdrop-filter: blur(10px);
}

.live-counter h2 {
  margin-bottom: 1rem;
}

.live-counter p {
  margin-bottom: 1rem;
}

.counter-number {
  font-size: 4rem;
  font-weight: bold;
  color: #22c55e;
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
  animation: counterGlow 2s ease-in-out infinite alternate;
}

@keyframes counterGlow {
  from {
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
  }
  to {
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.8);
  }
}

/* Bonus Section */
.bonus-section {
  background: linear-gradient(
    145deg,
    rgba(59, 130, 246, 0.1),
    rgba(30, 58, 138, 0.2)
  );
  padding: 5rem 0;
  border-radius: 30px;
  margin: 3rem 0;
}

.bonus-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .bonus-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bonus-card {
  background: linear-gradient(
    145deg,
    rgba(45, 90, 160, 0.8),
    rgba(10, 22, 40, 0.9)
  );
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid #3b82f6;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.bonus-amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: #22c55e;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

/* Earnings Section */
.earnings-section {
  padding: 2rem 0;
}

.earnings-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .earnings-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.earnings-card {
  background: linear-gradient(
    145deg,
    rgba(30, 58, 95, 0.8),
    rgba(10, 22, 40, 0.9)
  );
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid #3b82f6;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.earnings-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.earnings-card p {
  margin-bottom: 20px;
}

.deposit-amount {
  font-size: 2.5rem;
  color: #3b82f6;
  margin-bottom: 1rem;
  font-weight: bold;
}

.earn-amount {
  font-size: 3rem;
  color: #22c55e;
  font-weight: bold;
  text-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

/* Partners Section */
.partners-section {
  padding: 1.5rem 0;
  text-align: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.partner-card {
  background: linear-gradient(145deg, #1e3a5f, #0a1628);
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid #3b82f6;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.special-offer {
  background: linear-gradient(45deg, #22c55e, #16a34a);
  color: white;
  padding: 2rem;
  border-radius: 20px;
  margin-top: 2rem;
  font-weight: bold;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

/* Free Trial Section */
.free-trial-section {
  position: relative;
  background: linear-gradient(
      145deg,
      rgba(168, 85, 247, 0.5),
      rgba(126, 34, 206, 0.5)
    ),
    url("images/main-game.webp") center/cover no-repeat;
  padding: 1.5rem 0;
  border-radius: 30px;
  border: 2px solid rgba(168, 85, 247, 0.3);
  overflow: hidden;
}

.free-trial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.4);
  border-radius: 30px;
  z-index: 0;
}

.trial-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .trial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.trial-image {
  position: relative;
  z-index: 1;
}

.trial-image img {
  width: 70%;
  border-radius: 20px;
  object-fit: cover;
}

.trial-content {
  position: relative;
  z-index: 1;
  text-align: left;
}

.trial-content .section-title {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.trial-content p {
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: center;
}

.trial-button {
  display: inline-block;
  padding: 1rem;
  background: linear-gradient(45deg, #a855f7, #8b5cf6);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  animation: pulse--purple 2s infinite;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(148, 68, 239, 0.4);
  position: relative;
  overflow: hidden;
}

.trial-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

/* Article Section */
.features-section {
  background: rgba(30, 58, 95, 0.3);
  padding: 5rem 0;
  border-radius: 30px;
  margin: 3rem 0;
  backdrop-filter: blur(10px);
}
.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background: linear-gradient(
    145deg,
    rgba(10, 22, 40, 0.8),
    rgba(30, 58, 95, 0.9)
  );
  padding: 2rem;
  border-radius: 20px;
  color: #e5e7eb;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.section-title {
  color: #60a5fa;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Reviews Section */
.reviews-section {
  padding: 1.5rem 0;
}

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

.review-card {
  background: linear-gradient(
    145deg,
    rgba(30, 58, 95, 0.8),
    rgba(10, 22, 40, 0.9)
  );
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid #3b82f6;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
}

.review-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1rem;
  border: 2px solid #3b82f6;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.review-stars {
  color: #fbbf24;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #e5e7eb;
}

.review-author {
  font-weight: bold;
  color: #60a5fa;
}
/* Footer */
footer {
  background: linear-gradient(145deg, #0a1628, #1e3a5f);
  padding: 4rem 0 2rem 0;
  text-align: center;
  border-top: 3px solid #3b82f6;
}

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

.footer-section h3 {
  color: #60a5fa;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.footer-section p,
.footer-section li {
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: #93c5fd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #60a5fa;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.payment-method {
  background: linear-gradient(145deg, #1e3a5f, #0a1628);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  border: 2px solid #3b82f6;
  font-weight: bold;
  color: #60a5fa;
  backdrop-filter: blur(10px);
}

.copyright {
  color: #9ca3af;
  padding-top: 2rem;
  border-top: 1px solid rgba(59, 130, 246, 0.3);
}

/* Individual Bonus Section */
.individual-bonus-section {
  background: url("images/main-bonus.webp") center/cover no-repeat;
  padding: 4rem 0;
  border-radius: 30px;
  margin: 3rem 0;
  position: relative;
  color: #e5e7eb;
}
.individual-bonus-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(190, 24, 93, 0.4);
  border-radius: 30px;
}
.container {
  position: relative;
  z-index: 1;
}
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 800px) {
  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.bonus-desc {
  margin-bottom: 20px;
}

.bonus-feature {
  display: flex;
  flex-direction: column;
}

.bonus-actions {
  margin-top: auto;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.bonus-feature {
  background: linear-gradient(
    145deg,
    rgba(45, 90, 160, 0.8),
    rgba(10, 22, 40, 0.9)
  );
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid #ec4899;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bonus-photo img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid #ec4899;
}
.bonus-amount {
  font-size: 2.5rem;
  color: #22c55e;
  margin: 1rem 0;
}
.section-title {
  font-family: "Bungee", cursive;
  color: #ec4899;
  text-align: center;
  margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .timer {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .timer-item {
    min-width: 80px;
    padding: 1rem;
  }

  .games-grid,
  .bonus-cards,
  .earnings-cards,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .counter-number {
    font-size: 2.5rem;
  }
}

/* Language Toggle */
.en-content {
  display: none;
}

.id-content {
  display: block;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
  }
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  color: #1f2937;
  padding: 1.5rem;
  border-radius: 15px;
  margin: 2rem 0;
  font-weight: bold;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}
