/* ==========================================================================
   La Liga — public sayfa stilleri
   Tüm sınıflar .ll- ön ekli; temanın (Themesflat) sınıflarıyla çakışmaz.
   Tipografi temanın Inter Tight'ı; marka kırmızısı #EC2027 korunur.

   Sayfanın omurgası fikstür satırı: tarih kütüğü · eşleşme · fiyat · aksiyon.
   Rakamlar tabular — bir maç cetveli gibi hizalanmalı.
   ========================================================================== */

.ll {
    --ll-ink: #0d0e10;          /* gece maçı yüzeyi */
    --ll-ink-2: #17191d;
    --ll-brand: #ec2027;
    --ll-turf: #0f3d2e;         /* saha yeşili — hero gradyanı + "dahil" işaretleri */
    --ll-line: #e4e8ee;
    --ll-line-soft: #eef1f5;
    --ll-mute: #6b7280;
    --ll-mute-2: #98a1ad;
    --ll-paper: #ffffff;
    --ll-surface: #f6f8fa;
    --ll-accent: #1a1a1a;       /* kulüp rengi — inline override edilir */
}

.ll-num {
    font-variant-numeric: tabular-nums;
    font-feature-settings: 'tnum' 1;
}

/* Bölüm ritmi — tema spacing'ine güvenmiyoruz, La Liga kendi ölçeğini taşır */
.ll-section { padding: 72px 0 0; }
.ll-section--tight { padding-top: 40px; }
.ll-section--last { padding-bottom: 96px; }

/* =========================================================================
   Bölüm başlığı — küçük kırmızı eyebrow, ağır başlık, sağda sayaç, altta çizgi
   ========================================================================= */
.ll-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 18px;
    margin-bottom: 28px;
    border-bottom: 2px solid var(--ll-ink);
}

.ll-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--ll-brand);
    margin: 0 0 10px;
}

.ll-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: currentColor;
    flex-shrink: 0;
}

.ll-head__title {
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1;
    text-transform: uppercase;
    color: #111;
    margin: 0;
}

.ll-head__title em { font-style: normal; color: var(--ll-brand); }

.ll-head__meta {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--ll-mute);
    padding-bottom: 4px;
    white-space: nowrap;
}

/* =========================================================================
   Hero
   ========================================================================= */
.ll-hero {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(112deg, var(--ll-ink) 0%, var(--ll-ink) 46%, #123528 82%, var(--ll-turf) 100%);
    color: #fff;
}

.ll-hero__media { position: absolute; inset: 0; z-index: 0; }

.ll-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.ll-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(96deg, rgba(13, 14, 16, 0.95) 0%, rgba(13, 14, 16, 0.8) 48%, rgba(15, 61, 46, 0.5) 100%);
}

/* Fotoğraf olmasa da hero'nun grafik çıpası olsun: sahanın kendisi */
.ll-hero__pitch {
    position: absolute;
    top: 50%;
    right: -80px;
    z-index: 1;
    width: 480px;
    height: 320px;
    transform: translateY(-50%) rotate(-9deg);
    opacity: 0.13;
    pointer-events: none;
}

.ll-hero__pitch svg { width: 100%; height: 100%; }

/* Takım sayfası: arma hero'nun sağ omzunda, büyük ve net */
.ll-hero__crest {
    position: absolute;
    right: 56px;
    top: 50%;
    z-index: 2;
    width: clamp(120px, 15vw, 210px);
    transform: translateY(-50%);
    filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

/* Hub: üç arma üst üste dizili */
.ll-hero__crests {
    position: absolute;
    right: 48px;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    transform: translateY(-50%);
    pointer-events: none;
}

.ll-hero__crests img {
    width: clamp(64px, 8vw, 108px);
    margin-left: -22px;
    filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.5));
}

.ll-hero__crests img:first-child { margin-left: 0; }

.ll-hero__body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 440px;
    padding: 56px 48px 44px;
}

.ll-hero__title,
.ll .ll-hero__title {
    color: #fff;
    font-size: clamp(32px, 6vw, 76px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -2.4px;
    margin: 0;
    text-transform: uppercase;
    max-width: 17ch;
}

.ll-hero__title em { font-style: normal; color: var(--ll-brand); }

.ll-hero__lead {
    color: rgba(255, 255, 255, 0.74);
    font-size: 15.5px;
    line-height: 1.65;
    max-width: 50ch;
    margin: 20px 0 0;
}

/* Hero ölçü çubuğu */
.ll-facts {
    display: flex;
    flex-wrap: wrap;
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
}

.ll-facts > div {
    padding: 16px 30px 0 0;
    margin-right: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.24);
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    min-width: 118px;
}

.ll-facts > div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }

.ll-facts dt {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 7px;
}

.ll-facts dd {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.6px;
    line-height: 1;
    margin: 0;
    color: #fff;
}

.ll-facts dd small {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: rgba(255, 255, 255, 0.66);
}

/* =========================================================================
   Kulüp kartı
   ========================================================================= */
.ll-club {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--ll-ink);
    text-decoration: none;
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.ll-club:hover,
.ll-club:focus-visible {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(13, 14, 16, 0.26);
}

.ll-club::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    z-index: 3;
    background: var(--ll-accent);
}

.ll-club__media { position: absolute; inset: 0; z-index: 0; }
.ll-club__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }

.ll-club__pitch {
    position: absolute;
    right: -50px;
    bottom: 54px;
    z-index: 0;
    width: 250px;
    height: 168px;
    opacity: 0.16;
    transform: rotate(-8deg);
    pointer-events: none;
}

.ll-club__pitch svg { width: 100%; height: 100%; }

.ll-club__crest {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 2;
    width: 64px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
    transition: transform 0.26s ease;
}

.ll-club:hover .ll-club__crest { transform: scale(1.06); }

.ll-club__body {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 26px 24px 22px;
    background: linear-gradient(180deg, rgba(13, 14, 16, 0) 0%, rgba(13, 14, 16, 0.9) 42%, rgba(13, 14, 16, 0.97) 100%);
}

.ll-club__city {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ll-accent);
    margin: 0 0 8px;
}

.ll-club__name {
    font-size: clamp(20px, 2.3vw, 26px);
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.05;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.ll-club__stadium {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.62);
    margin: 6px 0 0;
}

.ll-club__foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin: 18px 0 0;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ll-club__count { font-size: 12.5px; font-weight: 700; color: rgba(255, 255, 255, 0.7); }

.ll-club__price { text-align: right; }

.ll-club__price small {
    display: block;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
    margin-bottom: 3px;
}

.ll-club__price b {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: #fff;
}

/* =========================================================================
   İMZA ÖĞE — fikstür satırı
   ========================================================================= */
.ll-fixtures {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ll-fixture {
    background: var(--ll-paper);
    border: 1px solid var(--ll-line);
    border-left: 4px solid var(--ll-accent);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ll-fixture:hover { box-shadow: 0 6px 20px rgba(13, 14, 16, 0.07); }

.ll-fixture.is-open { box-shadow: 0 10px 32px rgba(13, 14, 16, 0.1); }

.ll-fixture--highlight { background: linear-gradient(90deg, rgba(236, 32, 39, 0.035) 0%, #fff 42%); }

.ll-fixture__row {
    display: flex;
    align-items: stretch;
    gap: 0;
}

/* Satırın kendisi bir kontrol: tıklayınca fiyat ızgarası açılır (hub'da link) */
.ll-fixture__main {
    flex: 1;
    min-width: 0;
    display: grid;
    grid-template-columns: 64px 1fr auto 30px;
    align-items: center;
    gap: 18px;
    padding: 14px 18px;
    background: transparent;
    border: 0;
    text-align: left;
    font-family: inherit;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.ll-fixture__main:focus-visible { outline: 2px solid var(--ll-brand); outline-offset: -3px; }

.ll-fixture__cta { align-self: center; margin: 0 18px 0 8px; }

/* --- tarih kütüğü */
.ll-date {
    display: block;
    text-align: center;
    padding: 7px 3px;
    border-radius: 8px;
    background: var(--ll-surface);
    border: 1px solid var(--ll-line-soft);
}

.ll-date__day {
    display: block;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.2px;
    color: #111;
}

.ll-date__month {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ll-accent);
    margin-top: 3px;
}

.ll-date--tbd { padding: 11px 3px; }

.ll-date--tbd span {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ll-mute);
    line-height: 1.35;
}

/* --- eşleşme */
.ll-match { display: block; min-width: 0; }

.ll-match__title {
    display: block;
    font-size: clamp(15px, 1.6vw, 20px);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.15;
    color: #111;
    text-transform: uppercase;
}

.ll-match__title .ll-vs {
    color: var(--ll-mute-2);
    font-weight: 700;
    margin: 0 6px;
}

/* Fikstür satırındaki küçük arma */
.ll-crest {
    width: 26px;
    height: 26px;
    object-fit: contain;
    vertical-align: -6px;
    margin-right: 9px;
}

.ll-match__sub {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ll-mute);
    margin-top: 5px;
}

.ll-match__sub .dot { color: #cdd3db; }

.ll-tag {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.ll-tag--derby { background: var(--ll-brand); color: #fff; }

.ll-tag--note {
    background: #fff7ed;
    border: 1px solid #fdd9a8;
    color: #9a3412;
    letter-spacing: 0.4px;
    text-transform: none;
    font-size: 11px;
    font-weight: 700;
}

/* --- fiyat */
.ll-price { text-align: right; white-space: nowrap; }

.ll-price__from {
    display: block;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--ll-mute-2);
    margin-bottom: 3px;
}

.ll-price__value {
    display: block;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.6px;
    line-height: 1;
    color: #111;
}

.ll-price__ask {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ll-mute);
    max-width: 92px;
    white-space: normal;
    line-height: 1.35;
}

/* --- aç/kapa göstergesi */
.ll-chev {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--ll-line);
    color: #111;
    flex-shrink: 0;
    transition: transform 0.25s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.ll-chev .ll-ico { display: block; }

.ll-fixture__main:hover .ll-chev { background: #111; border-color: #111; color: #fff; }

.ll-fixture__main[aria-expanded="true"] .ll-chev {
    transform: rotate(180deg);
    background: #111;
    border-color: #111;
    color: #fff;
}

/* --- açılan panel */
.ll-fixture__panel {
    display: none;
    padding: 18px 18px 20px;
    border-top: 1px dashed var(--ll-line);
}

.ll-fixture__panel.is-open { display: block; }

/* =========================================================================
   Fiyat ızgarası
   ========================================================================= */
.ll-grid-scroll {
    overflow-x: auto;
    border: 1px solid var(--ll-line);
    border-radius: 12px;
}

.ll-grid {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
}

.ll-grid th,
.ll-grid td {
    padding: 11px 16px;
    text-align: right;
    border-bottom: 1px solid var(--ll-line-soft);
    white-space: nowrap;
}

/* 5★ blokla 4★ bloğu arasına belirgin ayrım — okurken sınıf değiştiğini gör */
.ll-grid tbody tr.is-class-break th,
.ll-grid tbody tr.is-class-break td { border-top: 2px solid var(--ll-line); }

.ll-grid thead th {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--ll-mute);
    background: var(--ll-surface);
    border-bottom: 1px solid var(--ll-line);
}

.ll-grid tbody tr:last-child th,
.ll-grid tbody tr:last-child td { border-bottom: 0; }

.ll-grid tbody th {
    text-align: left;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.ll-grid tbody th span {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ll-mute);
}

.ll-grid td { font-weight: 800; color: #111; letter-spacing: -0.3px; }

.ll-grid td.is-ask { color: var(--ll-mute); font-weight: 600; font-size: 12px; }
.ll-grid td.is-empty { color: #d3d9e0; font-weight: 400; }

.ll-grid__extra { border-left: 1px solid var(--ll-line); background: #fafbfc; }
.ll-grid thead .ll-grid__extra { background: #eef1f5; }

.ll-stars {
    color: #e0a12a;
    font-size: 15px;
    letter-spacing: -1.5px;
    white-space: nowrap;
}

.ll-panel-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
}

.ll-panel-note {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--ll-mute);
    margin: 0;
    max-width: 62ch;
}

/* =========================================================================
   Butonlar
   ========================================================================= */
.ll-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border: 1px solid var(--ll-brand);
    border-radius: 999px;
    background: var(--ll-brand);
    color: #fff;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.1px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.ll-btn:hover {
    background: #c9151b;
    border-color: #c9151b;
    color: #fff;
    transform: translateY(-1px);
}

.ll-btn:focus-visible { outline: 2px solid #111; outline-offset: 2px; }

.ll-btn--sm { padding: 11px 18px; font-size: 12.5px; }

.ll-btn--outline {
    background: transparent;
    color: #111;
    border-color: var(--ll-line);
}

.ll-btn--outline:hover { background: #111; border-color: #111; color: #fff; }

.ll-btn--dark { background: #111; border-color: #111; }
.ll-btn--dark:hover { background: #000; border-color: #000; }

/* =========================================================================
   Adım listesi — gerçek bir sıra, numaralar bilgi taşıyor
   ========================================================================= */
.ll-steps {
    counter-reset: ll-step;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1px;
    background: var(--ll-line);
    border: 1px solid var(--ll-line);
    border-radius: 14px;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.ll-steps li {
    counter-increment: ll-step;
    background: #fff;
    padding: 28px 24px;
}

.ll-steps li::before {
    content: counter(ll-step, decimal-leading-zero);
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
    color: var(--ll-brand);
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}

.ll-steps h3 {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin: 0 0 7px;
    color: #111;
}

.ll-steps p { font-size: 13.5px; line-height: 1.6; color: var(--ll-mute); margin: 0; }

/* =========================================================================
   Pakete dahil
   ========================================================================= */
.ll-includes { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }

.ll-includes li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 14px;
    color: #2f3540;
    line-height: 1.55;
}

.ll-includes li::before {
    content: '';
    flex-shrink: 0;
    width: 19px;
    height: 19px;
    margin-top: 1px;
    border-radius: 50%;
    background-color: var(--ll-turf);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

/* =========================================================================
   Bilet kategorisi kartı — görsel yoksa mini saha şeması çizilir
   ========================================================================= */
.ll-cat {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--ll-line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.ll-cat__media {
    aspect-ratio: 4 / 3;
    background: #eef1f5;
    border-bottom: 1px solid var(--ll-line);
}

.ll-cat__media img { width: 100%; height: 100%; object-fit: cover; }

/* Mini saha: kategorinin tribün bandını gösterir */
.ll-pitch {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #0f1a15;
    border-bottom: 1px solid var(--ll-line);
    overflow: hidden;
}

.ll-pitch__field {
    position: absolute;
    inset: 22% 18%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    background: var(--ll-turf);
}

.ll-pitch__field::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.42);
}

.ll-pitch__field::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 26%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
}

.ll-pitch__zone {
    position: absolute;
    background: var(--ll-accent);
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

/* longside: uzun kenar (alt kat) */
.ll-pitch__zone--longside { left: 16%; right: 16%; bottom: 10%; height: 8%; }
/* longside-high: uzun kenar üst kat */
.ll-pitch__zone--high { left: 8%; right: 8%; bottom: 2%; height: 6%; }
/* shortside: kale arkası */
.ll-pitch__zone--shortside { top: 20%; bottom: 20%; right: 6%; width: 7%; }
/* corner: köşe */
.ll-pitch__zone--corner { right: 8%; bottom: 8%; width: 16%; height: 8%; }
/* vip: orta loca */
.ll-pitch__zone--vip { left: 34%; right: 34%; bottom: 10%; height: 9%; }

.ll-pitch__label {
    position: absolute;
    top: 10px;
    left: 12px;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.ll-cat__body { padding: 18px 20px 20px; }

.ll-cat__name {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: #111;
    margin: 0 0 7px;
}

.ll-cat__desc { font-size: 13.5px; line-height: 1.6; color: var(--ll-mute); margin: 0; }

/* =========================================================================
   İçerik blokları
   ========================================================================= */
.ll-block {
    border: 1px solid var(--ll-line);
    border-radius: 14px;
    padding: 28px;
    background: #fff;
    height: 100%;
}

.ll-block__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--ll-line-soft);
}

.ll-block__title .ll-ico { color: var(--ll-brand); flex-shrink: 0; }

/* Quill'den gelen serbest içerik */
.ll-rte { font-size: 14px; line-height: 1.75; color: #3d4450; }

.ll-rte > *:first-child { margin-top: 0; }
.ll-rte > *:last-child { margin-bottom: 0; }

.ll-rte h2,
.ll-rte h3 {
    font-size: 13px;
    font-weight: 800;
    color: #111;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 20px 0 7px;
}

.ll-rte p { margin: 0 0 12px; }
.ll-rte ul, .ll-rte ol { padding-left: 20px; margin: 10px 0; }
.ll-rte li { margin-bottom: 5px; }
.ll-rte a { color: var(--ll-brand); }
.ll-rte strong { color: #111; }

/* Hero altındaki tanıtım — iki kolonlu, okunur */
.ll-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #3d4450;
    columns: 2;
    column-gap: 48px;
}

.ll-intro p { margin: 0 0 14px; break-inside: avoid; }
.ll-intro > *:last-child { margin-bottom: 0; }

/* =========================================================================
   Anasayfa CTA bandı
   ========================================================================= */
.ll-cta {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(112deg, var(--ll-ink) 0%, var(--ll-ink) 50%, #123528 84%, var(--ll-turf) 100%);
    color: #fff;
}

.ll-cta__pitch {
    position: absolute;
    right: -60px;
    top: 50%;
    z-index: 0;
    width: 380px;
    height: 250px;
    transform: translateY(-50%) rotate(-9deg);
    opacity: 0.1;
    pointer-events: none;
}

.ll-cta__pitch svg { width: 100%; height: 100%; }

.ll-cta__body { position: relative; z-index: 2; padding: 48px 44px; }

.ll-cta__title,
.ll .ll-cta__title {
    color: #fff;
    font-size: clamp(28px, 4.2vw, 50px);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -1.6px;
    text-transform: uppercase;
    margin: 0;
}

.ll-cta__lead {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.6;
    margin: 18px 0 0;
    max-width: 46ch;
}

.ll-cta__stat {
    display: block;
    margin-top: 12px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: #fff;
}

/* Kulüp rozetleri */
.ll-badges { display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; list-style: none; }

.ll-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 4px solid var(--ll-accent);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ll-badge:hover,
.ll-badge:focus-visible {
    background: rgba(255, 255, 255, 0.13);
    transform: translateX(4px);
    color: #fff;
}

.ll-badge__crest { width: 32px; height: 32px; object-fit: contain; flex-shrink: 0; }

.ll-badge__name { font-size: 14.5px; font-weight: 800; letter-spacing: -0.2px; text-transform: uppercase; margin-right: auto; }
.ll-badge__count { font-size: 12px; font-weight: 700; color: rgba(255, 255, 255, 0.58); white-space: nowrap; }

.ll-next {
    margin: 24px 0 0;
    padding: 18px 20px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.ll-next dt {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
    margin: 0 0 6px;
}

.ll-next dd { margin: 0; font-size: 15.5px; font-weight: 800; letter-spacing: -0.3px; }

.ll-next dd span {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.62);
    margin-top: 4px;
}

/* =========================================================================
   Mobil sticky CTA · empty state
   ========================================================================= */
.ll-sticky {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 60;
    display: none;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--ll-line);
    backdrop-filter: blur(8px);
}

.ll-sticky .ll-btn { width: 100%; justify-content: center; }

.ll-empty {
    border: 1px dashed var(--ll-line);
    border-radius: 14px;
    padding: 48px 24px;
    text-align: center;
    color: var(--ll-mute);
    background: #fcfdfe;
}

.ll-empty strong { display: block; color: #111; font-size: 16px; margin-bottom: 7px; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1199px) {
    .ll-hero__pitch { width: 380px; height: 250px; right: -110px; }
}

@media (max-width: 991px) {
    .ll-section { padding-top: 56px; }
    .ll-hero__body { padding: 44px 32px 36px; min-height: 400px; }
    .ll-cta__body { padding: 36px 28px; }
    .ll-badges { flex-direction: row; flex-wrap: wrap; }
    .ll-badge { flex: 1 1 170px; }
    .ll-intro { columns: 1; }
    .ll-block { padding: 22px; }

    /* Fiyat alt satıra iner, chevron gizlenir — satır yine tıklanabilir */
    .ll-fixture__main {
        grid-template-columns: 60px 1fr;
        grid-template-areas: 'date match' 'price price';
        gap: 12px 14px;
        padding: 14px 16px;
    }
    .ll-date { grid-area: date; }
    .ll-match { grid-area: match; }
    .ll-price {
        grid-area: price;
        text-align: left;
        display: flex;
        align-items: baseline;
        gap: 8px;
        padding-top: 10px;
        border-top: 1px solid var(--ll-line-soft);
    }
    .ll-price__from { margin: 0; }
    .ll-chev { display: none; }
    .ll-fixture__cta { margin: 0 16px 0 0; }
}

@media (max-width: 767px) {
    /* CTA satırın altına tam genişlik iner */
    .ll-fixture__row { flex-direction: column; align-items: stretch; }
    .ll-fixture__cta {
        align-self: stretch;
        margin: 0 16px 16px;
        justify-content: center;
    }
    .ll-hero__pitch { display: none; }

    /* Mobilde arma sağ üstte; başlık altına girmesin diye yer ayrılır */
    .ll-hero__crest {
        top: 24px;
        right: 20px;
        transform: none;
        width: 62px;
    }
    .ll-hero__crests {
        top: 24px;
        right: 20px;
        transform: none;
    }
    .ll-hero__crests img { width: 42px; margin-left: -13px; }

    .ll-hero .ll-eyebrow,
    .ll .ll-hero__title { max-width: calc(100% - 74px); }

    .ll-facts > div { padding-right: 20px; margin-right: 20px; min-width: 96px; }
    .ll-facts dd { font-size: 19px; }
    .ll-fixture__panel { padding: 0 16px 18px; }
    .ll-sticky { display: block; }
    .ll-section--last { padding-bottom: 110px; }
    .ll-head { margin-bottom: 20px; }
    .ll-fixture__panel { padding: 16px; }
}

@media (max-width: 575px) {
    .ll-hero__body { padding: 34px 22px 28px; min-height: 350px; }
    .ll-date__day { font-size: 24px; }
    .ll-match__title { font-size: 15px; }
}

/* =========================================================================
   Motion
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    .ll-club, .ll-club__crest, .ll-badge, .ll-btn, .ll-chev, .ll-fixture { transition: none; }
}
