  @import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;700&family=Outfit:wght@400;600&display=swap');

  * {
    box-sizing: border-box;
  }


  .featured-tournaments h3 {
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
  }

  .featured-tournaments p {
    font-size: 13px;
    color: #8a8a8a;
    margin-bottom: 20px;
  }

  .tournament-list {
    display: flex;
    gap: 20px;
  }

  .tournament-card {
    background: #181818;
    border-radius: 6px;
    width: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    color: #ddd;
  }

  .tournament-card.featured {
    border: 1px solid #3978ff
  }

  .tournament-card img {
    width: 100%;
    object-fit: cover;
    height: 180px;
  }

  .tournament-timer {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .tournament-timer .icon {
    width: 12px;
    height: 12px;
    background: #292929;
    border-radius: 50%;
  }

  .tournament-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .tournament-info .date {
    font-size: 11px;
    color: #888ba0;
    margin-bottom: 6px;
  }

  .tournament-info .title {
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    margin-bottom: 6px;
    color: white;
  }

  .tournament-info .description {
    font-size: 12px;
    color: #aaa;
    flex: 1;
  }

  .tournament-footer {
    padding: 12px 16px;
    background: #060606;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .points {
    font-weight: 700;
    color: #ffffff;
    font-size: 11px;
    background: #101010;
    padding: 5px 10px;
    border-radius: 15px;
  }

  .join-btn {
    background: #101010;
    color: #ffffff;
    border-radius: 25px;
    padding: 6px 15px;
    font-weight: 600;
    font-size: 11px;
    cursor: pointer;
    border: none;
  }

  .join-btn:hover {
    background: #3978ff;
    color: white;
  }

  /* Slots and avatars */
  .slots {
    background: #232323bd;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .slots .avatars {
    display: flex;
    gap: -10px;
  }

  .slots .avatars img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #2a1a68;
    object-fit: cover;
  }

  .slots .more {
    font-size: 12px;
    background: #223365;
    color: #8a8ac9;
    border-radius: 12px;
    padding: 0 8px;
    line-height: 28px;
    font-weight: 600;
  }

  /* Scrollbar for card container (optional) */
  .tournament-list {
    overflow-x: auto;
    padding-bottom: 10px;
  }


    * {
      box-sizing: border-box;
    }

    .row {
      display: flex;
      flex-wrap: wrap;
      margin-left: -10px;
      margin-right: -10px;
    }

    [class^="col-"] {
      padding: 10px;
    }

    .col-12 {
      width: 100%;
    }

    .col-6 {
      width: 50%;
    }

    /* Ã–rnek stil */
    .box {
      background-color: #3498db;
      color: white;
      padding: 20px;
      text-align: center;
      border-radius: 6px;
    }