﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700&subset=latin,latin-ext&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --red: #ff1a1a;
      --orange: #cc0022;
      --yellow: #ff6666;
      --cyan: #ff4455;
      --dark: #0a0005;
      --dark2: #110008;
      --dark3: #1a0010;
      --white: #f8f0f2;
      --gray: #997788;
      --font-body: 'Rajdhani', 'Segoe UI', system-ui, sans-serif;
      --font-display: 'Rajdhani', 'Segoe UI', system-ui, sans-serif;
      --font-brand: 'Orbitron', 'Rajdhani', 'Segoe UI', system-ui, sans-serif;
      /* Türkçe başlıklarda ş/i tutarlı glif için (Rajdhani + Windows bazen tek harfte fallback atıyordu) */
      --font-heading: 'Inter', 'Segoe UI', system-ui, sans-serif;
      /* Nav satırı — logo metni ile aynı hizada */
      --nav-link-lh: 1.38;
    }

    html {
      scroll-behavior: smooth;
      /* Sabit nav yüksekliği kadar boşluk — #galeri gibi bölüm linkleri başlığı nav altında bırakmasın */
      scroll-padding-top: 92px;
      /* Rajdhani 700, Orbitron 900 kadar “dolu” durmadığı için temel okuma boyutu yükseltilir */
      font-size: 112%;
      /* Kaydırma html'de olsun — body overflow-x:hidden kaydırıcıyı body'ye alır,
         scrollbar-gutter o zaman işe yaramaz ve sayfalar arasında menü kayar */
      overflow-x: hidden;
      overflow-y: scroll;
      scrollbar-gutter: stable;
    }

    body {
      background: var(--dark);
      color: var(--white);
      font-family: var(--font-body);
      overflow-x: clip;
      cursor: default;
    }
    @supports not (overflow: clip) {
      body { overflow-x: hidden; }
    }

    /* ─── CUSTOM SCROLLBAR ─── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--dark2); }
    ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

    /* ─── NOISE OVERLAY ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }

    /* ─── NAV ─── */
    nav.site-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 48px;
      background: rgba(10, 10, 15, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 26, 26, 0.15);
      overflow: visible;
      font-family: var(--font-body);
      font-size: 13px;
      line-height: var(--nav-link-lh);
    }

    .nav-logo {
      --nav-logo-scale: min(238px, 46.5vw);
      display: block;
      width: calc(1890 / 2500 * var(--nav-logo-scale));
      height: calc(426 / 2500 * var(--nav-logo-scale));
      max-height: 44px;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
      text-decoration: none;
    }
    .nav-logo-img {
      position: absolute;
      left: 0;
      top: 0;
      width: var(--nav-logo-scale);
      height: var(--nav-logo-scale);
      max-width: none;
      max-height: none;
      display: block;
      transform: translate(-10.56%, -41.52%);
      transform-origin: top left;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 16px;
      list-style: none;
      flex-wrap: nowrap;
    }
    .nav-links li {
      flex-shrink: 0;
    }

    .nav-links a {
      color: var(--gray);
      text-decoration: none;
      font-family: var(--font-body);
      font-size: 13px !important;
      line-height: var(--nav-link-lh);
      font-weight: 600;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      transition: color 0.2s;
      position: relative;
      white-space: nowrap;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: var(--red);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { width: 100%; }
    .nav-links a.nav-active { color: var(--white); }
    .nav-links a.nav-active::after { width: 100%; }

    .nav-cta {
      background: var(--red);
      color: #fff !important;
      padding: 7px 16px;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      font-family: var(--font-body);
      font-size: 13px !important;
      letter-spacing: 1px !important;
      transition: background 0.2s !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--orange) !important; color: #fff !important; }

    /* Mobil hamburger — varsayılan masaüstü: buton gizli */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 44px;
      height: 44px;
      padding: 0;
      margin: 0 0 0 auto;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 10px;
      cursor: pointer;
      color: inherit;
      -webkit-tap-highlight-color: transparent;
    }
    .nav-toggle:focus-visible {
      outline: 2px solid var(--red);
      outline-offset: 2px;
    }
    .nav-toggle-bar {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--white);
      border-radius: 1px;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }
    .nav-toggle-bar + .nav-toggle-bar { margin-top: 5px; }
    .site-nav.nav-open .nav-toggle-bar:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .site-nav.nav-open .nav-toggle-bar:nth-child(2) {
      opacity: 0;
    }
    .site-nav.nav-open .nav-toggle-bar:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    body.nav-menu-open {
      overflow: hidden;
      touch-action: none;
    }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding: 120px 48px 80px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 60% 40%, rgba(255,26,26,0.22) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(180,0,30,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 10%, rgba(255,60,80,0.12) 0%, transparent 60%),
        var(--dark);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,26,26,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,26,26,0.06) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 860px;
      text-align: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,26,26,0.12);
      border: 1px solid rgba(255,26,26,0.4);
      padding: 6px 18px;
      font-size: 0.82rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      font-weight: 700;
      margin-bottom: 32px;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      animation: fadeDown 0.8s ease both;
    }
    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--red);
      border-radius: 50%;
      animation: blink 1.2s infinite;
    }

    @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

    .hero-title {
      font-family: var(--font-brand);
      font-weight: 900;
      font-size: clamp(2.8rem, 8vw, 6rem);
      line-height: 1;
      letter-spacing: -1px;
      animation: fadeDown 0.8s 0.15s ease both;
    }

    .hero-title .line1 { display: block; color: var(--white); }
    .hero-title .line2 {
      display: block;
      background: linear-gradient(90deg, var(--red) 0%, #cc0020 50%, var(--yellow) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-size: 200%;
      animation: gradShift 4s linear infinite, fadeDown 0.8s 0.15s ease both;
    }

    @keyframes gradShift { 0%,100%{background-position:0%} 50%{background-position:100%} }

    .hero-sub {
      margin: 24px auto 0;
      max-width: 560px;
      font-size: 1.12rem;
      color: var(--gray);
      line-height: 1.75;
      font-weight: 500;
      animation: fadeDown 0.8s 0.3s ease both;
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-top: 40px;
      flex-wrap: wrap;
      animation: fadeDown 0.8s 0.45s ease both;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--red), var(--orange));
      color: #fff;
      font-family: var(--font-display);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 14px 36px;
      border: none;
      cursor: pointer;
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      transition: transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 40px rgba(255,26,26,0.4);
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      font-family: var(--font-display);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 13px 36px;
      border: 1px solid rgba(255,255,255,0.2);
      cursor: pointer;
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      transition: all 0.2s;
      text-decoration: none;
    }
    .btn-secondary:hover {
      border-color: var(--yellow);
      color: var(--yellow);
      box-shadow: 0 0 20px rgba(255,100,100,0.2);
    }

    .hero-stats {
      display: flex;
      gap: 48px;
      justify-content: center;
      margin-top: 64px;
      animation: fadeDown 0.8s 0.6s ease both;
    }
    .stat-item { text-align: center; }
    .stat-num {
      font-family: var(--font-brand);
      font-size: 2.2rem;
      font-weight: 900;
      background: linear-gradient(135deg, var(--red), var(--orange));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .stat-label {
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gray);
      margin-top: 4px;
    }

    /* floating particles */
    .particles { position: absolute; inset: 0; pointer-events: none; }
    .particle {
      position: absolute;
      width: 2px; height: 2px;
      background: var(--red);
      border-radius: 50%;
      animation: float linear infinite;
      opacity: 0;
    }
    @keyframes float {
      0% { transform: translateY(100vh) translateX(0); opacity: 0; }
      10% { opacity: 1; }
      90% { opacity: 1; }
      100% { transform: translateY(-10vh) translateX(60px); opacity: 0; }
    }

    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ─── SECTION BASE ─── */
    section { padding: 100px 48px; }
    .section-label {
      font-family: var(--font-heading);
      font-size: 0.78rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--red);
      font-weight: 700;
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(1.95rem, 4.15vw, 3rem);
      font-weight: 700;
      line-height: 1.12;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
      font-variant-ligatures: normal;
      text-rendering: optimizeLegibility;
    }
    .section-desc {
      font-family: var(--font-heading);
      color: var(--gray);
      font-size: 1.1rem;
      max-width: 520px;
      line-height: 1.7;
      font-weight: 500;
    }
    .section-header { margin-bottom: 60px; }

    /* ─── TICKER ─── */
    .ticker-wrap {
      background: linear-gradient(135deg, var(--red), var(--orange));
      padding: 12px 0;
      overflow: hidden;
      position: relative;
    }
    .ticker-track {
      display: flex;
      gap: 0;
      animation: ticker 22s linear infinite;
      white-space: nowrap;
    }
    .ticker-track span {
      font-family: var(--font-display);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 0 40px;
      color: #fff;
    }
    .ticker-track span::before {
      content: '';
      display: inline-block;
      vertical-align: middle;
      width: 5px;
      height: 5px;
      margin-right: 14px;
      background: rgba(255, 255, 255, 0.92);
      border-radius: 1px;
      transform: rotate(45deg);
      box-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
      opacity: 0.75;
    }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ─── FEATURES ─── */
    #features { background: var(--dark2); }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(18px, 2.8vw, 28px);
      max-width: 1100px;
      margin: 0 auto;
    }
    @media (max-width: 960px) {
      .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (max-width: 560px) {
      .features-grid {
        grid-template-columns: 1fr;
      }
    }
    .feature-card {
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,0.06);
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, border-color 0.3s;
      clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
    }
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--red), var(--orange));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s;
    }
    .feature-card:hover { transform: translateY(-6px); border-color: rgba(255,26,26,0.3); }
    .feature-card:hover::before { transform: scaleX(1); }

    .feature-icon-wrap {
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 6px 22px rgba(0, 0, 0, 0.32);
      color: rgba(248, 240, 242, 0.9);
      transition:
        border-color 0.25s,
        color 0.25s,
        box-shadow 0.25s,
        transform 0.35s cubic-bezier(0.34, 1.46, 0.64, 1);
    }
    .feature-card:hover .feature-icon-wrap {
      color: rgba(255, 172, 186, 0.98);
      border-color: rgba(255, 26, 26, 0.38);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 32px rgba(255, 26, 26, 0.12);
      transform: translateY(-2px);
    }
    .feature-icon-svg {
      width: 36px;
      height: 36px;
      display: block;
      flex-shrink: 0;
      overflow: visible;
      pointer-events: none;
    }
    .feature-title {
      font-family: var(--font-heading);
      font-size: 1.08rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--white);
    }
    .feature-desc { color: var(--gray); font-size: 1rem; line-height: 1.65; }

    /* ─── GAMES ─── (üst başlık hizası #features / #hardware ile aynı: sol) */
    #games {
      background: var(--dark);
    }
    #games .section-header {
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }
    .games-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: clamp(14px, 2.2vw, 22px);
      max-width: 1000px;
      margin: 0 auto;
    }
    @media (max-width: 900px) {
      .games-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (max-width: 420px) {
      .games-grid {
        grid-template-columns: 1fr;
      }
    }
    .game-card {
      background: var(--dark3);
      border: 1px solid rgba(255, 255, 255, 0.06);
      padding: 34px 16px 32px;
      text-align: center;
      cursor: default;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      clip-path: polygon(
        0 0,
        calc(100% - 16px) 0,
        100% 16px,
        100% 100%,
        16px 100%,
        0 calc(100% - 16px)
      );
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.35s;
    }
    .game-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--red), var(--orange));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
      z-index: 2;
    }
    .game-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 26, 26, 0.28);
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
    }
    .game-card:hover::before {
      transform: scaleX(1);
    }
    /* Yatay marka görselleri kare kutuda kesilmesin — wordmark için geniş alan, tam görsel için contain */
    .game-icon-wrap {
      box-sizing: border-box;
      width: 100%;
      max-width: 220px;
      height: 60px;
      padding: 4px 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.015));
      border: 1px solid rgba(255, 255, 255, 0.095);
      border-radius: 14px;
      position: relative;
      z-index: 1;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 7px 24px rgba(0, 0, 0, 0.32);
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.3s;
    }
    .game-card:hover .game-icon-wrap {
      border-color: rgba(255, 26, 26, 0.32);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 11px 32px rgba(255, 26, 26, 0.1);
      transform: translateY(-2px);
    }
    .game-icon-img {
      width: 100%;
      height: 100%;
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
      position: relative;
      z-index: 1;
      flex-shrink: 1;
    }
    .game-icon-img.game-icon-warzone-wordmark {
      mix-blend-mode: lighten;
      object-fit: contain;
      object-position: center;
    }
    .game-icon-more .game-icon-img {
      width: 40px;
      height: 40px;
      max-width: 100%;
      max-height: 100%;
      flex-shrink: 0;
      opacity: 1;
    }
    .game-icon-more {
      background: linear-gradient(145deg, rgba(255, 26, 26, 0.08), rgba(24, 8, 10, 0.75));
      border-color: rgba(255, 60, 70, 0.28);
    }
    .game-icon-svg {
      width: 28px;
      height: 28px;
      display: block;
      flex-shrink: 0;
    }
    .game-name {
      font-family: var(--font-display);
      font-size: 0.84rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      color: rgba(255, 255, 255, 0.95);
      position: relative;
      z-index: 1;
      line-height: 1.45;
      text-transform: none;
      max-width: 17ch;
    }

    @media (prefers-reduced-motion: reduce) {
      .game-card {
        transition: none;
      }
      .game-card:hover {
        transform: none;
      }
      .game-card::before {
        transition: none;
      }
      .game-icon-wrap {
        transition: none;
      }
      .game-card:hover .game-icon-wrap {
        transform: none;
      }
    }

    /* ─── HARDWARE ─── */
    #hardware { background: var(--dark2); }
    .hw-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }
    .hw-list { list-style: none; }
    .hw-list li {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      font-size: 1.05rem;
      font-weight: 500;
    }
    .hw-list li:last-child { border-bottom: none; }
    .hw-icon,
    .ci-icon {
      width: 52px;
      height: 52px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
      border: 1px solid rgba(255, 255, 255, 0.088);
      border-radius: 14px;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.065),
        0 7px 22px rgba(0, 0, 0, 0.28);
      color: rgba(248, 240, 242, 0.9);
    }
    .hw-icon .slot-icon-svg,
    .ci-icon .slot-icon-svg {
      width: 24px;
      height: 24px;
      color: inherit;
      flex-shrink: 0;
    }
    .hw-icon img {
      width: 28px;
      height: 28px;
      object-fit: contain;
      display: block;
      border-radius: 4px;
      flex-shrink: 0;
    }
    .ci-icon-img {
      width: 26px;
      height: 26px;
      object-fit: contain;
      display: block;
      flex-shrink: 0;
    }
    .hw-spec { color: rgba(173, 160, 170, 0.95); font-size: 0.94rem; margin-top: 3px; line-height: 1.52; font-family: var(--font-heading); font-weight: 500; }
    .hw-visual {
      background: var(--dark3);
      border: 1px solid rgba(255,26,26,0.2);
      padding: 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
      clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
    }
    .hw-visual::before {
      content: '';
      position: absolute;
      inset: -50%;
      background: radial-gradient(circle at center, rgba(255,26,26,0.15) 0%, transparent 60%);
      animation: pulse 3s ease-in-out infinite;
    }
    @keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.1);opacity:0.7} }
    .hw-visual-stack {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(14px, 3vw, 22px);
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }
    .hw-visual-stack .hw-visual-pair-icon .slot-icon-svg {
      width: 28px;
      height: 28px;
    }
    .hw-tagline {
      font-family: var(--font-display);
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--red);
      letter-spacing: 2px;
      margin-top: 16px;
      position: relative; z-index: 1;
    }

    /* ─── TURNUVA ─── */
    #turnuva { background: var(--dark); }
    .tournament-banner {
      max-width: 1200px;
      margin: 0 auto;
      background: linear-gradient(135deg, rgba(255,26,26,0.15) 0%, rgba(255,106,0,0.08) 100%);
      border: 1px solid rgba(255,26,26,0.3);
      padding: 56px clamp(24px, 10vw, 200px) 56px 60px;
      position: relative;
      overflow: hidden;
      clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    }
    .tournament-banner-logo-wrap {
      position: absolute;
      right: clamp(58px, 11vw, 120px);
      top: 50%;
      transform: translateY(-50%);
      width: min(188px, 35vw);
      height: min(188px, 35vw);
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      z-index: 0;
    }
    .tournament-banner-logo {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 0 18px rgba(255, 26, 26, 0.28));
    }
    @media (max-width: 720px) {
      .tournament-banner {
        padding: 32px 24px 28px;
        display: flex;
        flex-direction: column;
      }
      .tournament-banner-logo-wrap {
        position: static;
        transform: none;
        width: 100px;
        height: 100px;
        margin-top: 24px;
        align-self: center;
        opacity: 0.85;
      }
    }
    .tournament-banner > *:not(.tournament-banner-logo-wrap) {
      position: relative;
      z-index: 1;
    }
    .tournament-banner h3 {
      font-family: var(--font-heading);
      font-size: 1.55rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--white);
      letter-spacing: -0.02em;
    }
    .tournament-banner p {
      color: var(--gray);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 560px;
      margin-bottom: 28px;
      font-weight: 500;
    }
    .tag-list { display: flex; gap: 10px; flex-wrap: wrap; }
    .tag {
      background: rgba(255,26,26,0.15);
      border: 1px solid rgba(255,26,26,0.35);
      color: var(--red);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 14px;
    }

    /* ─── CONTACT ─── */
    #iletisim { background: var(--dark2); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: start;
    }
    .contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
    .contact-info-list li {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 1.05rem;
      font-weight: 500;
    }
    .contact-info-list a { color: var(--white); text-decoration: none; transition: color 0.2s; }
    .contact-info-list a:hover { color: var(--red); }
    .contact-info-list .ci-title {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 1.02rem;
      letter-spacing: -0.015em;
    }
    .contact-info-list .ci-sub {
      color: rgba(173, 160, 170, 0.98);
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 500;
      margin-top: 5px;
      line-height: 1.48;
    }
    .contact-info-list a.ci-sub-link {
      color: rgba(173, 160, 170, 0.98);
      margin-top: 5px;
      display: block;
      font-size: 1rem;
      font-family: var(--font-heading);
      font-weight: 500;
    }
    .map-widget {
      display: flex;
      flex-direction: column;
      gap: 14px;
      max-width: 100%;
    }
    .map-frame {
      position: relative;
      height: 260px;
      overflow: hidden;
      background: var(--dark3);
      border: 1px solid rgba(255, 26, 26, 0.2);
      clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    }
    .map-embed {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      border: 0;
    }
    a.map-google-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--red);
      color: #fff;
      text-decoration: none;
      font-family: var(--font-heading);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 1.2px;
      padding: 12px 24px;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      transition: background 0.2s, transform 0.2s;
      box-shadow: 0 4px 16px rgba(204, 0, 34, 0.2);
    }
    a.map-google-btn--below {
      width: 100%;
      box-sizing: border-box;
      text-align: center;
    }
    a.map-google-btn:hover {
      background: var(--orange);
      transform: translateY(-1px);
    }
    @media (max-width: 520px) {
      .map-frame,
      .map-embed {
        height: 220px;
      }
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark);
      border-top: 1px solid rgba(255,26,26,0.15);
      padding: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }
    .footer-logo {
      font-family: var(--font-brand);
      font-weight: 900;
      font-size: 1.2rem;
      background: linear-gradient(90deg, var(--red), var(--orange));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .footer-copy { color: var(--gray); font-size: 0.85rem; }
    .footer-social { display: flex; gap: 12px; }
    .social-btn {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: rgba(255, 246, 248, 0.72);
      background: rgba(255, 255, 255, 0.02);
      transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.25s;
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    }
    .social-btn .social-icon {
      width: 19px;
      height: 19px;
      display: block;
    }
    .social-btn:hover {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
      transform: translateY(-2px);
    }

    .link-chevron {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
    }
    .link-chevron .icon-chevron {
      width: 15px;
      height: 15px;
      flex-shrink: 0;
      opacity: 0.88;
    }

    /* ─── SECTION DIVIDER ─── */
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,26,26,0.4), transparent);
    }

    /* ─── GALLERY ─── */
    #galeri { background: var(--dark); }
    #galeri .section-header {
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: clamp(14px, 2.2vw, 22px);
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 clamp(16px, 3vw, 24px);
    }
    .gallery-card {
      position: relative;
      display: block;
      width: 100%;
      min-width: 0;
      padding: 0;
      background: var(--dark3);
      border: 1px solid rgba(255, 255, 255, 0.06);
      overflow: hidden;
      cursor: pointer;
      clip-path: polygon(
        0 0,
        calc(100% - 16px) 0,
        100% 16px,
        100% 100%,
        16px 100%,
        0 calc(100% - 16px)
      );
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.35s;
    }
    .gallery-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--red), var(--orange));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
      z-index: 2;
    }
    .gallery-card:hover,
    .gallery-card:focus-visible {
      transform: translateY(-6px);
      border-color: rgba(255, 26, 26, 0.28);
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
    }
    .gallery-card:hover::before,
    .gallery-card:focus-visible::before {
      transform: scaleX(1);
    }
    .gallery-card img {
      display: block;
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      object-position: center;
      transition: transform 0.45s ease;
    }
    .gallery-card:hover img {
      transform: scale(1.045);
    }
    .gallery-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 55%, rgba(10, 0, 5, 0.55));
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
      z-index: 1;
    }
    .gallery-card:hover::after {
      opacity: 1;
    }
    @media (prefers-reduced-motion: reduce) {
      .gallery-card,
      .gallery-card::before,
      .gallery-card img {
        transition: none;
      }
      .gallery-card:hover {
        transform: none;
      }
      .gallery-card:hover img {
        transform: none;
      }
    }

    /* ─── GALLERY LIGHTBOX ─── */
    .gallery-lightbox {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(16px, 4vw, 48px);
      background: rgba(5, 0, 3, 0.92);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }
    .gallery-lightbox[hidden] { display: none; }
    .gallery-lightbox-img {
      max-width: 100%;
      max-height: calc(100vh - 120px);
      object-fit: contain;
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    }
    .gallery-lightbox-btn {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      background: rgba(26, 0, 16, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.16);
      color: var(--white);
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .gallery-lightbox-btn:hover,
    .gallery-lightbox-btn:focus-visible {
      border-color: rgba(255, 26, 26, 0.55);
      color: var(--yellow);
      background: rgba(40, 0, 18, 0.85);
    }
    .gallery-lightbox-btn svg {
      width: 22px;
      height: 22px;
      pointer-events: none;
    }
    .gallery-lightbox-close { top: 18px; right: 18px; }
    .gallery-lightbox-prev { left: 14px; top: 50%; transform: translateY(-50%); }
    .gallery-lightbox-next { right: 14px; top: 50%; transform: translateY(-50%); }
    .gallery-lightbox-count {
      position: absolute;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--font-display);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--gray);
    }
    @media (max-width: 520px) {
      .gallery-lightbox { padding: 12px; }
      .gallery-lightbox-btn { width: 40px; height: 40px; }
      .gallery-lightbox-prev { left: 8px; }
      .gallery-lightbox-next { right: 8px; }
    }

    /* ─── SCROLL ANIMATIONS ─── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── RESPONSIVE ─── */
    /* Hamburger — taşma başlamadan. Masaüstü menü boyutu sayfalar arasında sabit. */
    @media (max-width: 1280px) {
      nav.site-nav {
        flex-wrap: wrap;
        align-items: center;
        padding: 14px 18px;
      }
      nav.site-nav .nav-toggle {
        display: inline-flex;
      }
      nav.site-nav .nav-links {
        display: none;
        width: 100%;
        flex-basis: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 6px 0 2px;
        margin: 10px 0 0;
        border-top: 1px solid rgba(255, 26, 26, 0.12);
      }
      nav.site-nav.nav-open .nav-links {
        display: flex;
      }
      nav.site-nav .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      nav.site-nav .nav-links li:last-child {
        border-bottom: none;
      }
      nav.site-nav .nav-links a {
        display: block;
        padding: 14px 4px;
        font-size: 15px !important;
        letter-spacing: 0.8px;
      }
      nav.site-nav .nav-links a::after { display: none; }
      nav.site-nav .nav-cta {
        text-align: center;
        align-self: center;
        margin-top: 6px;
        margin-bottom: 4px;
      }
    }
    @media (max-width: 900px) {
      #hero {
        padding: clamp(88px, 22vw, 120px) 20px 56px;
      }
      .hero-btns {
        flex-direction: column;
        align-items: stretch;
      }
      .hero-btns .btn-primary,
      .hero-btns .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
      }
      .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 16px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
      }
    }
    @media (max-width: 768px) {
      section { padding: 72px 24px; }
      .hw-layout, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      footer { flex-direction: column; text-align: center; align-items: center; }
      .tournament-banner { padding: 36px 28px; }
    }

nav.site-nav a.nav-logo {
  --nav-logo-scale: min(238px, 46.5vw);
  display: block;
  width: calc(1890 / 2500 * var(--nav-logo-scale));
  height: calc(426 / 2500 * var(--nav-logo-scale));
  max-height: 44px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  text-decoration: none;
}
nav.site-nav img.nav-logo-img {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--nav-logo-scale);
  height: var(--nav-logo-scale);
  max-width: none;
  max-height: none;
  display: block;
  transform: translate(-10.56%, -41.52%);
  transform-origin: top left;
}

/* ─── TURNUVA SAYFALARI (Planet Espor benzeri akış — Bizon teması ile) ─── */
.td-page-wrap {
  min-height: 100vh;
  padding: 124px 48px 96px;
  max-width: 1100px;
  margin: 0 auto;
}
body.td-event-page .td-page-wrap:not(.br-page-top) {
  padding-bottom: 56px;
}
.td-page-wrap--wide {
  max-width: 1240px;
}
.td-bc {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.5;
}
.td-bc a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.td-bc a:hover { color: var(--yellow); }
.td-game-pill {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255,26,26,0.45);
  color: var(--red);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  margin-bottom: 16px;
}
.td-main-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.62rem, 4.2vw, 2.15rem);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.td-chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 36px;
  margin-top: 4px;
}
.td-chip {
  font-family: var(--font-heading);
  background: rgba(255,26,26,0.12);
  border: 1px solid rgba(255,26,26,0.35);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.td-chip.trophy {
  position: relative;
  padding-left: 2.05rem;
  border-color: rgba(255,200,120,0.55);
  color: var(--yellow);
}
.td-chip.trophy::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: currentColor;
  opacity: 0.92;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2.8l2.25 7h7.35l-5.9 4.55 2.2 7.05L12 16.5l-5.9 4.85 2.2-7.05L2.5 9.8h7.35L12 2.8z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2.8l2.25 7h7.35l-5.9 4.55 2.2 7.05L12 16.5l-5.9 4.85 2.2-7.05L2.5 9.8h7.35L12 2.8z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.td-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 320px);
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .td-grid { grid-template-columns: 1fr; }
  .td-page-wrap { padding: 108px 24px 72px; }
}
.td-block {
  margin-bottom: 40px;
}
.td-block h2 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.td-block p, .td-block li {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}
.td-block ul {
  padding-left: 22px;
  margin-top: 8px;
}
.td-prize-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin-top: 8px;
}
.td-prize-list li {
  position: relative;
  padding: 12px 16px 12px 44px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, rgba(204, 0, 34, 0.08), rgba(255, 200, 60, 0.05));
  border-left: 3px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
}
.td-prize-list li::before {
  content: '🏆';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  filter: drop-shadow(0 0 4px rgba(255, 200, 60, 0.4));
}
.td-sidebar {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 26px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.td-sidebar h3 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.td-info-rows { list-style: none; padding: 0; margin: 0; }
.td-info-rows li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
}
.td-info-rows li span:first-child { color: var(--gray); }
.td-info-rows li span:last-child {
  font-weight: 600;
  color: var(--white);
  text-align: right;
}
.td-cta-wrap {
  margin-top: 22px;
}
.participant-bar {
  background: rgba(255,26,26,0.08);
  border: 1px solid rgba(255,26,26,0.2);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-weight: 600;
}
.participant-count { color: var(--red); }

.td-form-divider {
  max-width: 1100px;
  margin: 48px auto 36px;
  padding: 0 48px;
  box-sizing: border-box;
}

.td-form-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 100px;
}
@media (max-width: 900px) {
  .td-form-divider {
    margin: 36px auto 28px;
    padding: 0 24px;
  }
  .td-form-wrap { padding: 0 24px 80px; }
}

@media (max-width: 640px) {
  body.td-event-page .td-page-wrap:not(.br-page-top) {
    padding-bottom: 40px;
  }
  .td-form-divider {
    margin: 28px auto 24px;
    padding: 0 16px;
  }
  .td-form-wrap {
    padding: 0 16px 64px;
  }
  .td-form-title {
    font-size: 1.22rem;
    margin-bottom: 10px;
  }
  .td-form-sub {
    margin-bottom: 22px;
    font-size: 0.9rem;
  }
  .td-form-heading-spaced {
    margin-top: 26px;
    margin-bottom: 14px;
    padding-top: 4px;
  }
  .field-group label {
    font-size: 0.78rem;
    margin-bottom: 6px;
  }
  .field-group input,
  .field-group textarea {
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: 16px;
  }
  .td-form-submit {
    margin-top: 22px;
    max-width: none;
  }
}

.td-form-wrap--closed {
  padding-top: 0;
  padding-bottom: 80px;
}
.td-form-wrap--closed .td-form-title {
  color: rgba(255, 220, 220, 0.95);
}
.td-form-wrap--closed .td-form-sub {
  color: rgba(255, 255, 255, 0.78);
}
.td-form-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 3.1vw, 1.75rem);
  margin: 0 0 12px;
}
.td-form-sub {
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.6;
  font-size: 0.98rem;
}

.td-form-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 1.95vw, 0.96rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  color: rgba(248, 240, 242, 0.95);
}

.td-form-heading-spaced {
  margin-top: 32px;
  margin-bottom: 18px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-secondary-sm {
  padding: 10px 22px;
  font-size: 0.74rem;
  letter-spacing: 1.6px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.field-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--gray);
}
.field-group label .req { color: var(--red); }
.field-group input, .field-group textarea {
  width: 100%;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 18px;
  transition: border-color 0.2s;
}
.field-group input:focus, .field-group textarea:focus {
  outline: none;
  border-color: rgba(255,26,26,0.55);
}
.field-group textarea { min-height: 96px; resize: vertical; }
.player-dynamic {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px dashed rgba(255,255,255,0.1);
}
.player-roster {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pd-panel {
  padding: 22px 20px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}
.pd-panel--subs {
  background: rgba(251, 146, 60, 0.03);
  border-color: rgba(251, 146, 60, 0.14);
}
.pd-panel-head {
  margin-bottom: 18px;
}
.pd-panel-head .td-form-section-heading {
  margin-bottom: 6px;
}
.pd-panel-hint {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(173, 160, 170, 0.95);
  line-height: 1.5;
}
.pd-grid {
  display: grid;
  gap: 14px;
}
.pd-grid--main {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pd-grid--subs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pd-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  cursor: text;
}
.pd-field-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(173, 160, 170, 0.95);
}
.pd-field-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(248, 240, 242, 0.98);
  background: rgba(255, 26, 26, 0.16);
  border: 1px solid rgba(255, 26, 26, 0.32);
  flex-shrink: 0;
}
.pd-field-badge--sub {
  background: rgba(251, 146, 60, 0.14);
  border-color: rgba(251, 146, 60, 0.32);
  color: #fdba74;
}
.pd-field .pd-player-input {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  color: var(--white);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.pd-field .pd-player-input::placeholder {
  color: rgba(153, 119, 136, 0.65);
}
.pd-field .pd-player-input:hover {
  border-color: rgba(255, 255, 255, 0.14);
}
.pd-field .pd-player-input:focus {
  outline: none;
  border-color: rgba(255, 26, 26, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 26, 26, 0.12);
  background: rgba(0, 0, 0, 0.32);
}
.pd-panel--subs .pd-field .pd-player-input:focus {
  border-color: rgba(251, 146, 60, 0.5);
  box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.1);
}
.pd-panel--logo {
  margin-top: 18px;
}
.td-team-logo-field {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.td-team-logo-upload {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 280px;
  min-height: 88px;
  padding: 12px 16px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.td-team-logo-upload:hover {
  border-color: rgba(255, 26, 26, 0.35);
  background: rgba(255, 26, 26, 0.04);
}
.td-team-logo-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.td-team-logo-preview {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04) center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.td-team-logo-preview.has-image {
  border-color: rgba(255, 26, 26, 0.28);
}
.td-team-logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.td-team-logo-label {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}
.td-team-logo-hint {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.4;
}
.td-team-logo-clear {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--gray);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}
.td-team-logo-clear:hover {
  border-color: rgba(255, 26, 26, 0.35);
  color: var(--white);
}
.td-form-submit {
  margin-top: 28px;
  width: 100%;
  max-width: 360px;
}
@media (max-width: 640px) {
  .pd-grid--main,
  .pd-grid--subs {
    grid-template-columns: 1fr;
  }
  .pd-panel {
    padding: 18px 16px 16px;
  }
}
.player-dynamic .pd-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}
.player-dynamic p.hint {
  color: var(--gray);
  font-size: 0.98rem;
  margin-bottom: 18px;
  line-height: 1.55;
}
.player-dynamic p.hint.hint-tight {
  margin-bottom: 22px;
}

.pd-player-row {
  display: grid;
  grid-template-columns: minmax(112px, 158px) minmax(0, 1fr);
  gap: 12px 16px;
  align-items: center;
  margin-bottom: 18px;
}

.pd-remove-btn {
  flex: 0 0 48px;
  width: 48px;
  min-height: 48px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  background: rgba(120, 22, 38, 0.42);
  border: 1px solid rgba(255, 80, 90, 0.48);
  color: rgba(248, 240, 242, 0.95);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 300;
  transition:
    background 0.2s,
    border-color 0.2s;
  border-radius: 10px;
  padding: 0;
}

.pd-remove-btn:hover {
  background: rgba(204, 0, 34, 0.52);
  border-color: rgba(255, 140, 150, 0.55);
}

.pd-remove-btn[disabled],
.pd-remove-btn.is-disabled {
  cursor: not-allowed;
  opacity: 0.35;
  background: rgba(120, 22, 38, 0.18);
  border-color: rgba(255, 80, 90, 0.22);
}

.pd-remove-btn[disabled]:hover,
.pd-remove-btn.is-disabled:hover {
  background: rgba(120, 22, 38, 0.18);
  border-color: rgba(255, 80, 90, 0.22);
}

@media (max-width: 520px) {
  .pd-player-row {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: stretch;
  }

  .pd-remove-btn {
    flex: 0 0 44px;
    width: 44px;
    min-height: 44px;
  }
}

.tl-cat-title {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin: 1.5rem auto 0.5rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  max-width: 1100px;
}

.tl-archive-group .tl-game-block:first-child .tl-cat-title {
  margin-top: 0.25rem;
}

/* Oyun grupları (Valorant, CS2…) — masaüstünde yan yana sütunlar */
.tl-archive-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto 48px;
  padding-top: 8px;
  width: 100%;
}

.tl-game-block {
  width: 100%;
  min-width: 0;
}

.tl-game-block .tl-cards {
  margin-bottom: 28px;
}

@media (min-width: 800px) {
  .tl-archive-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 28px;
    align-items: flex-start;
  }

  .tl-archive-list > .tl-game-block {
    flex: 1 1 calc(50% - 14px);
  }

  .tl-archive-group .tl-archive-list > .tl-game-block .tl-cat-title {
    margin-top: 0;
  }

  .tl-game-block .tl-cards {
    margin-bottom: 0;
    max-width: none;
    grid-template-columns: 1fr;
  }
}

.tl-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 8px;
  box-sizing: border-box;
}
.tl-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
  height: 100%;
  transition: transform 0.25s, border-color 0.25s;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}
.tl-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,26,26,0.35);
}

.tl-card .tl-detail-hit {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  text-decoration: none;
  color: inherit;
}

.tl-card-thumb-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% + 56px);
  max-width: none;
  margin: -28px -28px 14px -28px;
  padding: 18px 20px 16px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(ellipse 85% 120% at 50% -10%, rgba(255, 40, 50, 0.12), transparent 55%),
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.06), rgba(14, 14, 22, 0.55));
}

.tl-card-thumb-banner .tl-card-thumb {
  width: 76px;
  height: 76px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.tl-hit-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
}

.tl-card-thumb {
  object-fit: contain;
  display: block;
}

@media (max-width: 420px) {
  .tl-hit-body .tl-status-slot {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .tl-card .tl-meta {
    align-items: center;
    text-align: center;
  }
  .tl-card-lead {
    align-items: center;
    text-align: center;
  }
  .tl-card .tl-stats-row {
    justify-content: center;
    text-align: center;
  }
}

.td-cover-bar {
  margin: -4px 0 22px;
  display: flex;
  justify-content: flex-start;
}

.td-cover-thumb {
  width: 88px;
  height: 88px;
  object-fit: contain;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 520px) {
  .td-cover-bar {
    justify-content: center;
  }
}

.tl-card-lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.tl-card .tl-game {
  display: inline-block;
  flex-shrink: 0;
  font-size: 0.74rem;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  line-height: 1.35;
}

.tl-card .tl-title {
  display: block;
  width: 100%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.92rem, 2.35vw, 1.06rem);
  line-height: 1.42;
  margin: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

.tl-card .tl-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2px;
  min-width: 0;
  font-size: 0.92rem;
  color: var(--gray);
}

.tl-stats-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  row-gap: 6px;
}

.tl-recruit-line {
  color: rgba(180, 196, 210, 0.85);
}

.tl-stats-sep {
  color: rgba(180, 196, 210, 0.45);
  font-weight: 500;
}

.tl-prize-inline {
  font-weight: 600;
  color: rgba(232, 220, 224, 0.88);
}

.tl-card.tl-card--closed .tl-prize-inline {
  color: rgba(176, 160, 170, 0.92);
}

.tl-card .tl-meta .tl-status-line {
  display: block;
  line-height: 1.4;
}

.td-msg-err {
  background: rgba(180,40,60,0.2);
  border: 1px solid rgba(255,80,90,0.5);
  color: var(--yellow);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.96rem;
  display: none;
}
.td-msg-err.show { display: block; }

/* Takım tabanlı başvuru paneli */
.td-apply-panel { margin-top: 8px; }
.td-apply-loading { color: var(--gray); padding: 18px 0; }
.td-apply-box {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 26px 24px;
  max-width: 560px;
}
.td-apply-msg {
  color: rgba(255,255,255,0.86);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 18px;
}
.td-apply-msg--ok { color: #39d98a; }
.td-apply-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.td-apply-actions .btn-primary,
.td-apply-actions .btn-secondary { flex: 1; min-width: 140px; text-align: center; }

/* Başvuru gönderildi — modern toast */
.bizon-app-toast {
  position: fixed;
  z-index: 10040;
  left: 50%;
  bottom: 28px;
  transform: translate3d(-50%, 140%, 0);
  max-width: min(420px, calc(100vw - 36px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.42s;
}
.bizon-app-toast.bizon-app-toast--visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 0, 0);
  pointer-events: auto;
  transition:
    opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}
.bizon-app-toast-panel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px 15px;
  border-radius: 14px;
  border: 1px solid rgba(74, 220, 160, 0.38);
  background: linear-gradient(
    155deg,
    rgba(26, 40, 34, 0.97),
    rgba(18, 22, 30, 0.98)
  );
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.bizon-app-toast-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(64, 210, 150, 0.14);
  border: 1px solid rgba(90, 230, 170, 0.35);
  color: #7cf0c8;
}
.bizon-app-toast-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.bizon-app-toast-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.bizon-app-toast-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: rgba(252, 250, 252, 0.98);
}
.bizon-app-toast-sub {
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(182, 196, 210, 0.92);
}
@media (prefers-reduced-motion: reduce) {
  .bizon-app-toast,
  .bizon-app-toast.bizon-app-toast--visible {
    transition-duration: 0.01ms;
    transition-delay: 0ms;
  }
}

/* Turnuva liste sayfası: açık / kapalı blokları ve rozetler */
.tl-archive-group .tl-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 26, 26, 0.2);
}
.tl-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.22rem, 3.1vw, 1.52rem);
  letter-spacing: 1px;
  margin: 0;
}
.tl-leg-pill {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.tl-leg-pill-open {
  background: rgba(40, 200, 120, 0.12);
  border: 1px solid rgba(80, 220, 150, 0.45);
  color: #7af0b8;
}
.tl-leg-pill-closed {
  background: rgba(153, 119, 136, 0.15);
  border: 1px solid rgba(153, 119, 136, 0.45);
  color: var(--gray);
}
.tl-archive-muted .tl-archive-list,
.tl-archive-muted .tl-cards {
  opacity: 0.92;
}
.tl-cards-empty {
  color: var(--gray);
  font-size: 0.98rem;
  margin: 8px 0 20px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid rgba(153, 119, 136, 0.5);
}
.tl-card .tl-status-slot {
  display: block;
  margin-bottom: 0;
}
.tl-row-badge {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  display: inline-block;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.tl-row-badge-open {
  background: rgba(40, 200, 120, 0.15);
  border: 1px solid rgba(80, 220, 150, 0.4);
  color: #84f5c9;
}
.tl-row-badge-closed {
  background: rgba(100, 60, 75, 0.35);
  border: 1px solid rgba(153, 119, 136, 0.5);
  color: #c9aab8;
}
.tl-row-badge-live {
  background: rgba(255, 26, 26, 0.16);
  border: 1px solid rgba(255, 80, 80, 0.45);
  color: #ff8a8a;
}
.tl-row-badge-done {
  background: rgba(243, 186, 47, 0.16);
  border: 1px solid rgba(243, 186, 47, 0.4);
  color: #f3ba2f;
}
.tl-row-badge-wait {
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.38);
  color: #fbbf24;
}
.tl-card.tl-card--ongoing,
.tl-card.tl-card--finished {
  filter: none;
}
.tl-card.tl-card--closed {
  border-color: rgba(153, 119, 136, 0.2);
  filter: saturate(0.88);
}
.tl-card.tl-card--closed .tl-game {
  color: var(--gray);
}
.tl-card .tl-meta > .tl-status-line {
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: rgba(248, 240, 242, 0.78);
}

.tl-card.tl-card--closed .tl-meta > .tl-status-line {
  color: rgba(196, 180, 190, 0.88);
  font-weight: 500;
}

.td-chip.td-chip-muted {
  opacity: 0.85;
  border-color: rgba(153, 119, 136, 0.45);
  color: var(--gray);
}

/* Detay / ağaç sayfası alt gezinme (Optimi sekmeler hissi — Bizon tema) */
.td-event-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 26, 26, 0.15);
}
.td-event-nav-link {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gray);
  padding: 10px 16px;
  border: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.td-event-nav-link:hover {
  color: var(--white);
  border-color: rgba(255, 26, 26, 0.35);
}
.td-event-nav-link.td-event-nav-current {
  color: var(--white);
  background: rgba(255, 26, 26, 0.12);
  border-color: rgba(255, 26, 26, 0.45);
}

/* Ortak turnuva sayfa üst bilgisi (Genel / Katılım / Ağaç) */
body.td-event-page .td-page-wrap {
  padding-top: 132px;
}

.td-event-header {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}

.td-event-header .td-bc {
  margin-bottom: 20px;
}

.td-event-header .td-main-title {
  margin-bottom: 12px;
}

.td-event-caption {
  margin: 0 0 18px;
  max-width: 640px;
  line-height: 1.5;
}

.td-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}

.td-meta-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  min-width: 120px;
}

.td-meta-chip-k {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(173, 160, 170, 0.95);
  font-weight: 600;
}

.td-meta-chip-v {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
}

.td-event-page .td-event-nav {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: 18px;
}

.td-event-page .td-event-nav::-webkit-scrollbar {
  display: none;
}

.td-event-page .td-event-nav-link {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 640px) {
  body.td-event-page .td-page-wrap {
    padding-top: 100px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .td-event-header .td-bc {
    font-size: 0.82rem;
    margin-bottom: 14px;
  }

  .td-meta-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .td-meta-chip {
    min-width: 0;
    padding: 9px 12px;
  }
}

@media (max-width: 380px) {
  .td-meta-chips {
    grid-template-columns: 1fr;
  }
}

.tl-detail-hit {
  color: inherit;
  text-decoration: none;
}
.tl-detail-hit:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}
.tl-extra-row {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}
.tl-bracket-anchor {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s;
}
.tl-bracket-anchor:hover {
  color: var(--yellow);
}

/* Turnuva ağacı sayfası */
.tb-notfound {
  padding: 140px 40px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  color: var(--gray);
}
.tb-notfound h1 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 12px;
}
.tb-notfound p {
  line-height: 1.6;
  margin-bottom: 28px;
}
.tb-main {
  min-height: 100vh;
}

/* Turnuva ağacı — kompakt header, ağaca yakın düzen */
.td-bracket-page .br-page-top {
  min-height: 0;
  padding-bottom: 48px;
}

.td-bracket-page .td-event-header {
  margin-bottom: 0;
}

.td-bracket-page .td-event-header .td-main-title {
  margin-bottom: 8px;
}

.td-bracket-page .td-event-header .td-bc {
  margin-bottom: 16px;
}

.td-bracket-page .td-event-nav {
  margin-bottom: 14px;
}

.br-header-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-bottom: 4px;
}

.br-header-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.45;
  max-width: 640px;
}

.br-header-note:empty {
  display: none;
}

.td-bracket-page .tb-champion.participant-bar {
  margin-top: 0;
  padding: 8px 12px;
  max-width: none;
  flex: 0 1 auto;
}

.td-bracket-page .bracket-layout-shell {
  max-width: none;
  margin: 0;
  padding: 8px 0 0;
  gap: 28px;
}

.td-bracket-page .bracket-pane-head {
  justify-content: flex-end;
  margin-bottom: 8px;
  min-height: 0;
}

.td-bracket-page .bracket-legend {
  margin-bottom: 12px;
  padding: 10px 12px;
  font-size: 0.86rem;
  gap: 6px;
}

@media (max-width: 940px) {
  .td-bracket-page .br-page-top {
    padding-bottom: 36px;
  }

  .td-bracket-page .bracket-layout-shell {
    padding-top: 6px;
    gap: 20px;
  }
}

.tb-hero-strip {
  max-width: 1100px;
  margin: 0 auto;
}
.tb-hero-live {
  margin-bottom: 14px;
}
.tb-live-count {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 3px;
  color: var(--white);
  background: rgba(255, 26, 26, 0.2);
  border: 1px solid rgba(255, 102, 102, 0.45);
  padding: 8px 16px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.tb-hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.45rem, 3.95vw, 2.12rem);
  line-height: 1.25;
  margin-top: 8px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.tb-hero-meta {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.65;
}
.tb-hero-note {
  margin-top: 20px;
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.65;
  max-width: 720px;
}
.tb-champion.participant-bar {
  margin-top: 16px;
  text-align: left;
  max-width: 420px;
  border-color: rgba(255, 200, 120, 0.35);
  background: rgba(255, 26, 26, 0.06);
}
.tb-champion-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #7af0b8;
}

.bracket-layout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 48px 72px;
  align-items: start;
}
@media (max-width: 940px) {
  .bracket-layout-shell {
    grid-template-columns: 1fr;
    padding: 32px 24px 56px;
  }
}

.bracket-pane-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin-bottom: 14px;
}

.bracket-pane-head .bracket-pane-title {
  margin: 0;
}

.br-toggle-tree-btn {
  flex-shrink: 0;
}

.bracket-pane-title {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.bracket-legend {
  margin: 0 0 20px;
  padding: 14px 16px;
  background: var(--dark3);
  border: 1px solid rgba(255, 26, 26, 0.14);
  border-left: 3px solid rgba(255, 26, 26, 0.55);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 100%;
}
.bracket-legend-item {
  display: block;
}
.bracket-legend-item strong {
  color: var(--red);
}
.br-legend-win {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.br-legend-swatch {
  width: 6px;
  height: 22px;
  background: linear-gradient(180deg, #3ddc84, #1fa855);
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(46, 204, 113, 0.45);
}

.tb-side-caption {
  font-size: 0.98rem;
  color: var(--gray);
  margin: -6px 0 16px;
  line-height: 1.5;
}

.bracket-board {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.bracket-board-tree .bt-arena-shell {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(165deg, rgba(24, 26, 32, 0.97), rgba(10, 10, 14, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: clamp(12px, 2vw, 22px) clamp(8px, 1.2vw, 16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 50px rgba(0, 0, 0, 0.5);
}

.bracket-board-tree .bt-zoom-viewport {
  overflow-x: auto;
  overflow-y: auto;
  width: 100%;
  max-height: min(84vh, 960px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 6px 4px 56px;
  scrollbar-color: rgba(46, 204, 113, 0.35) var(--dark2);
  scroll-behavior: smooth;
}

.bracket-board-tree .bt-zoom-layer {
  position: relative;
  transform-origin: top left;
  min-width: 100%;
  width: max-content;
  max-width: none;
  box-sizing: border-box;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.bracket-board-tree .bt-zoom-layer > .bt-line-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bt-zoom-controls {
  position: absolute;
  right: clamp(10px, 2vw, 18px);
  bottom: clamp(10px, 2vw, 16px);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  border-radius: 11px;
  background: rgba(14, 16, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bt-zoom-btn {
  width: 34px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(28, 30, 38, 0.95);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s,
    color 0.15s,
    transform 0.15s;
}
.bt-zoom-btn:hover {
  border-color: rgba(46, 204, 113, 0.45);
  background: rgba(46, 204, 113, 0.12);
  color: #b8ffd9;
}
.bt-zoom-btn:active {
  transform: scale(0.96);
}
.bt-zoom-btn-reset {
  font-size: 0.92rem;
}
.bt-zoom-readout {
  display: inline-block;
  min-width: 3rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(248, 240, 242, 0.55);
  user-select: none;
}

.bt-columns {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: clamp(10px, 1.8vw, 22px);
  min-height: max(620px, min(88dvh, var(--bt-tree-min-px, 720px)));
  padding-right: 8px;
}

.bt-column {
  flex: 0 1 auto;
  min-width: clamp(118px, 16vw, 260px);
  max-width: 320px;
  display: flex;
  flex-direction: column;
}

.bt-col-head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.6rem, 1.65vw, 0.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 240, 242, 0.55);
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.35;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.bt-col-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.35);
  color: #7af0b8;
  font-size: 0.85em;
  vertical-align: middle;
}

.bt-col-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.bt-col-title-text {
  color: rgba(248, 240, 242, 0.75);
}

.bt-col-match-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 3px 9px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: clamp(0.66rem, 1.75vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #b8ffd9;
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.42);
}

.bt-column-stack {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  justify-content: center;
  align-items: stretch;
  gap: var(--bt-stack-gap, clamp(14px, 2vw, 22px));
  min-height: 0;
}

.bt-cell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: clamp(10px, 1.8vw, 18px) clamp(10px, 2vw, 18px);
  flex: 0 0 auto;
  align-self: stretch;
  min-height: max(
    108px,
    calc(var(--bt-base, 96px) * var(--bt-mult, 1))
  );
  height: auto;
}

.bt-x {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  margin-top: -5px;
  z-index: 3;
  pointer-events: none;
}
.bt-x-entry {
  left: 0;
  margin-left: -5px;
}
.bt-x-exit {
  right: 0;
  margin-right: -5px;
}

.bt-cell-inner {
  width: 100%;
  max-width: min(100%, 300px);
  overflow-x: hidden;
  overflow-y: visible;
}

.bt-match-block {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1.2vw, 10px);
  width: 100%;
}

.bt-team-slot {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: clamp(9px, 1.6vw, 12px) clamp(11px, 2vw, 14px);
  min-height: 44px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: box-shadow 0.2s, border-color 0.2s, opacity 0.2s;
}

.bt-team-slot.is-winner {
  background: linear-gradient(
    90deg,
    rgba(46, 204, 113, 0.42),
    rgba(46, 204, 113, 0.12) 45%,
    rgba(46, 204, 113, 0.03)
  );
  border-color: rgba(61, 220, 132, 0.55);
  box-shadow:
    0 0 10px rgba(46, 204, 113, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.bt-team-slot.is-winner .bt-team-name {
  color: #fff;
  font-weight: 700;
}

.bt-team-slot.is-loser {
  opacity: 0.42;
  filter: saturate(0.75);
}

.bt-team-slot.is-tbd .bt-team-name {
  color: var(--gray);
  font-weight: 500;
  font-style: italic;
}

.bt-avatar {
  width: clamp(24px, 4vw, 30px);
  height: clamp(24px, 4vw, 30px);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(0.58rem, 1.45vw, 0.72rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  background: radial-gradient(circle at 32% 28%, rgba(90, 88, 110, 0.9), rgba(26, 26, 34, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bt-avatar--glyph {
  font-size: 0;
  line-height: 0;
}

.bt-avatar-svg {
  width: 58%;
  height: 58%;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.55);
}

.bt-team-slot.is-winner .bt-avatar {
  border-color: rgba(61, 220, 132, 0.6);
  box-shadow: 0 0 12px rgba(46, 204, 113, 0.35);
}

.bt-team-name {
  font-family: var(--font-body);
  font-size: clamp(0.74rem, 1.85vw, 0.94rem);
  font-weight: 600;
  line-height: 1.33;
  flex: 1 1 auto;
  min-width: 0;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: manual;
  color: rgba(248, 240, 242, 0.9);
}

.bt-score-micro {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(0.52rem, 1.4vw, 0.64rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(180, 200, 210, 0.38);
}

@media (max-width: 899px) {
  .bracket-board-tree .bt-zoom-layer > .bt-line-svg {
    display: none;
  }
  .bt-column {
    min-width: 0;
    max-width: none;
    flex: none;
  }
  .bt-columns {
    flex-direction: column;
    gap: 0;
    min-height: 0 !important;
  }
  .bt-column + .bt-column {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .bt-col-head {
    text-align: left;
  }
  .bt-cell {
    height: auto !important;
    min-height: 0 !important;
    flex: none !important;
    padding: 8px 0;
    flex-shrink: 0;
  }
  .bt-column-stack {
    gap: 16px;
  }
  .bt-cell-inner {
    max-width: none;
  }
  .bt-x-entry,
  .bt-x-exit {
    display: none;
  }
}

@media (min-width: 900px) and (max-width: 1100px) {
  .bt-columns {
    gap: 6px;
  }
}

.bracket-team-list {
  margin: 0;
  padding: 0 0 16px;
  list-style: none;
}
.bracket-team-li {
  font-size: 1rem;
  padding: 10px 0 10px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--white);
}
.bracket-team-li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 10px;
  background: var(--red);
  border-radius: 50%;
}
.tp-team-li-sub {
  display: block;
  margin-top: 6px;
  margin-left: 18px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}
.tp-empty-li {
  opacity: 0.85;
}
.bracket-back-link {
  display: inline-block;
  padding: 10px 20px !important;
  margin-top: 8px;
  font-family: var(--font-display) !important;
  font-size: 0.72rem !important;
}

/* ─── Katılım grid (participants page) ─── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tp-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.tp-meta-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  min-width: 120px;
}
.tp-meta-chip-k {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(173, 160, 170, 0.95);
  font-weight: 600;
}
.tp-meta-chip-v {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
}

.tp-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.tp-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  background: rgba(18, 12, 16, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  min-height: 92px;
}
.tp-stat-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tp-stat-icon svg {
  width: 22px;
  height: 22px;
}
.tp-stat-icon--total {
  background: rgba(140, 90, 255, 0.14);
  color: #b794ff;
  border: 1px solid rgba(140, 90, 255, 0.28);
}
.tp-stat-icon--approved {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.28);
}
.tp-stat-icon--pending {
  background: rgba(251, 146, 60, 0.12);
  color: #fb923c;
  border: 1px solid rgba(251, 146, 60, 0.28);
}
.tp-stat-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.tp-stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(173, 160, 170, 0.95);
  font-weight: 600;
}
.tp-stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.tp-stat-sub {
  font-size: 0.82rem;
  color: rgba(173, 160, 170, 0.88);
  font-weight: 500;
}

.tp-participants {
  margin-top: 8px;
}

/* Katılım sayfası — eski istatistik / meta chip satırını gizle */
body.tp-participants-page .tp-stats-grid,
body.tp-participants-page .tp-meta-chips,
body.tp-participants-page #tp-meta-chips,
body.tp-participants-page #tp-stats {
  display: none !important;
}
.tp-toolbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px 16px;
  align-items: center;
  margin-bottom: 14px;
}
.tp-section-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}
.tp-search-wrap {
  position: relative;
  display: block;
}
.tp-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgba(173, 160, 170, 0.85);
  pointer-events: none;
}
.tp-search-input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 12px 14px 12px 42px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 10px;
}
.tp-search-input:focus {
  outline: none;
  border-color: rgba(255, 26, 26, 0.45);
}
.tp-sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.tp-sort-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(173, 160, 170, 0.95);
  font-weight: 600;
}
.tp-sort-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  border-radius: 10px;
  max-width: 220px;
}
.tp-list-caption {
  margin: 0 0 16px;
}

.tp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.tp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 16px 18px;
  background: rgba(18, 12, 16, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  min-height: 260px;
  transition: border-color 0.2s, transform 0.2s;
}
.tp-card:hover {
  border-color: rgba(255, 26, 26, 0.28);
  transform: translateY(-2px);
}
.tp-card-index {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 0.82rem;
  color: rgba(173, 160, 170, 0.75);
  font-weight: 600;
}
.tp-card-logo-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 14px;
  overflow: hidden;
  flex-shrink: 0;
}
.tp-card-logo-wrap--team {
  background: rgba(12, 8, 10, 0.95);
  padding: 0;
}
.tp-card-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.tp-card-logo--team {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.tp-card-logo-fallback {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.tp-card-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px;
  line-height: 1.25;
  max-width: 100%;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
}
.tp-card-verified {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: #b794ff;
  flex-shrink: 0;
}
.tp-card-verified svg {
  display: block;
  width: 100%;
  height: 100%;
}
.tp-card-captain,
.tp-card-date {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(173, 160, 170, 0.95);
  line-height: 1.4;
}
.tp-card-date {
  margin-top: 4px;
  margin-bottom: 14px;
  font-size: 0.8rem;
  color: rgba(153, 140, 150, 0.95);
}

.tp-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  width: 100%;
  max-width: 220px;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tp-status--onaylandi {
  color: #4ade80;
  background: rgba(22, 101, 52, 0.35);
  border: 1px solid rgba(74, 222, 128, 0.35);
  box-shadow: inset 0 0 24px rgba(34, 197, 94, 0.08);
}
.tp-status--beklemede {
  color: #fb923c;
  background: rgba(124, 45, 18, 0.35);
  border: 1px solid rgba(251, 146, 60, 0.35);
  box-shadow: inset 0 0 24px rgba(251, 146, 60, 0.08);
}

.tp-empty-msg {
  text-align: center;
  color: rgba(173, 160, 170, 0.95);
  padding: 28px 12px;
}

.tp-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.tp-page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(220, 205, 214, 0.95);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.tp-page-btn:hover:not(:disabled) {
  border-color: rgba(255, 26, 26, 0.35);
  color: var(--white);
}
.tp-page-btn.is-active {
  background: rgba(140, 90, 255, 0.28);
  border-color: rgba(183, 148, 255, 0.45);
  color: #fff;
}
.tp-page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.tp-page-dots {
  color: rgba(173, 160, 170, 0.75);
  padding: 0 4px;
}

@media (max-width: 1100px) {
  .tp-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .tp-stats-grid {
    grid-template-columns: 1fr;
  }
  .tp-toolbar {
    grid-template-columns: 1fr;
  }
  .tp-sort-wrap {
    justify-content: space-between;
  }
  .tp-sort-select {
    max-width: none;
    flex: 1;
  }
  .tp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .tp-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── FİYATLAR SAYFASI ─── */
body.fp-page {
  --fp-red: #cc1111;
  --fp-red-bright: #ff2222;
  --fp-red-glow: rgba(200, 0, 0, 0.6);
  --fp-red-dim: rgba(200, 0, 0, 0.15);
  --fp-gold: #c8922a;
  --fp-gold-bright: #f0b030;
  --fp-diamond: #7b5ea7;
  --fp-diamond-bright: #a076d4;
  --fp-bg: #05030a;
  --fp-text: #e8e0e0;
  --fp-text-dim: rgba(232, 224, 224, 0.55);
  background: var(--fp-bg);
  color: var(--fp-text);
  min-height: 100vh;
  padding-top: 76px;
}

body.fp-page .fp-bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 15% 0%, rgba(180, 0, 0, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 100%, rgba(100, 0, 0, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(60, 0, 0, 0.1) 0%, transparent 70%);
}

body.fp-page .fp-grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(200, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

body.fp-page .fp-hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px 20px;
  text-align: center;
}

body.fp-page .fp-logo-wrap {
  position: relative;
  margin-bottom: 16px;
}

body.fp-page .fp-logo-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(200, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(80, 0, 0, 0.4), #000);
  overflow: hidden;
  animation: fpLogoGlow 3s ease-in-out infinite;
  position: relative;
}

body.fp-page .fp-logo-ring::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: conic-gradient(from 0deg, transparent 0%, var(--fp-red) 25%, transparent 50%, var(--fp-red-bright) 75%, transparent 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: fpSpin 4s linear infinite;
}

body.fp-page .fp-logo-ring img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
}

@keyframes fpLogoGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(200, 0, 0, 0.4), 0 0 60px rgba(200, 0, 0, 0.15); }
  50% { box-shadow: 0 0 50px rgba(200, 0, 0, 0.7), 0 0 100px rgba(200, 0, 0, 0.25); }
}

@keyframes fpSpin {
  to { transform: rotate(360deg); }
}

body.fp-page .fp-brand {
  font-family: 'Orbitron', monospace;
  font-size: clamp(22px, 4.5vw, 38px);
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 1;
}

body.fp-page .fp-brand span {
  color: var(--fp-red-bright);
}

body.fp-page .fp-esports-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  letter-spacing: 8px;
  color: var(--fp-red);
  text-transform: uppercase;
  margin: 4px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.fp-page .fp-esports-tag::before,
body.fp-page .fp-esports-tag::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fp-red));
}

body.fp-page .fp-esports-tag::after {
  background: linear-gradient(90deg, var(--fp-red), transparent);
}

body.fp-page .fp-welcome-text {
  font-size: clamp(13px, 2vw, 15px);
  color: var(--fp-text-dim);
  font-weight: 300;
  letter-spacing: 1px;
  max-width: 520px;
  line-height: 1.6;
}

body.fp-page .fp-divider {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 900px;
  margin: 0 auto 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fp-red), rgba(200, 100, 0, 0.5), var(--fp-red), transparent);
}

body.fp-page .fp-section-title {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  letter-spacing: 6px;
  color: var(--fp-text-dim);
  text-transform: uppercase;
  margin-bottom: 16px;
}

body.fp-page .fp-packages {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

body.fp-page .fp-card {
  border-radius: 18px;
  padding: 18px 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
  animation: fpFadeUp 0.6s ease both;
}

body.fp-page .fp-card:nth-child(1) { animation-delay: 0.1s; }
body.fp-page .fp-card:nth-child(2) { animation-delay: 0.2s; }
body.fp-page .fp-card:nth-child(3) { animation-delay: 0.3s; }
body.fp-page .fp-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fpFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

body.fp-page .fp-card:hover {
  transform: translateY(-6px);
}

body.fp-page .fp-card.fp-silver {
  background: linear-gradient(145deg, rgba(180, 190, 200, 0.07), rgba(120, 130, 140, 0.04));
  border-color: rgba(180, 190, 210, 0.2);
}

body.fp-page .fp-card.fp-silver:hover { box-shadow: 0 12px 40px rgba(180, 190, 210, 0.15); }
body.fp-page .fp-card.fp-silver .fp-card-badge { background: linear-gradient(135deg, #8a9bb0, #b0c4de); }
body.fp-page .fp-card.fp-silver .fp-price-bar { border-color: rgba(176, 196, 222, 0.4); color: #b0c4de; }

body.fp-page .fp-card.fp-gold {
  background: linear-gradient(145deg, rgba(200, 146, 42, 0.1), rgba(150, 100, 20, 0.05));
  border-color: rgba(200, 146, 42, 0.3);
}

body.fp-page .fp-card.fp-gold:hover { box-shadow: 0 12px 40px rgba(200, 146, 42, 0.2); }
body.fp-page .fp-card.fp-gold .fp-card-badge { background: linear-gradient(135deg, #c8922a, #f0c060); }
body.fp-page .fp-card.fp-gold .fp-price-bar { border-color: rgba(200, 146, 42, 0.5); color: var(--fp-gold-bright); }

body.fp-page .fp-card.fp-diamond {
  background: linear-gradient(145deg, rgba(123, 94, 167, 0.12), rgba(80, 50, 130, 0.06));
  border-color: rgba(123, 94, 167, 0.35);
}

body.fp-page .fp-card.fp-diamond:hover { box-shadow: 0 12px 40px rgba(123, 94, 167, 0.25); }
body.fp-page .fp-card.fp-diamond .fp-card-badge { background: linear-gradient(135deg, #7b5ea7, #b090e0); }
body.fp-page .fp-card.fp-diamond .fp-price-bar { border-color: rgba(176, 144, 224, 0.5); color: var(--fp-diamond-bright); }

body.fp-page .fp-card.fp-elite {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(180, 180, 180, 0.02));
  border-color: rgba(200, 200, 200, 0.2);
}

body.fp-page .fp-card.fp-elite:hover { box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1); }
body.fp-page .fp-card.fp-elite .fp-card-badge {
  background: linear-gradient(135deg, #1a1a1a, #4a4a4a);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
body.fp-page .fp-card.fp-elite .fp-price-bar { border-color: rgba(200, 200, 200, 0.3); color: #e0e0e0; }

body.fp-page .fp-card-badge {
  display: inline-block;
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  color: #fff;
  margin-bottom: 12px;
}

body.fp-page .fp-price-bar {
  font-family: 'Orbitron', monospace;
  font-size: 19px;
  font-weight: 900;
  border: 1px solid;
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

body.fp-page .fp-price-bar .fp-per {
  font-size: 11px;
  font-weight: 400;
  color: var(--fp-text-dim);
  letter-spacing: 1px;
}

body.fp-page .fp-spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.fp-page .fp-spec-list li {
  font-size: 12px;
  color: var(--fp-text-dim);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

body.fp-page .fp-spec-list li::before {
  content: '›';
  font-size: 16px;
  line-height: 1.2;
  color: inherit;
  opacity: 0.7;
  flex-shrink: 0;
}

body.fp-page .fp-spec-list li strong {
  color: var(--fp-text);
  font-weight: 600;
}

body.fp-page .fp-pricing-section {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 50px auto 0;
  padding: 28px 30px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(200, 0, 0, 0.2);
  text-align: center;
}

body.fp-page .fp-pricing-section h3 {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--fp-red);
  margin-bottom: 14px;
  text-transform: uppercase;
}

body.fp-page .fp-pricing-main {
  font-size: 15px;
  color: var(--fp-text-dim);
  margin-bottom: 20px;
  line-height: 1.7;
}

body.fp-page .fp-pricing-main strong {
  color: var(--fp-red-bright);
}

body.fp-page .fp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

body.fp-page .fp-pricing-item {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 13px;
  color: var(--fp-text-dim);
  line-height: 1.5;
}

body.fp-page .fp-pricing-item strong {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

body.fp-page .fp-pricing-item.fp-s strong { color: #b0c4de; }
body.fp-page .fp-pricing-item.fp-g strong { color: var(--fp-gold-bright); }
body.fp-page .fp-pricing-item.fp-d strong { color: var(--fp-diamond-bright); }
body.fp-page .fp-pricing-item.fp-e strong { color: var(--fp-red-bright); }

body.fp-page .fp-page-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px 20px 18px;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
}

body.fp-page .fp-pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fp-red);
  margin-right: 8px;
  vertical-align: middle;
  animation: fpPulse 2s infinite;
  box-shadow: 0 0 6px var(--fp-red);
}

@keyframes fpPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@media (max-width: 900px) {
  body.fp-page .fp-packages {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  body.fp-page .fp-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  body.fp-page .fp-packages {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 700px) {
  body.fp-page .fp-pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ─── TURNUVA KURALLARI — açılır kapanır bölümler ─── */
.tr-intro {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.tr-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tr-item {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.tr-item[open] {
  border-color: rgba(255, 26, 26, 0.3);
}

.tr-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--white);
}

.tr-item summary::-webkit-details-marker {
  display: none;
}

.tr-item summary::after {
  content: '+';
  flex: 0 0 auto;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--red);
  transition: transform 0.2s ease;
}

.tr-item[open] summary::after {
  transform: rotate(45deg);
}

.tr-item summary:hover {
  background: rgba(255, 26, 26, 0.06);
}

.tr-item summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}

.tr-body {
  padding: 0 20px 18px;
}

.tr-body ol {
  margin: 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tr-body li {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}

.tr-empty {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 26px 22px;
  color: var(--gray);
  line-height: 1.7;
}

.tr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
