  @import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;700&family=Outfit:wght@400;600&display=swap');

  * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    background: #0e0e0e;
    font-family: 'Outfit', sans-serif;
    color: #e5e5e5;
    /* Eski flex kaldırıldı */
  }

  /* Yeni container: içeriği ortalıyor */
  .container {
    max-width: 1400px;  /* İstersen genişliği değiştirebilirsin */
    margin: 0 auto;     /* Sayfada ortalar */
  }

  /* Main content genişlik ve yükseklik ayarı */
  .main-content {
    background: linear-gradient(90deg, #161616 0%, #161616 100%);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    border-radius: 0px;
    overflow: hidden;
  }
  
  
      /* Modal stilleri */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.7);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background-color: #202020;
      padding: 20px;
      border-radius: 12px;
      width: 100%;
      max-width: 500px;
      color: #fff;
      animation: fadeIn 0.3s ease-in-out;
    }

    .modal-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .modal-header img {
      width: 50px;
      height: 50px;
      border-radius: 8px;
      margin-right: 15px;
    }

    .modal-header .user-info {
      display: flex;
      flex-direction: column;
    }

    .user-info .username {
      font-size: 18px;
      font-weight: bold;
    }

    .user-info .welcome {
      font-size: 14px;
      color: #aaa;
    }

    .modal-buttons {
      display: flex;
      justify-content: space-between;
      gap: 10px;
    }

    .modal-buttons button {
      flex: 1;
      padding: 10px;
      border: none;
      border-radius: 8px;
      background-color: #333;
      color: white;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.2s;
    }

    .modal-buttons button:hover {
      background-color: #444;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }
	



    .tooltip-button {
      position: relative;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
    }



    .tooltip-button .tooltip {
      visibility: hidden;
      width: max-content;
      background-color: #333;
      color: #fff;
      text-align: center;
      padding: 6px 10px;
      border-radius: 4px;
      position: absolute;
      top: -35px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      opacity: 0;
      white-space: nowrap;
      transition: opacity 0.3s ease, top 0.3s ease;
      font-size: 12px;
    }

    .tooltip-button:hover .tooltip {
      visibility: visible;
      opacity: 1;
      top: -34px;
    }
	
	
	
	
  /* Sidebar */
  .sidebar {
    width: 260px;
    background: #0e0e0e;
    display: flex;
    flex-direction: column;
    padding: 20px;
  }

.ozel-liste {
  list-style: none;
  padding-left: 15;
}

.ozel-liste li {
  position: relative;
  margin-bottom: 0.9em;
}

.ozel-liste li::before {

}

  .sidebar .greeting {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
  }

  /* Navigation */
  .nav-section {
    flex: 1;
  }

  .nav-section h4 {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #292929;
    margin-bottom: 12px;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
  }

  .nav-list li {
    margin-bottom: 12px;
  }

  .nav-list li a {
    color: #8b8b8b;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-list li a.active,
  .nav-list li a:hover {
    color: #ffffff;
  }

  .nav-list li a .icon {
    width: 30px;
    height: 30px;
    background: #232323;
    border-radius: 4px;
    display: inline-block;
	padding:6px;
	font-size:12px;
  }

  /* Configure Section */
  .configure-section {
    border-top: 1px solid #161616;
    padding-top: 15px;
  }

  /* Main content */
  .main-content {
    flex: 1;
    background: linear-gradient(90deg, #161616 0%, #161616 100%);
    display: flex;
    flex-direction: column;
  }

  /* Header */
  .header {
    background: #212121;
    display: flex;
    align-items: center;
    padding: 10px 30px;
    gap: 20px;
    font-size: 14px;
    color: #c6c8f9;
  }

  .header .logo-text {
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    color: white;
  }

  .header nav {
    display: flex;
    gap: 20px;
  }

  .header nav a {
    color: #b5b9d6;
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 4px;
  }

  .header nav a.active,
  .header nav a:hover {
    border-bottom: 2px solid #ff4545;
    color: white;
  }

  .header .sag {
    margin-left: auto;
    border-radius: 4px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
  }

  .header .sag input {
    background: transparent;
    border: none;
    outline: none;
    color: #eee;
    font-size: 13px;
  }

  .header .user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
    font-weight: 600;
    font-size: 13px;
	color:white;
  }

  .header .user img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
  }

  /* Banner */
  .banner {
    flex: 1;
    position: relative;
    display: flex;
    padding: 30px 40px;
    gap: 40px;
    align-items: center;
    color: white;
  }

  .banner-left {
    max-width: 280px;
  }

  .banner-left img {
    width: 100%;
    border-radius: 8px;
  }

  .banner-info {
    margin-top: 12px;
  }

  .banner-info .members {
    font-size: 12px;
    background: #ffffff;
    color: #2c2631;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
  }

  .banner-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .banner-subtitle {
    font-size: 14px;
    color: #d1d1d1;
  }

  /* Stats bar */
  .stats-bar {
    background: rgba(0,0,0,0.3);
    margin-top: 20px;
    padding: 14px 24px;
    border-radius: 10px;
    display: flex;
    gap: 40px;
    align-items: center;
    font-size: 13px;
  }

  .stats-item {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .stats-item .icon {
    width: 30px;
    height: 30px;
    background: #333333;
    border-radius: 4px;
	padding:7px;
  }

  .stats-item .number {
    font-weight: 700;
    color: white;
  }

  .stats-item .label {
    font-size: 12px;
    color: #8f8f8f;
  }

  /* Players section on banner right */
  .players-info {
    margin-left: auto;
    background: rgba(0,0,0,0.4);
    border-radius: 15px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
  }

  .players-info .label {
    color: #bbb;
  }

  .players-info .number {
    color: #fff;
    font-weight: 700;
  }

  .players-info .avatars {
    display: flex;
    gap: -10px;
  }

  .players-info .avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #2a1a68;
    object-fit: cover;
  }

  /* Featured tournaments */
  .featured-tournaments {
    background: #161616;
    padding: 30px 40px;
  }

  .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: #0a0a0a;
    border-radius: 15px;
    width: 260px;
    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;
    }