  /* Masaüstünde gizle */
  @media (min-width: 992px) {
      #cagri-mob {
          display: none !important;
      }
  }

  /* Mobil ve tablet gizleme */
  @media only screen and (max-width: 1024px) {
      .alta {
          display: none !important;
      }
  }

  .football-modal {
      border: 2px solid #28a745;
      background-color: #f8f9fa;
      border-radius: 12px;
      color: #212529;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .football-header {
      background-color: #28a745;
      color: #fff;
      font-weight: bold;
  }

  .football-player {
      width: 80px;
      animation: run 1s infinite linear;
      display: block;
      margin: 0 auto 10px;
  }

  @keyframes run {
      0% {
          transform: translateX(0);
      }

      50% {
          transform: translateX(10px);
      }

      100% {
          transform: translateX(0);
      }
  }

  .football-text {
      font-size: 18px;
      font-weight: 500;
  }

  .football-modal-error {
      border: 2px solid #dc3545;
      background-color: #fff5f5;
      border-radius: 12px;
      color: #212529;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      max-width: 400px;
      /* Modalın genişliği */
  }

  .football-header-error {
      background-color: #dc3545;
      color: #fff;
      font-weight: bold;
  }

  .football-text-error {
      font-size: 18px;
      font-weight: 500;
      color: #dc3545;
  }

  .football-player {
      width: 80px;
      animation: run 1s infinite linear;
      display: block;
      margin: 0 auto 10px;
  }

  @keyframes run {
      0% {
          transform: translateX(0);
      }

      50% {
          transform: translateX(10px);
      }

      100% {
          transform: translateX(0);
      }
  }

  #clients {
      padding: 60px 0;
      background-color: #f9f9f9;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .slider-wrapper {
      width: 100%;
      max-width: 1200px;
      overflow: hidden;
  }

  .slider-track {
      display: flex;
      width: calc(200%);
      /* 2 set logolar */
      animation: scroll 20s linear infinite;
  }

  .slide {
      flex: 0 0 auto;
      padding: 0 30px;
  }

  .slide img {
      max-height: 70px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: all 0.3s ease;
  }

  .slide img:hover {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.1);
  }

  /* Sonsuz scroll animasyonu */
  @keyframes scroll {
      0% {
          transform: translateX(0);
      }

      100% {
          transform: translateX(-50%);
      }
  }

  /* Responsive */
  @media (max-width: 768px) {
      .slide img {
          max-height: 50px;
      }
  }

  @media (max-width: 480px) {
      .slide img {
          max-height: 40px;
      }
  }

  /* KVKK Banner Genel */
  #kvkk-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.85);
      color: #fff;
      font-size: 14px;
      z-index: 9999;
      display: flex;
      justify-content: center;
      padding: 12px 20px;
      box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
  }

  .kvkk-content {
      max-width: 960px;
      width: 100%;
      text-align: center;
      position: relative;
      border-radius: 8px;
  }

  .kvkk-content a {
      color: #00bfff;
      text-decoration: underline;
  }

  #kvkk-close {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: none;
      color: #fff;
      font-size: 20px;
      cursor: pointer;
  }

  /* Onay butonu */
  #kvkk-accept {
      display: none;
      /* Desktop'ta gizle */
      margin-top: 15px;
      padding: 12px 20px;
      font-size: 16px;
      background-color: #8e00c8;
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      width: 100%;
  }

  #kvkk-accept:hover {
      background-color: #a200e0;
  }

  /* Mobilde modal tarzı ve onay butonu göster */
  @media (max-width: 600px) {
      #kvkk-banner {
          bottom: 50%;
          left: 50%;
          width: 90%;
          display: none !important;
          max-width: 350px;
          padding: 20px;
          border-radius: 12px;
          transform: translate(-50%, 50%);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
          flex-direction: column;
      }

      #kvkk-accept {
          display: block;
      }

      .kvkk-content {
          text-align: center;
      }
  }


  /* --- YENİ ESTETİK STİLLER --- */
  .team-selection {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .teams {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
      padding: 10px 0;
  }

  .team-item-new {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 10px;
      border-radius: 15px;
      position: relative;
      transition: transform 0.2s, box-shadow 0.3s;
      background-color: #fcfcfc;
      border: 3px solid transparent;
  }

  .team-item-new .team-logo {
      width: 90px;
      height: 90px;
      object-fit: contain;
      transition: transform 0.2s;
  }

  .team-item-new:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .team-item-new.selected-team {
      border: 3px solid #8e44ad;
      box-shadow: 0 0 15px rgba(142, 68, 173, 0.7), 0 0 5px rgba(0, 0, 0, 0.2);
      transform: scale(1.05);
  }

  .vote-badge {
      margin-top: 8px;
      padding: 4px 10px;
      background-color: #8e44ad;
      color: white;
      border-radius: 20px;
      font-size: 12px;
      font-weight: bold;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  #teamModal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
      z-index: 9999;
      overflow-y: auto;
  }

  #teamModal>div {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      max-width: 400px;
      width: 90%;
      text-align: center;
      position: relative;
      margin: auto;
      transition: margin-top 0.3s ease-out;
  }

  /* MOBİL */
  @media(max-width:768px) {
      .teams {
          gap: 10px;
          flex-wrap: nowrap;
          justify-content: space-around;
      }

      .team-item-new {
          padding: 5px;
          width: 22%;
          max-width: 80px;
      }

      .team-item-new .team-logo {
          width: 100%;
          height: auto;
          min-width: 50px;
      }

      .vote-badge {
          font-size: 9px;
          padding: 3px 6px;
          margin-top: 5px;
      }
  }

  @media(max-width:480px) {
      .teams {
          gap: 5px;
      }

      .team-item-new {
          width: 23%;
          padding: 3px;
      }
  }

  /* Sadece mobilde göster */
  .mobile-apps {
      display: none;
      flex-direction: row;
      /* yan yana */
      justify-content: center;
      align-items: center;
      gap: 15px;
      padding: 20px 0;
  }

  .app-link {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      color: #000;
      gap: 5px;
      background: #f2f2f2;
      padding: 10px 15px;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .app-link:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .app-link img {
      max-height: 50px;
      height: auto;
  }

  .app-link span {
      font-size: 14px;
      font-weight: 600;
  }

  /* Mobil görünür yap */
  @media (max-width: 768px) {
      .mobile-apps {
          display: flex;
      }
  }

  /* Sayfa genel */
  body.dp-body {
      font-family: 'Arial', sans-serif;
      background: linear-gradient(180deg, #6a0dad, #000000);
      color: #fff;
      min-height: 100vh;
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
  }

  /* Başlık */
  h1.dp-title {
      color: #ffccff;
      text-align: center;
      margin-bottom: 20px;
      font-size: 2rem;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  }

  /* Paket bilgisi */
  p.dp-selected-package {
      text-align: center;
      font-size: 1.1rem;
      margin-bottom: 25px;
      color: #e0b3ff;
  }

  /* Form */
  form.dp-form {
      background: rgba(255, 255, 255, 0.12);
      padding: 35px 25px;
      border-radius: 20px;
      max-width: 420px;
      width: 100%;
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      text-align: left;
  }

  /* Etiketler */
  label.dp-label {
      display: block;
      margin-top: 12px;
      margin-bottom: 5px;
      font-weight: 500;
      color: #f0d6ff;
  }

  /* Inputlar */
  input.dp-input,
  select.dp-select {
      width: 100%;
      padding: 12px;
      margin-bottom: 10px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      background: rgba(255, 255, 255, 0.05);
      color: #fff;
      font-size: 1rem;
      outline: none;
      transition: all 0.3s ease;
  }

  input.dp-input::placeholder {
      color: rgba(255, 255, 255, 0.7);
  }

  select.dp-select {
      color: #fff;
      background: rgba(255, 255, 255, 0.05);
  }

  input.dp-input:focus,
  select.dp-select:focus {
      border-color: #ff80ff;
      background: rgba(255, 255, 255, 0.15);
  }

  /* Buton */
  button.dp-button {
      width: 100%;
      padding: 12px;
      margin-top: 15px;
      border: none;
      border-radius: 12px;
      background: linear-gradient(90deg, #9b00ff, #ff00ff);
      color: #fff;
      font-weight: bold;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  button.dp-button:hover {
      box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
      transform: translateY(-2px);
  }

  /* Responsive */
  @media (max-width: 480px) {
      form.dp-form {
          padding: 25px 15px;
      }

      h1.dp-title {
          font-size: 1.6rem;
      }
  }

  .kutusuz-box {
      background: linear-gradient(135deg, #0045ff, #021f7a);
      color: #fff;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      margin: 25px 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .kutusuz-box h2 {
      margin: 0 0 10px;
      font-size: 20px;
  }

  .kutusuz-box p {
      margin: 0;
      font-size: 15px;
  }

  .dp-form {
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .dp-label {
      display: block;
      margin-top: 15px;
      font-weight: 600;
      color: #333;
  }

  .dp-input,
  .dp-select {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 15px;
  }

  .dp-button {
      display: block;
      width: 100%;
      margin-top: 20px;
      padding: 12px;
      background: #0045ff;
      color: #fff;
      font-size: 17px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
  }

  .dp-button:hover {
      background: #002ec4;
  }

  .kvkk-alani {
      margin-top: 15px;
      font-size: 14px;
      color: #333;
  }

  .kvkk-alani a {
      color: #0045ff;
      text-decoration: none;
  }

  .kvkk-alani a:hover {
      text-decoration: underline;
  }


  @keyframes glowText {
      0% {
          filter: brightness(1);
          text-shadow: 0 0 5px #fff, 0 0 10px #9d00ff, 0 0 20px #00e0ff;
      }

      50% {
          filter: brightness(1.6);
          text-shadow: 0 0 10px #fff, 0 0 25px #ff00ff, 0 0 45px #00ffff;
      }

      100% {
          filter: brightness(1);
          text-shadow: 0 0 5px #fff, 0 0 10px #9d00ff, 0 0 20px #00e0ff;
      }
  }

  /* Element içi responsive ayar */
  @media (max-width: 767px) {
      .koko {
          max-width: none !important;
      }
  }