:root {
  --bg: #050a6b;
  --bg-soft: #0a1e4d;
  --primary: #ee3f3f;
  --secondary: #0066ff;
  --muted: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --shadow-orange: 0 8px 24px rgba(241, 90, 36, 0.35);
  --card-border: rgba(255, 255, 255, 0.1);
  --glow-blue: 0 12px 28px rgba(0, 102, 255, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg);
  background-image:
    radial-gradient(
      circle at 20% 20%,
      rgba(0, 102, 255, 0.18),
      transparent 35%
    ),
    radial-gradient(circle at 80% 0%, rgba(241, 90, 36, 0.22), transparent 30%),
    linear-gradient(135deg, #050a6b 0%, #0a1e4d 45%, #04124f 100%);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ==================== NAVBAR ==================== */
/* Navigation */
.navigation-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

.header {
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: rgba(5, 10, 107, 0.95);
  backdrop-filter: blur(16px);
}

.mobile-menu {
  display: none;
  cursor: pointer;
  color: white;
  margin-right: 1rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-menu:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1199px) {
  .mobile-menu {
    display: flex;
  }
}

.logo {
  display: flex;
  align-items: center;
  flex: 1;
  margin-left: -0.5rem;
}

.logo-image {
  height: 35px;
  width: auto;
  cursor: pointer;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.btn-affiliate:hover,
.btn-login:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

.btn-affiliate:hover {
  background: #d94a18 !important;
  box-shadow: 0 6px 16px rgba(238, 63, 63, 0.4) !important;
}

.registration-button {
  background: var(--secondary);
  color: white;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
  transition: all 0.2s;
}

.registration-button:hover {
  background: #0055dd;
}

.registration-button:active {
  transform: scale(0.95);
}

.navigation-links {
  display: none;
  width: 100%;
  justify-content: center;
  background: rgba(5, 10, 107, 0.85);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.navigation-wrapper.nav-open .navigation-links {
  display: flex;
}

.navigation-links ul {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.navigation-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  transition: color 0.2s;
}

.navigation-links a:hover {
  color: white;
}

.nav-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(5, 10, 107, 0.8), transparent);
  pointer-events: none;
}

/* Old navbar styles - keeping for backwards compatibility */
.navbar {
  background: rgba(5, 10, 107, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(0, 102, 255, 0.35);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.navbar-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  min-height: 88px;
  position: relative;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;

  margin-left: 50px;
}

.logo-img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
}

.logo-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
}

.logo-word {
  font-size: 18px;
  font-weight: 900;
  color: white;
  font-style: italic;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
}

.nav-link:hover {
  color: #00bfff;
}

.nav-link.active {
  color: #00bfff;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.6);
}

.nav-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.btn-bonus,
.btn-affiliate,
.btn-login,
.btn-register {
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-affiliate {
  background: #0066ff;
  color: white;
  box-shadow: 0 10px 24px rgba(0, 102, 255, 0.38);
  text-decoration: none;
}

.btn-affiliate:hover {
  background: #0055dd;
  transform: translateY(-1px);
}

.btn-login {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  padding-inline: 18px;
  text-decoration: none;
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-register {
  background: #ee3f3f;
  color: white;
  box-shadow: 0 10px 24px rgba(241, 90, 36, 0.38);
  text-decoration: none;
}

.btn-register:hover {
  background: #be3434;
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .navbar-container {
    flex-wrap: wrap;
    gap: 16px;
    padding: 0 18px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu,
  .nav-right {
    display: none;
    width: 100%;
    background: rgba(5, 10, 107, 0.98);
    border: 1px solid rgba(0, 102, 255, 0.25);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    position: absolute;
    left: 18px;
    right: 18px;
    top: 100%;
    margin-top: 10px;
    z-index: 5;
  }

  .navbar.nav-open .nav-menu,
  .navbar.nav-open .nav-right {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    flex: unset;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    width: 100%;
    display: block;
    padding: 6px 0;
  }

  .nav-right {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .nav-right a {
    width: 100%;
    text-align: center;
  }
}

/* ==================== HERO SECTION ==================== */

.hero {
  position: relative;
  background: linear-gradient(135deg, #050a6b 0%, #0a1e4d 100%);
  overflow: hidden;
  margin-top: 70px; /* Account for fixed navigation */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(0, 102, 255, 0.25),
      transparent 35%
    ),
    radial-gradient(circle at 80% 20%, rgba(241, 90, 36, 0.22), transparent 30%);
  pointer-events: none;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #000;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  /* width: 100%;
  height: 100%; */
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition:
    opacity 0.8s ease-in-out,
    transform 8s linear;
  background: linear-gradient(135deg, #04124f 0%, #0a52ff 100%);
  background-size: cover; /* Makes image fill the whole screen */
  background-position: center; /* Keeps the main action in the middle */
  background-repeat: no-repeat;
}

.carousel-slide.active {
  opacity: 1;
}

.slide-1 {
  background-image: url("https://i.ibb.co.com/JwDTgFJX/Screenshot-2026-01-23-185947.png");
}

.slide-2 {
  background-image: url("https://i.ibb.co.com/zHFj6Pww/Screenshot-2026-01-23-190051.png");
}

.slide-3 {
  background-image: url("https://i.ibb.co.com/7dyyHxGs/Screenshot-2026-01-23-215232.png");
}

.hero-content {
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: slideDown 0.6s ease;
}

.hero-kicker {
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 20px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 28px rgba(241, 90, 36, 0.45);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.25);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.indicator {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.indicator.active {
  background: white;
  width: 40px;
  border-radius: 10px;
}

/* ==================== SUB NAVIGATION ==================== */
.sub-nav {
  display: flex;
  justify-content: center;
  padding: 18px 20px;
  background: linear-gradient(90deg, #0a1e4d 0%, #1a3a6b 100%);
  border-bottom: 2px solid #0099ff;
  flex-wrap: wrap;
}

.sub-nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
  flex-wrap: wrap;
}

.sub-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
}

.sub-nav a:hover {
  color: #00bfff;
  text-shadow: 0 0 8px rgba(0, 191, 255, 0.6);
}

/* ==================== WELCOME SECTION ==================== */
.welcome-section {
  text-align: center;
  padding: 30px 20px 10px;
  background: linear-gradient(
    90deg,
    rgba(0, 47, 167, 0.3) 0%,
    rgba(0, 191, 255, 0.3) 100%
  );
  border-bottom: 1px solid rgba(0, 191, 255, 0.2);
}

.welcome-section h2 {
  font-size: 42px;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.welcome-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

/* ====================== Download Section ======================= */

.download-container {
  display: flex;
  justify-content: center;
  /* padding: 20px 0; */
  margin-top: 15px;
  margin-bottom: 0;
  background: transparent;
}

.download-pill {
  background: #0047ab; /* Dark blue background from your screenshot */
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 6px 25px;
  border-radius: 50px; /* pill shape */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.download-text {
  color: white;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
}

.icon-group {
  display: flex;
  gap: 15px;
}

.download-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: transparent;
  padding: 8px;
}

.download-icon img {
  width: 24px;
  height: auto;
  filter: brightness(0) invert(1); /* Makes the black icon white by default */
  transition: all 0.3s ease;
}

/* Hover Effect: Round white background and blue icon */
.download-icon:hover {
  background-color: #ffffff;
}

.download-icon:hover img {
  filter: none; /* Removes the white filter so it shows original blue/black */
  /* If your icon is black and you want it blue on hover, use this instead: */
  /* filter: invert(24%) sepia(91%) saturate(2325%) hue-rotate(202deg) brightness(91%) contrast(101%); */
}

/* ==================== GAMES SECTION ==================== */
/* Popular Games - Images */
#popular-track .game-card:nth-child(1) .game-image {
  background-image: url("https://i.ibb.co.com/RTnSVwNs/games-and-mine.png");
}
#popular-track .game-card:nth-child(2) .game-image {
  background-image: url("https://i.ibb.co.com/CsznjKZ1/moneywheel.png");
}
#popular-track .game-card:nth-child(3) .game-image {
  background-image: url("https://i.ibb.co.com/x8sZqNRX/fruit-cocktail.png");
}
#popular-track .game-card:nth-child(4) .game-image {
  background-image: url("https://i.ibb.co.com/ynr3pbfS/mayantomb.png");
}
#popular-track .game-card:nth-child(5) .game-image {
  background-image: url("https://i.ibb.co.com/NdhK0vHN/gems-oddesey.png");
}
#popular-track .game-card:nth-child(6) .game-image {
  background-image: url("https://i.ibb.co.com/35V1DqHj/spin-and-win.png");
}
#popular-track .game-card:nth-child(7) .game-image {
  background-image: url("https://i.ibb.co.com/WvFvXkvG/scratch-card.png");
}
#popular-track .game-card:nth-child(8) .game-image {
  background-image: url("https://i.ibb.co.com/7ttDzLcg/las-vegas.png");
}
#popular-track .game-card:nth-child(9) .game-image {
  background-image: url("https://i.ibb.co.com/fYNksYxp/midguard-zombies.png");
}
#popular-track .game-card:nth-child(10) .game-image {
  background-image: url("https://i.ibb.co.com/S4CJm8pR/apple-and-fortune.png");
}

/* Jackpot Games - Images */
#jackpot-track .game-card:nth-child(1) .game-image {
  background-image: url("https://i.ibb.co.com/MxWQ5pw3/21.png");
}
#jackpot-track .game-card:nth-child(2) .game-image {
  background-image: url("https://i.ibb.co.com/Wv394VN6/vampirecurse.png");
}
#jackpot-track .game-card:nth-child(3) .game-image {
  background-image: url("https://i.ibb.co.com/QvXhm2Gk/solitire.png");
}
#jackpot-track .game-card:nth-child(4) .game-image {
  background-image: url("https://i.ibb.co.com/cB2cdTL/under-and-over77.png");
}
#jackpot-track .game-card:nth-child(5) .game-image {
  background-image: url("https://i.ibb.co.com/JF0wf9RD/burning-hot.png");
}
#jackpot-track .game-card:nth-child(6) .game-image {
  background-image: url("https://i.ibb.co.com/PsWcmGzT/western-slot.png");
}
#jackpot-track .game-card:nth-child(7) .game-image {
  background-image: url("https://i.ibb.co.com/mrJYpmrP/wildwest.png");
}
#jackpot-track .game-card:nth-child(8) .game-image {
  background-image: url("https://i.ibb.co.com/p6KwM7Cx/crystal.png");
}

/* New Games */
#new-track .game-card:nth-child(1) .game-image {
  background-image: url("https://i.ibb.co.com/fYNksYxp/midguard-zombies.png");
}
#new-track .game-card:nth-child(2) .game-image {
  background-image: url("https://i.ibb.co.com/S4CJm8pR/apple-and-fortune.png");
}
#new-track .game-card:nth-child(3) .game-image {
  background-image: url("https://i.ibb.co.com/h01RqVN/immortal-romance.png");
}
#new-track .game-card:nth-child(4) .game-image {
  background-image: url("https://i.ibb.co.com/Kx2dn48k/magic-slot.png");
}
#new-track .game-card:nth-child(5) .game-image {
  background-image: url("https://i.ibb.co.com/tPFf57Zy/golden-lion.png");
}
#new-track .game-card:nth-child(6) .game-image {
  background-image: url("https://i.ibb.co.com/XfzMPPKW/temple-quest.png");
}
#new-track .game-card:nth-child(7) .game-image {
  background-image: url("https://i.ibb.co.com/Q7xpHxmL/crazy-monkey.png");
}
#new-track .game-card:nth-child(8) .game-image {
  background-image: url("https://i.ibb.co.com/xkc9hbb/crystal-gems.png");
}

.games-section {
  position: relative;
  max-width: 100%;
  margin: 30px auto 64px;
  padding: 0 50px;
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 16px;
}

.section-kicker {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.section-header h2 {
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.section-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 4px;
}

.carousel-viewport {
  /* position: relative;
  overflow: hidden;
  width: 100%;
  /* padding: 0 10px; */
  /* overflow-x: auto;
  scrollbar-width: none; */
  overflow-x: hidden; /* Hide scrollbar but allow JS to scroll */
  display: flex;
  width: 100%;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.games-track {
  /* display: flex;
  gap: 16px;
  width: max-content;
  transition: transform 0.3s ease; */
  display: flex;
  gap: 16px;
  will-change: scroll-position; /* Performance boost for smooth scrolling */
}

/* ==================== GAME CARDS ==================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.game-card {
  flex: 0 0 150px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid var(--card-border);
  position: relative;
  backdrop-filter: blur(6px);
}

.game-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.game-image {
  /* width: 100%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  
  display: flex;
  justify-content: center;
  align-items: center; */
  width: 100%;
  aspect-ratio: 1/1; /* Keep it square like the pro version */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px 12px 0 0;
  position: relative;
}

.game-label {
  background: linear-gradient(90deg, #ff6600, #ff1493);
  color: white;
  padding: 8px 16px;
  height: auto;
  font-size: 10px;
  /* font-weight: bold; */
  border-radius: 20px;
  position: absolute;
  top: 10px;
  left: 10px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.play-button {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #ff1493;
  font-weight: bold;
  opacity: 0;
  transition: all 0.3s ease;
}

.game-card:hover .play-button {
  opacity: 1;
}

.game-info {
  padding: 15px;
  /* background: linear-gradient(
    135deg,
    rgba(10, 30, 77, 0.8),
    rgba(26, 58, 107, 0.8)
  ); */
}

.game-info h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.game-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ==================== CAROUSEL CONTROLS ==================== */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.carousel-btn {
  background: linear-gradient(135deg, #ff6600, #ff1493);
  border: none;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.5);
}

/* Overlay controls at viewport edges */
.carousel-btn.overlay {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 100;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.carousel-btn.overlay.prev {
  left: 10px;
}
.carousel-btn.overlay.next {
  right: 10px;
}
.carousel-btn.overlay:hover {
  transform: translateY(-50%) scale(1.08);
}

/* ==================== ALL GAMES GRID ==================== */
.all-games-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

/* =========================== Bonus section=========== */

.partner-section {
  padding: 80px 50px;
  background: transparent;
}

.partner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch; /* make columns equal height */
  gap: 50px;
}

/* Image Side */
.partner-image-box {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.promo-img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.promo-img:hover {
  transform: scale(1.03);
}

/* Content Side */
.partner-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 360px; /* ensure consistent height with commission card */
}

/* The neon blue glow border effect */
.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, transparent, #0066ff, transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.bonus-card h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 800;
}

.bonus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bonus-list li {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.bonus-list span {
  font-size: 20px;
}

.cashback-note {
  margin-top: 25px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Become a Partner Button */
.btn-partner-glow {
  background: #0066ff; /* Match your Affiliate blue */
  color: white;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 900;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-partner-glow:hover {
  background: #ff6464; /* Flips to your new pinkish color on hover */
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 100, 100, 0.5);
}

/* Responsive */
@media (max-width: 968px) {
  .partner-container {
    flex-direction: column;
    padding: 20px;
  }
}

/* ================= Commission Card (left column) ================= */
.commission-card {
  height: 100%;
  min-height: 360px;
  padding: 30px 32px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(10, 30, 77, 0.85),
    rgba(4, 18, 79, 0.85)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.commission-badge {
  align-self: start;
  background: #ee3f3f;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 24px rgba(241, 90, 36, 0.35);
}

.commission-title {
  font-size: 34px;
  font-weight: 900;
}

.commission-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tier-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.tier-box.popular {
  outline: 2px solid #0066ff;
}
.tier-box.elite {
  outline: 2px solid #ee3f3f;
}

.tier-percent {
  font-size: 28px;
  font-weight: 900;
}
.tier-range {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
}
.tier-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.feature {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
}

.feature-icon {
  font-size: 18px;
}
.feature-title {
  font-weight: 800;
  font-size: 13px;
}
.feature-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.commission-cta {
  margin-top: auto;
  display: inline-block;
  background: #ee3f3f;
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px rgba(241, 90, 36, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.commission-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(241, 90, 36, 0.45);
}

@media (max-width: 968px) {
  .tier-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-row {
    grid-template-columns: 1fr;
  }
}

/* ==================== FOOTER ==================== */
.footer {
  background: linear-gradient(90deg, #0a1e4d 0%, #1a3a6b 100%);
  border-top: 2px solid #00bfff;
  padding: 30px 20px;
  margin-top: 60px;
  color: rgba(255, 255, 255, 0.7);
}

/* Structured footer layout (matching affiliate) */
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-logo .logo-image {
  height: 36px;
  width: auto;
  display: block;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-copyright p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.footer-language {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-separator {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 16px 0 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal p {
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  color: #ffffff;
  transform: scale(1.05);
}

@media (max-width: 640px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    width: 100%;
    justify-content: space-between;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .navbar-container {
    flex-wrap: wrap;
    gap: 15px;
  }

  .nav-menu {
    gap: 12px;
    font-size: 12px;
  }

  .nav-right {
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
  }

  .btn-bonus,
  .btn-affiliate,
  .btn-login,
  .btn-register {
    padding: 8px 12px;
    font-size: 12px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .carousel-container {
    height: 300px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }

  .sub-nav {
    gap: 15px;
    font-size: 12px;
  }

  .section-header-with-btn {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .navbar-logo {
    font-size: 18px;
  }

  .nav-menu {
    display: none;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .carousel-container {
    height: 250px;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
  }

  .game-card:hover {
    transform: translateY(-5px);
  }
}

/* ==================== MOBILE APP SECTION ==================== */
.mobile-app-section {
  position: relative;
  padding: 80px 50px;
  background: linear-gradient(
    135deg,
    rgba(5, 10, 107, 0.95),
    rgba(10, 30, 77, 0.95)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-app-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.app-badge {
  display: inline-block;
  background: linear-gradient(135deg, #00bfff, #0066ff);
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.35);
}

.app-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #00bfff, #0066ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.app-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 50px;
}

.app-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.app-stats-wrapper {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.app-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-rating {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
}

.star {
  color: #ffd700;
  margin-right: 4px;
}

.review-count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.stat-label {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.stat-badges {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

.badge {
  background: rgba(0, 102, 255, 0.15);
  color: #00bfff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(0, 102, 255, 0.3);
}

.download-pill {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #0047ab;
  padding: 6px 25px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.download-text {
  color: white;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
}

.icon-group {
  display: flex;
  gap: 15px;
}

.download-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: transparent;
  padding: 8px;
}

.download-icon img {
  width: 24px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.download-icon:hover {
  background-color: #ffffff;
}

.download-icon:hover img {
  filter: none;
}

.app-bonus {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(
    135deg,
    rgba(241, 90, 36, 0.2),
    rgba(255, 193, 7, 0.15)
  );
  border: 1px solid rgba(241, 90, 36, 0.4);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.bonus-icon {
  font-size: 32px;
}

.bonus-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .mobile-app-section {
    padding: 50px 20px;
  }

  .app-title {
    font-size: 32px;
  }

  .app-description {
    font-size: 14px;
  }

  .app-stats-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .download-pill {
    grid-template-columns: 1fr;
  }

  .app-bonus {
    flex-direction: column;
    text-align: center;
  }

  .stat-badges {
    justify-content: center;
  }
}

/* ==================== BONUS/PARTNER SECTION ==================== */
.partner-section {
  padding: 80px 50px;
  background: transparent;
}

.partner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 50px;
}

/* Partner Content (Bonus Card) - Right Side */
.partner-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, transparent, #0066ff, transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.bonus-card h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.bonus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.bonus-list li {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.bonus-list span {
  font-size: 20px;
}

.cashback-note {
  margin-top: 25px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ==================== SIGNUP BANNER (Affiliate Signup) ==================== */
.signup-banner-container {
  flex: 1;
  width: 100%;
  max-width: 480px;
}

.signup-banner {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.95) 0%,
    rgba(5, 10, 107, 0.95) 100%
  );
  border-radius: 24px;
  padding: 2rem 1.75rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.signup-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
}

.signup-circle-1 {
  width: 200px;
  height: 200px;
  top: -100px;
  right: -50px;
  animation-delay: 0s;
}

.signup-circle-2 {
  width: 150px;
  height: 150px;
  bottom: -50px;
  left: -50px;
  animation-delay: 2s;
}

.signup-circle-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
  }
}

.signup-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.signup-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.signup-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: pulse 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.signup-icon svg {
  stroke: #0066ff;
}

.signup-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: glow 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes glow {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.signup-title {
  color: white;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  animation: slideInDown 0.8s ease-out;
}

.signup-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 2rem;
  line-height: 1.5;
  animation: slideInDown 1s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.signup-promo {
  background: rgba(241, 90, 36, 0.2);
  border: 2px dashed rgba(202, 72, 60, 0.8);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  animation: slideInUp 1.2s ease-out;
}

.signup-promo-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.signup-promo-code {
  font-size: 28px;
  font-weight: 900;
  color: #ee3f3f;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  letter-spacing: 0.1em;
  display: inline-block;
  animation: colorPulse 2s ease-in-out infinite;
}

@keyframes colorPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(241, 90, 36, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(241, 90, 36, 0.8);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.signup-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  animation: slideInUp 1.4s ease-out;
}

.signup-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.signup-benefit:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.signup-benefit-icon {
  font-size: 20px;
}

.signup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #ee3f3f;
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px rgba(241, 90, 36, 0.4);
  transition: all 0.3s ease;
  animation: slideInUp 1.6s ease-out;
  position: relative;
  overflow: hidden;
}

.signup-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.signup-cta:hover::before {
  width: 300px;
  height: 300px;
}

.signup-cta:hover {
  background: #d94a18;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(241, 90, 36, 0.6);
}

.signup-cta:active {
  transform: translateY(-1px);
}

.signup-cta-text,
.signup-cta-arrow {
  position: relative;
  z-index: 1;
}

.signup-cta-arrow {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.signup-cta:hover .signup-cta-arrow {
  transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 968px) {
  .partner-section {
    padding: 60px 30px;
  }

  .partner-container {
    flex-direction: column;
    gap: 30px;
  }

  .signup-banner-container {
    max-width: 100%;
  }

  .partner-content {
    flex: 1;
  }

  .bonus-card {
    min-height: auto;
    padding: 30px;
  }

  .signup-banner {
    min-height: auto;
    padding: 1.5rem;
  }

  .signup-title {
    font-size: 28px;
  }

  .signup-subtitle {
    font-size: 15px;
  }

  .signup-promo-code {
    font-size: 24px;
  }

  .signup-cta {
    padding: 1rem 2rem;
    font-size: 16px;
  }
}

/* ==================== NAVIGATION RESPONSIVE STYLES ==================== */
@media (min-width: 1200px) {
  .mobile-menu {
    display: none;
  }

  .navigation-links {
    display: flex !important;
  }

  .header-actions {
    gap: 1rem;
  }
}

@media (max-width: 1199px) {
  .navigation-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(5, 10, 107, 0.98);
    backdrop-filter: blur(12px);
    padding: 1.5rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }

  .navigation-links ul {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .navigation-links a {
    font-size: 16px;
    padding: 0.5rem 0;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .btn-affiliate,
  .btn-login,
  .registration-button {
    padding: 0.5rem 0.9rem !important;
    font-size: 12px !important;
  }

  .header-actions {
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0 0.8rem;
    height: 60px;
  }

  .logo-image {
    height: 30px;
  }

  .btn-login {
    display: none !important;
  }

  .btn-affiliate,
  .registration-button {
    padding: 0.5rem 1rem !important;
    font-size: 12px !important;
    letter-spacing: 0.03em !important;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .hero {
    margin-top: 60px;
  }

  .navigation-links {
    top: 60px !important;
  }
}
