  body {
      padding-top: 80px
  }

  .top-bar {
      background-color: #111;
      color: #aaa;
      font-size: 14px;
      padding: 5px 20px;
  }

  .main-navbar {
      background-color: #1c1c1c;
      border-bottom: 2px solid #333;
      padding: 10px 20px;
  }

  .main-navbar .nav-link {
      color: #bbb !important;
      text-transform: uppercase;
      font-weight: 600;
  }

  .main-navbar .nav-link:hover,
  .main-navbar .nav-link:focus {
      color: white !important;
  }

  .btn-register {
      background-color: #f5c242;
      border: none;
      color: #000;
      font-weight: bold;
  }

  .btn-login {
      border: 2px solid #f5c242;
      background-color: transparent;
      color: #f5c242;
      font-weight: bold;
  }

  .btn:hover { 
      background-color: transparent;
      color: #f5c242;
  }

  .logo-img {
      height: 40px;
  }

  .search-icon {
      color: #aaa;
      cursor: pointer;
      font-size: 20px;
  }

  .hero-section {
      background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4)),
          url('../img/hero.webp') no-repeat right center;
      background-size: cover;
      height: 400px;
      padding: 40px 0;

  }

  .hero-section h1 {
      color: #f5c242;
      font-size: 2.8rem;
  }

  .hero-section h3 {
      font-family: monospace;
      font-size: 1.8rem;
  }

  .hero-section .btn-warning {
      background-color: #f5c242;
      color: black;
      font-weight: bold;
      border: none;
  }

  .features-strip {
      background-color: #0e0e0e;
  }

  .features-strip i {
      color: white;
  }

  .features-strip .fw-bold {
      font-family: 'Courier New', monospace;
      letter-spacing: 0.5px;
  }

  .winner-ticker {
      background-color: #1a1a1a;
      height: 76px;
      border-top: 1px solid #444;
      z-index: 999;
      overflow: hidden;
  }

  .ticker-container {
      display: flex;
      align-items: center;
      position: relative;
      height: 100%;
  }

  /* Fixed labels */
  .ticker-fixed {
      width: 200px;
      height: 100%;
      background-color: #2a2a2a;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      font-weight: bold;
      color: #eee;
      font-size: 16px;
  }

  .ticker-left {
      border-right: 1px solid #444;
  }

  .ticker-right {
      border-left: 1px solid #444;
  }

  .ticker-scroll-track {
      flex: 1;
      overflow: hidden;
      position: relative;
      height: 100%;
  }

  .ticker-inner {
      display: flex;
      gap: 28px;
      padding: 0 10px;
      animation: scroll-left 6s linear infinite;
      white-space: nowrap;
      align-items: center;
      height: 100%;
  }

  .ticker-item {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 20px;
      border-left: 1px solid #444;
      color: #ccc;
      font-size: 15px;
      min-width: max-content;
  }

  .ticker-item:first-child {
      border-left: none;
  }

  .ticker-item .name {
      font-weight: 600;
      color: #ccc;
  }

  .ticker-item .amount {
      font-weight: bold;
      color: #f5c242;
  }

  .ticker-item .desc {
      font-size: 13px;
      color: #999;
      white-space: nowrap;
  }

  /* Animation */
  @keyframes scroll-left {
      0% {
          transform: translateX(0);
      }

      100% {
          transform: translateX(-50%);
      }
  }

  .footer {
      background-color: #1a1a1a;
      color: white;
  }

  .footer-logos {
      background-color: #3a3a3a;
      border-top: 2px solid #f5c242;
  }

  .footer img {
      max-height: 40px;
      object-fit: contain;
      filter: brightness(0) invert(1);
  }

  .footer-bottom {
      background-color: #1a1a1a;
  }

  .footer-link {
      color: white;
      font-size: 14px;
      text-decoration: none;
  }

  .footer-link:hover {
      text-decoration: underline;
      color: #f5c242;
  }

  .fair-footer {
      background-color: #111;
      font-size: 14px;
  }

  .fair-footer a {
      color: #ddd;
      text-decoration: none;
  }

  .fair-footer a:hover {
      color: #f5c242;
      text-decoration: underline;
  }

  .footer-heading {
      font-size: 13px;
      color: #f5c242;
      text-transform: uppercase;
      font-weight: bold;
      margin-bottom: 1rem;
  }

  .footer-subheading {
      font-size: 13px;
      color: #f5c242;
      text-transform: uppercase;
      font-weight: bold;
      margin-bottom: 0.5rem;
  }

  .fair-footer ul {
      margin-bottom: 0;
  }

  .fair-footer li {
      margin-bottom: 6px;
  }

  .footer-license {
      background-color: #222;
      font-size: 14px;
      border-top: 1px solid #333;
  }

  .footer-license img {
      width: 125px;
  }

  .footer-license p {
      color: #aaa;
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.5;
  }
 
  .footer-bottom-bar {
      background-color: #1e1e1e;
      border-top: 1px solid #333;
      font-size: 14px;
  }

  .footer-bottom-bar .fw-bold {
      color: #aaa;
  }.age-gate-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-gate-box {
  background-color: #1a1a1a;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.age-gate-box h4 {
  margin-bottom: 15px;
}

.age-gate-box p {
  font-size: 14px;
  color: #bbb;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  color: #fff;
  z-index: 9999;
  padding: 30px 20px;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.6);
  font-family: sans-serif;
  display: none;
}

.cookie-content {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.cookie-content h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

.cookie-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.cookie-content a {
  color: #aaffcc;
  text-decoration: underline;
}

.btn-group {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  font-weight: bold;
  font-size: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-accept {
  background-color: #00d42d;
  color: white;
}

.btn-decline {
  background-color: #a30000;
  color: white;
  border: 2px solid white;
}

.btn-settings {
  background-color: white;
  color: black;
}