/* ========== BASE STYLES ========== */
body {
    margin: 0;
    padding: 40px 20px;
    background-color: #0d0d0d;
    font-family: 'Lexend', sans-serif;
    color: #fff;
    box-sizing: border-box;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }
  
  /* ========== SECTION TITLE ========== */
  .section-title {
    font-family: 'Saotorpes', sans-serif;
    font-size: 2.5rem;
    color: #D4FF00;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* ========== CAROUSEL ========== */
  .carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    scrollbar-width: none;
  }
  
  .carousel::-webkit-scrollbar {
    display: none;
  }
  
  /* ========== CARD STYLES ========== */
  .competition-card {
    background-color: #111;
    border-radius: 12px;
    min-width: 280px;
    max-width: 280px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    overflow: hidden;
    display: flex;
    flex-direction: column;
   
    box-shadow: none;
    outline: none;
    border: none;
  }
  
  
  .image-container {
    position: relative;
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #000;
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 500;
  }
  
  /* ========== CARD CONTENT ========== */
  .card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
  }
  
  .event-title {
    font-family: 'Saotorpes', sans-serif;
    font-size: 1.1rem;
    color: #D4FF00;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 4px;
  }
  
  .event-subtitle {
    color: #bbb;
    font-size: 0.9rem;
    margin: 0 0 12px 0;
  }
  
  .event-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
  }
  
  /* ========== CARD FOOTER ========== */
  .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px; 
    padding-top: 10px; 
    border-top: 1px solid #222; 
  
  .register-button {
    background: transparent;
    border: 1px solid #D4FF00;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    margin-left: 20px; 
  }
  
  .shapes {
    display: flex;
    gap: 12px;
  }
  
  .shapes img {
    width: 25px;
    margin-right: 0; /* remove old margin to use flex gap */
  }
  
  
  .register-button:hover {
    background-color: #D4FF00;
    color: #000;
  }
  
  .pagination-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 0 10px;
    width: 100%;
  }
  
  
  .pagination-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 0 20px;
    width: 100%;
  }
  
  .pagination {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    background-color: #444;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
  }
  
  .dot.active {
    background-color: #D4FF00;
  }
  
  .nav-arrows {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
  }
  
  .nav-btn {
    background: #222;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .nav-btn.right {
    background: #D4FF00;
    color: #000;
  }
  
  .nav-btn:hover {
    background: #D4FF00;
    color: #000;
  }
  
  
  
  
  /* ========== RESPONSIVE ========== */
  @media (max-width: 768px) {
    .carousel {
      gap: 16px;
    }
  
    .competition-card {
      min-width: 240px;
      max-width: 240px;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .register-button {
      font-size: 0.8rem;
      padding: 6px 12px;
    }
  
    .shapes img {
      width: 16px;
    }
  }
  
