/* Amat?r kul?p ? tema renkleri :root ile PHP'den gelir */
:root {
    --c-primary: #0a4d2e;
    --c-secondary: #c9a227;
    --c-accent: #f4f7f5;
    --c-primary-rgb: 10, 77, 46;
    --c-secondary-rgb: 201, 162, 39;
    --font-display: "Bebas Neue", Impact, sans-serif;
    --font-body: "Outfit", system-ui, sans-serif;
    --radius: 14px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.8vw, 1.05rem);
    line-height: 1.55;
    color: #e8ece9;
    background: #070b0a;
    background-image:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(var(--c-primary-rgb), 0.45), transparent 55%),
        radial-gradient(ellipse 80% 50% at 100% 50%, rgba(var(--c-secondary-rgb), 0.12), transparent 50%),
        linear-gradient(180deg, #0d1210 0%, #070b0a 40%, #050807 100%);
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L55 17.5 L55 42.5 L30 55 L5 42.5 L5 17.5 Z' fill='none' stroke='%23fff' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 72px 72px;
    z-index: 0;
}

main,
.site-header,
.site-footer {
    position: relative;
    z-index: 1;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--c-secondary);
    color: #111;
    padding: 0.5rem 1rem;
    z-index: 100;
    font-weight: 600;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

/* Header ? kurumsal ?st ?erit + men? */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(180deg, rgba(12, 18, 16, 0.97) 0%, rgba(7, 11, 10, 0.94) 100%);
    backdrop-filter: blur(16px) saturate(1.2);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.04) inset,
        0 8px 32px rgba(0, 0, 0, 0.35);
}

.site-header::before {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--c-primary) 0%,
        rgba(var(--c-primary-rgb), 0.55) 35%,
        var(--c-secondary) 72%,
        rgba(var(--c-secondary-rgb), 0.35) 100%
    );
    opacity: 1;
}

/* ?st sat?r: logo + kul?p ad? + mobil men? */
.header-top-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0.95rem max(1.1rem, env(safe-area-inset-right, 0px)) 0.85rem max(1.1rem, env(safe-area-inset-left, 0px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Men? ?eridi */
.header-nav-bar {
    width: 100%;
    overflow: visible;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(5, 9, 8, 0.88) 100%);
    backdrop-filter: blur(12px);
}

.brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 1.25rem;
    row-gap: 0.4375rem;
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-width: 0;
    border-radius: 16px;
    outline-offset: 4px;
    transition: background 0.2s ease;
}

.brand:hover {
    background: rgba(255, 255, 255, 0.03);
}

.brand:focus-visible {
    outline: 2px solid rgba(var(--c-secondary-rgb), 0.65);
}

/* Logo / rozet yaln?zca 1. s?tunda; metin asla alt?na s?zmas?n */
.brand > :first-child {
    grid-column: 1;
    grid-row: 1;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    width: clamp(60px, 5.25vw, 73px);
    height: clamp(60px, 5.25vw, 73px);
    border-radius: 0;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    background: transparent;
    padding: 0;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.38));
    transition: transform 0.25s ease, filter 0.25s ease;
}

.brand:hover .brand-logo {
    transform: scale(1.04) translateY(-1px);
    filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.45));
}

.brand-badge {
    width: clamp(60px, 5.25vw, 73px);
    height: clamp(60px, 5.25vw, 73px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4.375vw, 1.8125rem);
    letter-spacing: 0.04em;
    color: #0a0f0d;
    background: linear-gradient(145deg, #f0e4a8 0%, var(--c-secondary) 42%, #8a6f18 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow:
        0 0 0 2px rgba(var(--c-primary-rgb), 0.35),
        0 0 22px rgba(var(--c-secondary-rgb), 0.35),
        0 6px 22px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.brand:hover .brand-badge {
    transform: scale(1.04) translateY(-1px);
    box-shadow:
        0 0 0 2px rgba(var(--c-primary-rgb), 0.48),
        0 0 30px rgba(var(--c-secondary-rgb), 0.45),
        0 10px 28px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.brand-text {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
    margin-top: 0;
    padding-top: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.brand-name {
    font-weight: 700;
    font-size: clamp(1.25rem, 3.125vw, 1.4rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.96);
}

.brand-sub {
    font-size: 0.975rem;
    opacity: 0.62;
    font-weight: 500;
    white-space: normal;
    line-height: 1.35;
    max-width: 100%;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(var(--c-primary-rgb), 0.5);
    border-radius: 12px;
    background: rgba(var(--c-primary-rgb), 0.14);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.nav-toggle:hover {
    background: rgba(var(--c-primary-rgb), 0.22);
    border-color: rgba(var(--c-primary-rgb), 0.72);
    box-shadow: 0 0 0 1px rgba(var(--c-primary-rgb), 0.3);
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--c-primary);
    border-radius: 1px;
    position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle-bar::before {
    top: -6px;
}

.nav-toggle-bar::after {
    top: 6px;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.2rem 0.45rem;
    box-sizing: border-box;
    width: calc(100% - 2rem);
    max-width: min(1160px, 100% - 2rem);
    margin: 0.5rem auto 0.65rem;
    padding: 0.55rem 1rem 0.6rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 4px 24px rgba(0, 0, 0, 0.2);
}

.site-nav a,
.site-nav .nav-top-link {
    position: relative;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.03em;
    padding: 0.45rem 0.75rem;
    border-radius: 10px;
    border: 1px solid transparent;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.site-nav a:hover,
.site-nav .nav-top-link:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

/* Se?ili ?st men?: yaln?zca alt ?izgi ? birincil tak?m rengi + hafif ???ma */
.site-nav > a.is-active,
.site-nav > a.nav-top-link.is-active {
    background: transparent;
    color: #fff;
    border-color: transparent;
    box-shadow: none;
}

.site-nav > a.is-active::after,
.site-nav > a.nav-top-link.is-active::after {
    content: "";
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.28rem;
    height: 3px;
    border-radius: 999px;
    pointer-events: none;
    background: var(--c-primary);
    box-shadow:
        0 0 10px rgba(var(--c-primary-rgb), 0.85),
        0 0 22px rgba(var(--c-primary-rgb), 0.5),
        0 0 36px rgba(var(--c-primary-rgb), 0.28);
}

.site-nav a.nav-tff,
.site-nav .nav-tff.nav-top-link {
    background: linear-gradient(135deg, #e8d078 0%, var(--c-secondary) 48%, #a88418 100%);
    color: #141008;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(var(--c-secondary-rgb), 0.25);
}

.site-nav a.nav-tff:hover,
.site-nav .nav-tff.nav-top-link:hover {
    filter: brightness(1.06);
    color: #0a0803;
    border-color: rgba(255, 255, 255, 0.35);
}

/* A??l?r men? (masa?st?) */
.nav-item-dd {
    position: relative;
}

.nav-dd-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.88);
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.45rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.nav-dd-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

.nav-item-dd.is-active-branch .nav-dd-btn {
    background: transparent;
    color: #fff;
    border-color: transparent;
    box-shadow: none;
}

.nav-item-dd.is-active-branch .nav-dd-btn::after {
    content: "";
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.28rem;
    height: 3px;
    border-radius: 999px;
    pointer-events: none;
    background: var(--c-primary);
    box-shadow:
        0 0 10px rgba(var(--c-primary-rgb), 0.85),
        0 0 22px rgba(var(--c-primary-rgb), 0.5),
        0 0 36px rgba(var(--c-primary-rgb), 0.28);
}

.nav-dd-caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.72;
    margin-top: 1px;
}

.nav-sub {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    min-width: 14.5rem;
    margin: 0;
    padding: 0.35rem;
    list-style: none;
    background: rgba(14, 20, 18, 0.98);
    backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.35),
        0 20px 50px rgba(0, 0, 0, 0.55);
    z-index: 120;
}

.nav-sub a {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.2s ease;
}

.nav-sub a:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.06);
}

.nav-sub a.is-active {
    background: transparent;
    color: #fff;
    border-color: transparent;
    box-shadow: none;
}

.nav-sub a.is-active::after {
    content: "";
    position: absolute;
    left: 0.45rem;
    right: 0.45rem;
    bottom: 0.22rem;
    height: 2px;
    border-radius: 999px;
    pointer-events: none;
    background: var(--c-primary);
    box-shadow:
        0 0 8px rgba(var(--c-primary-rgb), 0.8),
        0 0 16px rgba(var(--c-primary-rgb), 0.45),
        0 0 26px rgba(var(--c-primary-rgb), 0.22);
}

@media (min-width: 1101px) {
    .nav-item-dd:hover .nav-sub,
    .nav-item-dd:focus-within .nav-sub {
        display: block;
    }
}

@media (max-width: 1100px) {
    .nav-toggle {
        display: flex;
        flex-shrink: 0;
    }

    .header-nav-bar {
        border-top: none;
        background: transparent;
        backdrop-filter: none;
    }

    body.nav-open .header-nav-bar {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(6, 10, 9, 0.97);
        backdrop-filter: blur(12px);
    }

    .site-nav {
        display: none;
        position: static;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0.75rem 1rem 1rem;
        gap: 0.3rem;
        border-radius: 0;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    body.nav-open .site-nav {
        display: flex;
        margin: 0 0.65rem 0.85rem;
        padding: 0.65rem 0.75rem 0.85rem;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(0, 0, 0, 0.35);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .site-nav a,
    .site-nav .nav-top-link {
        border-radius: var(--radius);
    }

    .nav-dd-btn {
        width: 100%;
        justify-content: space-between;
        border-radius: var(--radius);
        text-align: left;
        min-height: 44px;
        padding: 0.5rem 0.85rem;
    }

    .nav-item-dd.sub-open .nav-sub {
        display: block;
    }

    .nav-item-dd:not(.sub-open) .nav-sub {
        display: none !important;
    }

    .nav-sub {
        position: static;
        margin: 0.2rem 0 0.35rem 0.75rem;
        border: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.28);
        min-width: auto;
    }

    .site-nav a,
    .site-nav .nav-top-link {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 0.5rem 0.85rem;
    }

    .nav-sub a {
        white-space: normal;
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 0.5rem 0.75rem;
    }
}

/* Main */
main {
    max-width: 1160px;
    margin: 0 auto;
    padding: clamp(1.25rem, 4vw, 2rem) max(0.75rem, env(safe-area-inset-right, 0px)) clamp(2.5rem, 6vw, 4rem) max(0.75rem, env(safe-area-inset-left, 0px));
    width: 100%;
    box-sizing: border-box;
}

/* ??? Hero Slider ??? */
.hero-slider {
    position: relative;
    width: 90%;
    margin: 0 auto 2rem;
    overflow: visible;
    background: #050807;
}

.hero-slider-track {
    position: relative;
    width: 100%;
}

/* Slide: zoom + fade ge?i?i */
.hero-slide {
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
}

.hero-slide:first-child {
    position: relative;
}

.hero-slide img {
    display: block;
    width: 100%;
    height: auto;
}

@media (min-width: 992px) {
    .hero-slider {
        max-height: 80vh;
        overflow: hidden;
    }

    .hero-slide img {
        height: 80vh;
        object-fit: cover;
    }
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

/* Fade slider effect */
.hero-slider.is-fade .hero-slide {
    transition: opacity 0.55s ease-in-out;
}

.hero-slider.is-fade .hero-slide.is-active {
    transform: none;
    opacity: 1;
    z-index: 2;
}

/* Slide slider effect */
.hero-slider.is-slide {
    overflow: hidden;
}

.hero-slider.is-slide .hero-slide {
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.6s ease;
    opacity: 0;
}

.hero-slider.is-slide .hero-slide.is-active {
    transform: translateX(0);
    opacity: 1;
    z-index: 3;
}

.hero-slider.is-slide .hero-slide.is-next {
    transform: translateX(100%);
    opacity: 0;
    z-index: 2;
}

.hero-slider.is-slide .hero-slide.is-prev {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 2;
}

/* Cube-style slider effect */
.hero-slider.is-cube {
    perspective: 1400px;
}

.hero-slider.is-cube .hero-slider-track {
    transform-style: preserve-3d;
}

.hero-slider.is-cube .hero-slide {
    backface-visibility: hidden;
    transform-origin: center center;
    transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.7s ease;
}

.hero-slider.is-cube .hero-slide.is-active {
    transform: translateZ(0) rotateY(0);
    opacity: 1;
    z-index: 3;
}

.hero-slider.is-cube .hero-slide.is-next {
    transform: translateX(26%) translateZ(-180px) rotateY(-68deg);
    opacity: 0;
    z-index: 2;
}

.hero-slider.is-cube .hero-slide.is-prev {
    transform: translateX(-26%) translateZ(-180px) rotateY(68deg);
    opacity: 0;
    z-index: 2;
}

.hero-slider.is-cube[data-slider-dir="prev"] .hero-slide.is-next {
    transform: translateX(26%) translateZ(-220px) rotateY(-78deg);
}

.hero-slider.is-cube[data-slider-dir="next"] .hero-slide.is-prev {
    transform: translateX(-26%) translateZ(-220px) rotateY(78deg);
}

.hero-slider.is-cube.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.hero-slider.is-cube:not(.is-dragging) {
    cursor: grab;
}

.hero-slide a {
    display: block;
}

.hero-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem 1.5rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
    color: #fff;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 600;
    z-index: 2;
    letter-spacing: 0.01em;
    pointer-events: none;
}

/* Dot g?stergeleri ? modern bar stili */
.hero-slider-dots {
    position: absolute;
    bottom: 1.15rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 0.4rem;
}

.hero-slider-dot {
    width: 28px;
    height: 4px;
    border: none;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 0;
    transition: background 0.35s, width 0.35s;
}

.hero-slider-dot.is-active {
    width: 42px;
    background: #fff;
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    margin: 0 0 0.75rem;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-lead {
    font-size: clamp(1rem, 3.5vw, 1.15rem);
    opacity: 0.88;
    margin: 0;
    max-width: 36ch;
}

@media (max-width: 480px) {
    .hero-lead {
        max-width: none;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 540px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--c-primary), #145a3a);
    color: #fff;
    box-shadow: 0 8px 28px rgba(var(--c-primary-rgb), 0.45);
}

.btn-primary:hover {
    box-shadow: 0 10px 36px rgba(var(--c-primary-rgb), 0.55);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-gold {
    background: linear-gradient(135deg, var(--c-secondary), #e0c76a);
    color: #1a1508;
}

.hero-visual {
    position: relative;
    min-height: clamp(200px, 42vw, 280px);
}

.hero-card {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(var(--c-primary-rgb), 0.5) 0%, rgba(0, 0, 0, 0.4) 100%),
        linear-gradient(45deg, transparent 40%, rgba(var(--c-secondary-rgb), 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-card::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 30% 30%, rgba(var(--c-secondary-rgb), 0.2), transparent 45%);
    animation: heroGlow 12s ease-in-out infinite;
}

/* Ana sayfa hero: logo kart?n ortas?nda (alt ?erit i?in alan b?rak?l?r) */
.hero-logo-mark {
    position: absolute;
    z-index: 1;
    top: 1rem;
    left: 1.25rem;
    right: 1.25rem;
    bottom: clamp(5.75rem, 30%, 8.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    box-sizing: border-box;
}

.hero-logo-mark img {
    width: auto;
    height: auto;
    max-width: min(240px, 82%);
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    border: none;
    background: transparent;
    box-shadow: none;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 28px rgba(var(--c-primary-rgb), 0.28));
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8%, 5%); }
}

.hero-stripe {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.hero-stripe-name {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 2.6vw, 1.55rem);
    letter-spacing: 0.05em;
    line-height: 1.25;
    color: #fff;
    text-align: center;
    max-width: 100%;
    white-space: normal;
    font-weight: 400;
}

@media (max-width: 640px) {
    .hero-logo-mark {
        bottom: clamp(6.5rem, 38%, 10rem);
    }

    .hero-logo-mark img {
        max-width: min(200px, 88%);
    }
}

/* Section */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: 0.06em;
    margin: 0 0 1.25rem;
    color: #fff;
}

/* Ana sayfa ? sponsorlar (Kul?p ?zeti alt?), sa?dan sola kayan ?erit */
.home-sponsors {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-sponsors-title {
    margin-bottom: 1.5rem;
}

.home-sponsors-marquee {
    overflow: hidden;
    width: 100%;
    padding: 0.35rem 0;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.home-sponsors-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: home-sponsors-scroll 22s linear infinite;
}

.home-sponsors-marquee:hover .home-sponsors-track,
.home-sponsors-marquee:focus-within .home-sponsors-track {
    animation-play-state: paused;
}

@keyframes home-sponsors-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.home-sponsors-strip {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    flex-shrink: 0;
    align-items: center;
    gap: clamp(2rem, 5vw, 3.5rem);
}

.home-sponsors-item {
    margin: 0;
    flex-shrink: 0;
}

.home-sponsors-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 7.15rem;
    padding: 0.65rem 1.35rem;
    border-radius: var(--radius);
    transition: background-color 0.2s ease;
}

a.home-sponsors-link {
    text-decoration: none;
    color: inherit;
}

a.home-sponsors-link:hover,
a.home-sponsors-link:focus-visible {
    background: rgba(255, 255, 255, 0.06);
}

a.home-sponsors-link:focus-visible {
    outline: 2px solid var(--c-secondary);
    outline-offset: 3px;
}

.home-sponsors-logo {
    display: block;
    max-width: min(390px, 67.6vw);
    max-height: 143px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.82;
    filter: brightness(0) invert(1);
    transition: filter 0.35s ease, opacity 0.35s ease, transform 0.25s ease;
}

.home-sponsors-item:hover .home-sponsors-logo,
.home-sponsors-item:focus-within .home-sponsors-logo {
    filter: none;
    opacity: 1;
    transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
    .home-sponsors-marquee {
        mask-image: none;
        -webkit-mask-image: none;
        overflow: visible;
    }

    .home-sponsors-track {
        animation: none;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 1rem;
    }

    .home-sponsors-strip[aria-hidden="true"] {
        display: none;
    }

    .home-sponsors-strip {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.section-lead {
    margin: -0.5rem 0 1.5rem;
    opacity: 0.75;
    max-width: 60ch;
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: 1.25rem;
}

/* Ana sayfa ? Kul?p ?zeti kartlar? (?st sa? ikon) */
.card--home-ozet {
    position: relative;
    padding-right: 3.75rem;
}

.card--home-ozet .card-corner-icon {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    color: var(--c-secondary);
    background: rgba(var(--c-primary-rgb), 0.42);
    border: 1px solid rgba(var(--c-secondary-rgb), 0.35);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.card--home-ozet .card-corner-icon svg {
    display: block;
    opacity: 0.95;
}

.card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 1.35rem;
    transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
    border-color: rgba(var(--c-secondary-rgb), 0.45);
    transform: translateY(-3px);
}

.card-player {
    text-align: center;
    padding-top: 2rem;
    position: relative;
    overflow: hidden;
}

.card-player .jersey {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--c-secondary), #8b6914);
    color: #0a0a0a;
    font-family: var(--font-display);
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-player .photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    border: 3px solid rgba(var(--c-secondary-rgb), 0.5);
    background: rgba(0, 0, 0, 0.3);
}

.card-player .photo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(145deg, rgba(var(--c-primary-rgb), 0.6), rgba(0, 0, 0, 0.4));
    border: 3px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
}

.card .meta {
    font-size: 0.88rem;
    opacity: 0.7;
    margin: 0;
}

.card .role {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: rgba(var(--c-primary-rgb), 0.45);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ?? Tak?m kadrosu (GoalKick tarz? kartlar + oyuncu profili) ?? */
.roster-section .section-lead {
    margin-top: 0.25rem;
}

.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.roster-grid--compact {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 160px), 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.roster-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius);
    outline: none;
}

.roster-card-link:focus-visible {
    box-shadow: 0 0 0 3px rgba(var(--c-secondary-rgb), 0.65);
}

.roster-card {
    padding: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 12, 11, 0.92);
}

.roster-card-link:hover .roster-card {
    border-color: rgba(var(--c-secondary-rgb), 0.5);
    transform: translateY(-4px);
}

.roster-card-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    min-height: 14rem;
    background: linear-gradient(160deg, rgba(var(--c-primary-rgb), 0.35) 0%, #050807 100%);
}

/* Teknik kadro kartlar?nda forma numaras? yok ? ayn? oran */
.roster-card-visual--staff {
    background: linear-gradient(165deg, rgba(var(--c-secondary-rgb), 0.12) 0%, rgba(var(--c-primary-rgb), 0.28) 45%, #050807 100%);
}

.roster-card-num {
    position: absolute;
    top: 0.5rem;
    left: 0.65rem;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 3.75rem);
    line-height: 1;
    color: rgba(255, 255, 255, 0.12);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.roster-card-img,
.roster-card-img-ph {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.roster-card-img-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 5rem);
    color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(180deg, rgba(var(--c-primary-rgb), 0.25), rgba(0, 0, 0, 0.5));
}

.roster-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(5, 8, 7, 0.92) 100%);
    pointer-events: none;
    z-index: 1;
}

.roster-card-caption {
    padding: 1rem 1.1rem 1.15rem;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.roster-card-name {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

.roster-card-pos {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-secondary);
    opacity: 0.95;
}

.roster-card-meta {
    margin: 0.35rem 0 0;
    font-size: 0.8rem;
    opacity: 0.55;
}

/* Oyuncu tek sayfa */
.player-breadcrumb {
    font-size: 0.82rem;
    opacity: 0.65;
    margin: 0 0 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
}

.player-breadcrumb a {
    color: var(--c-secondary);
    text-decoration: none;
}

.player-breadcrumb a:hover {
    text-decoration: underline;
}

.player-breadcrumb-sep {
    opacity: 0.45;
    user-select: none;
}

.player-breadcrumb-current {
    opacity: 0.85;
    color: #e8ece9;
}

.player-single-hero {
    display: grid;
    grid-template-columns: 1fr minmax(12rem, 38%);
    gap: 1.5rem 2rem;
    align-items: end;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.player-single-identity {
    min-width: 0;
    padding-bottom: 0.5rem;
}

.player-single-number-block {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    margin-bottom: 0.35rem;
}

.player-single-hash {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--c-secondary);
    line-height: 1;
    opacity: 0.9;
}

.player-single-number {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 6.5rem);
    line-height: 0.9;
    color: #fff;
    letter-spacing: 0.02em;
}

.player-single-name {
    margin: 0;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.1;
}

.player-single-photo-wrap {
    position: relative;
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 5;
    max-height: min(70vh, 32rem);
    margin-left: auto;
    width: 100%;
    max-width: 22rem;
    background: #0a0e0c;
}

.player-single-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.player-single-photo-ph {
    width: 100%;
    height: 100%;
    min-height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 8rem);
    color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(145deg, rgba(var(--c-primary-rgb), 0.4), #050807);
}

.player-specs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
    gap: 0;
    margin: 0 0 2rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.22);
}

.player-specs-row {
    display: grid;
    grid-template-columns: minmax(0, 42%) 1fr;
    gap: 0.5rem 1rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    align-items: baseline;
}

.player-specs-row:last-child {
    border-bottom: 0;
}

.player-specs dt {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.55;
}

.player-specs dd {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.player-about {
    margin-bottom: 2.5rem;
    max-width: 48rem;
}

.player-about-title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.player-about-kicker {
    margin: 0 0 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--c-secondary);
    opacity: 0.9;
}

.player-about-body {
    line-height: 1.7;
    opacity: 0.88;
    font-size: 1.02rem;
}

.player-related {
    margin-bottom: 2rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.player-related-title {
    margin: 1.25rem 0 0;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.player-back-row {
    margin: 0 0 2rem;
}

/* Teknik kadro ?ye profili */
.staff-single-hero {
    display: grid;
    grid-template-columns: 1fr minmax(12rem, 38%);
    gap: 1.5rem 2rem;
    align-items: end;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.staff-single-intro {
    min-width: 0;
    padding-bottom: 0.5rem;
}

.staff-single-role {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-secondary);
    opacity: 0.95;
}

.staff-single-name {
    margin: 0;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.1;
}

.staff-single-photo-wrap {
    margin-left: auto;
}

@media (max-width: 720px) {
    .staff-single-hero {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .staff-single-photo-wrap {
        max-width: none;
        order: -1;
    }

    .player-single-hero {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .player-single-photo-wrap {
        max-width: none;
        max-height: none;
        order: -1;
        aspect-ratio: 3 / 4;
    }

    .player-specs-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}

/* ?? Fikst?r (GoalKick Match Schedule Dark tarz? kutular) ?? */
.fixture-empty {
    opacity: 0.8;
    margin-top: 1rem;
}

.fixture-schedule {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.fixture-date-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fixture-date-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 1.25rem;
}

.fixture-card {
    background: rgba(6, 10, 9, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: calc(var(--radius) + 2px);
    padding: 1rem 1.15rem 1.1rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.fixture-card:hover {
    border-color: rgba(var(--c-secondary-rgb), 0.35);
}

.fixture-card-top {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fixture-card-meta-line {
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.fixture-card-datetime {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
}

.fixture-card-date {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #f4f8f6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.fixture-card-week {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    white-space: nowrap;
    color: var(--c-secondary);
    text-align: left;
    flex-shrink: 0;
}

@media (max-width: 340px) {
    .fixture-card-meta-line {
        flex-wrap: wrap;
    }

    .fixture-card-datetime {
        width: 100%;
        justify-content: flex-end;
    }
}

.fixture-card-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.65rem 0.5rem;
    align-items: center;
}

.fixture-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    min-width: 0;
}

.fixture-team--home {
    grid-column: 1;
}

.fixture-card-score {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0 0.25rem;
}

.fixture-team--away {
    grid-column: 3;
}

.fixture-team-logo,
.fixture-team-logo-ph {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
}

.fixture-team-logo-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.35);
}

.fixture-team-name {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.25;
    hyphens: auto;
    word-break: break-word;
}

.fixture-score-num {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    line-height: 1;
    color: #fff;
}

.fixture-score-sep {
    font-family: var(--font-display);
    font-size: 1.5rem;
    opacity: 0.5;
    padding: 0 0.1rem;
}

.fixture-score-sep--muted {
    opacity: 0.25;
}

.fixture-score-pending {
    font-family: var(--font-display);
    font-size: 1.5rem;
    opacity: 0.35;
}

.fixture-card-footer {
    margin: 1rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.4;
    color: var(--c-secondary);
}

@media (max-width: 380px) {
    .fixture-card-teams {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .fixture-card-score {
        grid-column: 1;
        order: 2;
    }

    .fixture-team--home {
        grid-column: 1;
        order: 1;
    }

    .fixture-team--away {
        grid-column: 1;
        order: 3;
    }
}

/* Y?netim kurulu: metin solda, foto sa?da, dikd?rtgen yuvarlak k??e */
.card-board {
    display: grid;
    grid-template-columns: 1fr minmax(5.5rem, 32%);
    gap: 0 1rem;
    align-items: stretch;
}

.card-board-body {
    min-width: 0;
}

.card-board-name {
    margin: 0 0 0.5rem;
}

.card-board-role {
    margin-top: 0;
}

.cards-grid-board {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}

@media (max-width: 640px) {
    .card-board {
        grid-template-columns: 1fr;
        gap: 1rem 0;
    }

    .card-board-media {
        justify-content: center;
        order: -1;
        min-height: 10rem;
    }

    .card-board .board-photo,
    .card-board .board-photo-ph {
        max-width: 12rem;
        width: 100%;
        height: auto;
        min-height: 11rem;
        max-height: 16rem;
        margin: 0 auto;
    }
}

.card-board-media {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: stretch;
    min-height: 0;
    height: 100%;
}

.card-board .board-photo,
.card-board .board-photo-ph {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 9.5rem;
    height: 90%;
    max-height: min(14rem, 90vh);
    min-height: 6.5rem;
    margin-left: auto;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid rgba(var(--c-secondary-rgb), 0.45);
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.card-board .board-photo-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 5vw, 1.85rem);
    color: rgba(255, 255, 255, 0.45);
    background: linear-gradient(145deg, rgba(var(--c-primary-rgb), 0.5), rgba(0, 0, 0, 0.35));
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-sizing: border-box;
}

/* Info blocks */
.info-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .info-two-col {
        grid-template-columns: 1fr;
    }
}

.info-block {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.info-block h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    margin: 0 0 1rem;
    color: var(--c-secondary);
}

.info-block dl {
    margin: 0;
}

.info-block dt {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.55;
    margin-top: 0.85rem;
}

.info-block dt:first-child {
    margin-top: 0;
}

.info-block dd {
    margin: 0.25rem 0 0;
    font-weight: 500;
}

.map-embed {
    margin-top: 1rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    aspect-ratio: 16 / 10;
    background: rgba(0, 0, 0, 0.35);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.stadium-visual {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 16 / 9;
    background:
        linear-gradient(160deg, rgba(var(--c-primary-rgb), 0.35), rgba(0, 0, 0, 0.5)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 225'%3E%3Crect fill='%231a2520' width='400' height='225'/%3E%3Cpath fill='none' stroke='%23c9a227' stroke-opacity='0.25' d='M40 180 L200 40 L360 180'/%3E%3C/svg%3E");
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stadium-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stadium-visual--default {
    background: #0a0e0c;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 8, 7, 0.95);
    margin-top: 2rem;
    padding: 2.5rem max(1rem, env(safe-area-inset-right, 0px)) max(2rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-inner {
        grid-template-columns: 1fr auto 1fr;
        text-align: left;
        align-items: start;
    }

    .footer-social {
        justify-self: end;
    }
}

.footer-motto {
    margin: 0.35rem 0 0;
    opacity: 0.65;
    font-size: 0.92rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-links a {
    color: var(--c-secondary);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.footer-social a.footer-social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #e8ece9;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.footer-social a.footer-social-link:hover {
    background: rgba(var(--c-secondary-rgb), 0.25);
    color: var(--c-secondary);
    transform: translateY(-2px);
}

.footer-social-icon {
    width: 22px;
    height: 22px;
    display: block;
}

.footer-legal {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    justify-content: center;
    margin-top: 0.25rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.88rem;
}

.footer-legal a:hover {
    color: var(--c-secondary);
    text-decoration: underline;
}

.footer-copy {
    grid-column: 1 / -1;
    text-align: center;
    margin: 0.35rem 0 0;
    font-size: 0.82rem;
    opacity: 0.5;
}

.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    padding: 0.85rem max(1rem, env(safe-area-inset-right, 0px)) max(0.85rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
    background: rgba(8, 12, 10, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
}

.cookie-consent-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-consent p {
    margin: 0;
    flex: 1 1 16rem;
    font-size: 0.88rem;
    line-height: 1.5;
    opacity: 0.9;
}

.cookie-consent a {
    color: var(--c-secondary);
}

/* Admin (basit) */
.admin-body {
    background: #0c0f0e;
    color: #e4e8e6;
    font-family: var(--font-body);
    margin: 0;
    min-height: 100vh;
}

.admin-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.5rem;
}

.admin-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-top a {
    color: var(--c-secondary, #c9a227);
}

.admin-form label {
    display: block;
    font-size: 0.82rem;
    margin: 0.75rem 0 0.25rem;
    opacity: 0.8;
}

.admin-form input,
.admin-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-family: inherit;
}

.admin-form input[type="color"] {
    height: 44px;
    padding: 4px;
    max-width: 120px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 0.5rem 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-preview-img-empty {
    min-width: 120px;
    min-height: 120px;
    opacity: 0.35;
    background: rgba(255, 255, 255, 0.06) !important;
}

.admin-preview-empty-hint {
    display: block;
    font-size: 0.85rem;
    opacity: 0.72;
    margin-top: 0.4rem;
    max-width: 22rem;
    line-height: 1.4;
}

.msg-ok {
    background: rgba(40, 120, 80, 0.35);
    border: 1px solid rgba(80, 200, 120, 0.4);
    padding: 0.65rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.msg-err {
    background: rgba(120, 40, 40, 0.35);
    border: 1px solid rgba(200, 80, 80, 0.4);
    padding: 0.65rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.logo-upload-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin: 0.25rem 0 0.5rem;
}

.logo-file-label {
    cursor: pointer;
    margin: 0;
}

.logo-file-hint {
    font-size: 0.82rem;
    opacity: 0.65;
    flex: 1 1 12rem;
}

/* Haberler (ziyaret?i) */
.news-lead {
    opacity: 0.78;
    margin: 0.5rem 0 1.25rem;
    max-width: 40rem;
}

.news-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1.25rem;
    width: 100%;
    max-width: 100%;
}

.news-list-item {
    display: flex;
    min-width: 0;
}

.news-list-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.22);
    overflow: visible;
    transition: border-color 0.2s, background 0.2s;
}

.news-list-card:hover {
    border-color: rgba(var(--c-secondary-rgb), 0.45);
    background: rgba(0, 0, 0, 0.32);
}

.news-list-link {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
    gap: 0.65rem;
    padding: 0;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.news-list-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
    flex: 1;
    padding: 0 1rem 1rem;
}

.news-list-thumb-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    flex-shrink: 0;
}

.news-list-thumb-wrap--placeholder {
    background: linear-gradient(145deg, rgba(var(--c-primary-rgb), 0.25), rgba(0, 0, 0, 0.35));
}

.news-list-thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list-title {
    font-weight: 600;
    font-size: 1.08rem;
    color: var(--c-accent, #e8ece9);
}

.news-list-date {
    font-size: 0.82rem;
    opacity: 0.6;
}

.news-list-excerpt {
    font-size: 0.92rem;
    opacity: 0.78;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-back-link {
    color: var(--c-secondary);
    text-decoration: none;
    font-weight: 500;
}

.news-back-link:hover {
    text-decoration: underline;
}

.news-meta {
    font-size: 0.88rem;
    opacity: 0.7;
    margin: 0 0 0.5rem;
}

.news-excerpt-block {
    font-size: 1.05rem;
    opacity: 0.88;
    border-left: 3px solid var(--c-secondary);
    padding-left: 1rem;
    margin: 0 0 1.5rem;
    max-width: 42rem;
}

.news-body {
    max-width: 42rem;
    line-height: 1.65;
    opacity: 0.92;
}

.history-body {
    margin-top: 1.25rem;
    max-width: 42rem;
    line-height: 1.65;
    opacity: 0.92;
}

.page-hero-figure {
    margin: 1.25rem 0 1rem;
    max-width: 42rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.25);
}

.page-hero-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 22rem;
    object-fit: cover;
}

.rich-content h2,
.rich-content h3,
.rich-content h4 {
    margin: 1.25rem 0 0.65rem;
    line-height: 1.25;
}

.rich-content p {
    margin: 0 0 0.85rem;
}

.rich-content ul,
.rich-content ol {
    margin: 0 0 1rem 1.25rem;
    padding: 0;
}

.rich-content li {
    margin: 0.35rem 0;
}

.rich-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: calc(var(--radius) * 0.75);
}

.rich-content a {
    color: var(--c-secondary);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.rich-content blockquote {
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    border-left: 3px solid rgba(var(--c-secondary-rgb), 0.75);
    opacity: 0.9;
}

.news-article {
    margin-bottom: 2rem;
}

.news-hero-figure {
    margin: 0 0 1.25rem;
    max-width: 42rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.25);
}

.news-hero-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 22rem;
    object-fit: cover;
}

@media (max-width: 960px) {
    .news-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .news-list {
        grid-template-columns: 1fr;
    }
}

.admin-form select {
    width: 100%;
    max-width: 100%;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-family: inherit;
}

/* Futbol okulu ? hoca yoklama tablosu */
.fs-yoklama-table {
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius, 12px);
    overflow: hidden;
}

.fs-yoklama-table th,
.fs-yoklama-table td {
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    vertical-align: middle;
}

.fs-yoklama-table th {
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.85;
    background: rgba(0, 0, 0, 0.25);
}

.fs-yoklama-table tr:last-child td {
    border-bottom: none;
}

.fs-yoklama-table select {
    font-family: inherit;
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.35);
    color: inherit;
}

.fs-attendance-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.fs-attendance-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.34rem 0.58rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    user-select: none;
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.fs-attendance-pill:hover {
    transform: translateY(-1px);
}

.fs-attendance-pill input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.fs-attendance-pill__icon {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
}

.fs-attendance-pill--present {
    color: #86efac;
}

.fs-attendance-pill--present .fs-attendance-pill__icon {
    background: rgba(34, 197, 94, 0.2);
}

.fs-attendance-pill--absent {
    color: #fca5a5;
}

.fs-attendance-pill--absent .fs-attendance-pill__icon {
    background: rgba(239, 68, 68, 0.2);
}

.fs-attendance-pill--excused {
    color: #fde68a;
}

.fs-attendance-pill--excused .fs-attendance-pill__icon {
    background: rgba(234, 179, 8, 0.22);
}

.fs-attendance-pill--present input:checked + .fs-attendance-pill__icon,
.fs-attendance-pill--present input:checked + .fs-attendance-pill__icon + .fs-attendance-pill__text {
    color: #dcfce7;
}

.fs-attendance-pill--present:has(input:checked) {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.55);
}

.fs-attendance-pill--absent:has(input:checked) {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.55);
    color: #fee2e2;
}

.fs-attendance-pill--excused:has(input:checked) {
    background: rgba(234, 179, 8, 0.2);
    border-color: rgba(234, 179, 8, 0.55);
    color: #fef3c7;
}

.fs-attendance-pill input:focus-visible + .fs-attendance-pill__icon {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.fs-btn-icon-pay {
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(168, 85, 247, 0.16);
    border-color: rgba(168, 85, 247, 0.4);
    color: #e9d5ff;
}

.fs-btn-icon-pay:hover {
    background: rgba(168, 85, 247, 0.24);
    border-color: rgba(192, 132, 252, 0.58);
    color: #f3e8ff;
}

.fs-btn-icon-pay svg {
    width: 16px;
    height: 16px;
}

.fs-fee-wrap {
    max-width: 64rem;
    margin: 0 auto;
}

.fs-fee-alert {
    padding: 0.72rem 1rem;
    border-radius: 10px;
    margin-bottom: 0.9rem;
}

.fs-fee-alert--ok {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
}

.fs-fee-alert--err {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
}

.fs-application-form label.fs-label-req,
.fs-application-form .fs-label-req {
    color: #ef4444;
    font-weight: 600;
}

.fs-application-form label.fs-label-req .fs-req,
.fs-application-form .fs-label-req .fs-req {
    color: inherit;
    font-weight: inherit;
}

.fs-application-form .fs-form-required-note .fs-req {
    color: #ef4444;
    font-weight: 700;
}

.fs-application-form .fs-form-required-note {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.75rem;
}

.fs-fee-filter {
    padding: 1rem;
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 0.65rem;
    align-items: end;
}

.fs-fee-filter input,
.fs-fee-edit input,
.fs-fee-edit textarea {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.22);
    color: inherit;
    font: inherit;
}

.fs-fee-filter input:focus,
.fs-fee-edit input:focus,
.fs-fee-edit textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.fs-fee-edit input[disabled],
.fs-fee-edit textarea[disabled] {
    opacity: 0.85;
    cursor: not-allowed;
}

.fs-fee-default-note {
    margin: 0 0 0.9rem;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    opacity: 0.92;
}

.fs-fee-edit-card {
    padding: 1rem 1.25rem;
    margin: 0 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.2));
}

.fs-fee-edit-card__title {
    margin: 0 0 0.65rem;
    font-size: 1rem;
}

.fs-fee-edit-card__student {
    margin: 0 0 0.75rem;
    opacity: 0.9;
}

.fs-fee-badge {
    display: inline-block;
    padding: 0.22rem 0.52rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.fs-fee-badge--paid {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
}

.fs-fee-badge--partial {
    background: rgba(250, 204, 21, 0.15);
    color: #fde68a;
}

.fs-fee-badge--exempt {
    background: rgba(59, 130, 246, 0.22);
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.55);
}

.fs-fee-badge--discounted {
    background: rgba(168, 85, 247, 0.18);
    color: #7c3aed;
    border: 1px solid rgba(168, 85, 247, 0.45);
}

.fs-fee-badge--unpaid {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
}

.fs-fee-edit {
    margin-top: 0.4rem;
    min-width: 250px;
    padding: 0.55rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.22);
}

.fs-fee-edit--wide {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: end;
    max-width: none;
}

.fs-fee-edit__full {
    grid-column: 1 / -1;
}

.fs-fee-edit__actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.fs-fee-quick-actions {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .fs-fee-filter {
        grid-template-columns: 1fr;
    }

    .fs-fee-edit--wide {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .fs-fee-edit--wide {
        grid-template-columns: 1fr;
    }
}

.fs-coach-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.2rem 0 1rem;
}

.fs-coach-menu__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.2);
    color: rgba(232, 236, 233, 0.86);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.fs-coach-menu__link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.fs-coach-menu__link.is-active {
    border-color: rgba(var(--c-primary-rgb), 0.55);
    background: rgba(var(--c-primary-rgb), 0.18);
    color: #fff;
}

.fs-student-with-star {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.fs-student-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.fs-student-inline__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.fs-student-inline__avatar--ph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

.fs-student-with-star__name {
    min-width: 0;
}

.fs-star-pick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0;
}

.fs-star-pick input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    opacity: 0;
}

.fs-star-pick__icon {
    font-size: 1.65rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.22);
    transition: color 0.15s ease, transform 0.15s ease;
    user-select: none;
}

.fs-star-pick:hover .fs-star-pick__icon {
    color: rgba(var(--c-primary-rgb), 0.75);
    transform: scale(1.08);
}

.fs-star-pick input:focus-visible + .fs-star-pick__icon {
    outline: 2px solid var(--c-primary, #0a4d2e);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Se?ili y?ld?z: kul?p ana rengi (y?netim ? Kul?p & Renkler ? birincil renk) */
.fs-star-pick input:checked + .fs-star-pick__icon {
    color: var(--c-primary, #0a4d2e);
    text-shadow: 0 0 14px rgba(var(--c-primary-rgb), 0.55);
}

.fs-veli-star-cell {
    text-align: center;
    width: 4rem;
}

.fs-veli-star {
    font-size: 1.35rem;
    line-height: 1;
    color: var(--c-primary, #0a4d2e);
    text-shadow: 0 0 10px rgba(var(--c-primary-rgb), 0.45);
}

.fs-veli-table th:nth-child(3),
.fs-veli-table td:nth-child(3) {
    text-align: center;
}

/* Haftal?k rapor ? tak?m kart? + hoca */
.fs-rapor-team-card {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem 1.5rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

.fs-rapor-team-card__main {
    flex: 1;
    min-width: 12rem;
}

.fs-rapor-team-card__title {
    font-size: 1.2rem;
    margin: 0 0 0.35rem;
}

.fs-rapor-team-card__meta {
    margin: 0.35rem 0 0;
    opacity: 0.92;
}

.fs-rapor-team-card__coach {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    max-width: 140px;
}

.fs-rapor-team-card__photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.2);
}

.fs-rapor-team-card__photo--placeholder {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
}

.fs-rapor-team-card__phone {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-secondary, #c9a227);
    text-decoration: none;
    word-break: break-word;
}

.fs-rapor-team-card__phone:hover {
    text-decoration: underline;
}

/* Yoklama durum renkleri (rapor) */
.fs-yoklama-status {
    font-weight: 600;
}

.fs-yoklama-status--present {
    color: #4ade80;
}

.fs-yoklama-status--absent {
    color: #f87171;
}

.fs-yoklama-status--excused {
    color: #fbbf24;
}

.fs-yoklama-status--none {
    font-weight: 500;
    opacity: 0.75;
}

/* Bas?n-Yay?n ? dikey haber listesi */
.press-news-empty {
    margin: 0.5rem 0 0;
    opacity: 0.82;
    line-height: 1.55;
    max-width: 42rem;
}

.press-news-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.25rem;
}

.press-news-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.35rem 1.25rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

@media (min-width: 768px) {
    .press-news-item:has(.press-news-media) {
        grid-template-columns: minmax(200px, 320px) minmax(0, 1fr);
        align-items: start;
    }
}

.press-news-media {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.25);
    line-height: 0;
}

.press-news-media img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
}

.press-news-title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.15rem, 2.8vw, 1.45rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.press-news-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.press-news-title a:hover {
    color: var(--c-secondary);
}

.press-news-meta {
    margin: 0 0 0.85rem;
    font-size: 0.88rem;
    color: rgba(232, 236, 233, 0.72);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
}

.press-news-meta-sep {
    opacity: 0.55;
}

.press-news-source {
    color: rgba(var(--c-secondary-rgb), 0.92);
    font-weight: 500;
}

.press-news-body {
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(232, 236, 233, 0.92);
}

.press-news-more-wrap {
    margin: 1rem 0 0;
}

.press-news-more {
    font-size: 0.88rem;
}

/* Haber payla??m? */
.news-share {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.4rem 0.55rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 0;
}

.news-share--compact {
    margin: 0;
    padding: 0.4rem 0.75rem 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
    gap: 0.3rem 0.4rem;
}

.news-share--detail {
    margin-top: 1.35rem;
    max-width: 42rem;
}

.news-share--press {
    margin-top: 0.75rem;
}

.news-share-label {
    flex: 0 0 auto;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(var(--c-secondary-rgb), 0.78);
    line-height: 1;
}

.news-share--compact .news-share-label {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
}

.news-share-actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.2rem;
    min-width: 0;
}

.news-share--compact .news-share-tg,
.news-share--compact .news-share-x {
    display: none;
}

.news-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    width: 1.7rem;
    height: 1.7rem;
    padding: 0;
    flex: 0 0 auto;
    border-radius: 6px;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(232, 236, 233, 0.72);
    text-decoration: none;
    cursor: pointer;
    line-height: 0;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.news-share--compact .news-share-btn {
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 5px;
}

.news-share--detail .news-share-btn,
.news-share--press .news-share-btn {
    width: 1.85rem;
    height: 1.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.news-share-btn:hover,
.news-share-btn:focus-visible {
    background: rgba(var(--c-secondary-rgb), 0.16);
    border-color: rgba(var(--c-secondary-rgb), 0.35);
    color: var(--c-secondary);
    outline: none;
}

.news-share-icon,
.news-share-btn svg {
    width: 0.9rem !important;
    height: 0.9rem !important;
    max-width: 0.9rem;
    max-height: 0.9rem;
    display: block;
    flex: 0 0 auto;
}

.news-share--compact .news-share-icon,
.news-share--compact .news-share-btn svg {
    width: 0.78rem !important;
    height: 0.78rem !important;
    max-width: 0.78rem;
    max-height: 0.78rem;
}

.news-share-btn.is-copied {
    border-color: rgba(80, 200, 120, 0.45);
    color: #7dffb0;
}

.news-share-copy-feedback {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 0.25rem);
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.65rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.88);
    color: #7dffb0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 2;
}

.news-share-btn.is-copied .news-share-copy-feedback {
    opacity: 1;
}

.news-share-btn.is-copied .news-share-copy-feedback:empty {
    opacity: 0;
}


/* Mobil: ta?an g?rseller / g?m?l? i?erik */
img,
video,
picture {
    max-width: 100%;
    height: auto;
}

.news-body iframe,
.prose iframe,
.page-content iframe {
    max-width: 100%;
}

/* Futbol okulu ? hoca paneli (sade kartlar) */
.fs-coach-toolbar {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin: 0 0 1rem;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fs-coach-toolbar__link {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--c-secondary, #c9a227);
    text-decoration: none;
}

.fs-coach-toolbar__link:hover {
    text-decoration: underline;
}

.fs-coach-toolbar__link--primary {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--c-primary), #145a3a);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(var(--c-primary-rgb), 0.35);
    transition: transform 0.15s, box-shadow 0.15s;
}

.fs-coach-toolbar__link--primary:hover {
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(var(--c-primary-rgb), 0.5);
}

.fs-coach-toolbar__link--logout {
    margin-left: auto;
}

.fs-coach-toolbar__link--logout:not(.fs-coach-toolbar__link--primary) {
    color: rgba(255, 255, 255, 0.72);
}

.fs-coach-toolbar__team {
    font-size: 0.84rem;
    opacity: 0.78;
}

.fs-coach-panel-cards {
    display: grid;
    gap: 1rem;
    margin-top: 0.5rem;
}

.fs-coach-panel-card {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.35rem 1.4rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(145deg, rgba(10, 77, 46, 0.35), rgba(0, 0, 0, 0.28));
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.fs-coach-panel-card:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.fs-coach-panel-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.16);
    color: #86efac;
}

.fs-coach-panel-card__icon svg {
    width: 1.45rem;
    height: 1.45rem;
}

.fs-coach-panel-card__title {
    font-size: 1.15rem;
    font-weight: 700;
}

.fs-coach-panel-card__meta {
    font-size: 0.88rem;
    opacity: 0.78;
    line-height: 1.45;
}

.fs-coach-yoklama-date input[type="date"] {
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.2);
    color: inherit;
    font-family: inherit;
}

.fs-coach-yoklama-date.card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 1.15rem;
    margin: 0 0 1rem;
}

.fs-coach-yoklama-date__label {
    font-weight: 600;
    flex: 0 0 auto;
}

.fs-coach-yoklama-date__input {
    flex: 1 1 10rem;
    min-width: 0;
    min-height: 44px;
}

.fs-coach-yoklama-date__submit {
    flex: 0 0 auto;
    min-height: 44px;
}

.fs-coach-yoklama-notify.card {
    padding: 1rem 1.15rem;
    margin: 0 0 12px;
}

.fs-coach-yoklama-notify__btn {
    width: 100%;
    max-width: 100%;
    min-height: 44px;
}

.fs-coach-empty.card {
    padding: 1.25rem;
}

.fs-coach-student-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 0.85rem;
}

.fs-coach-student-grid > .fs-coach-yoklama-summary {
    grid-column: 1 / -1;
}

.fs-coach-student-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    border: 3px solid rgba(239, 68, 68, 0.75);
    background: rgba(0, 0, 0, 0.28);
    overflow: hidden;
    min-height: 0;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.fs-coach-student-card--present {
    border-color: rgba(34, 197, 94, 0.85);
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.2);
}

.fs-coach-student-card--absent {
    border-color: rgba(239, 68, 68, 0.8);
    box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.15);
}

.fs-coach-student-card--excused {
    border-color: rgba(251, 191, 36, 0.85);
    box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.2);
}

.fs-coach-student-card--unset {
    border-color: rgba(148, 163, 184, 0.55);
    box-shadow: none;
}

.fs-coach-student-card__star {
    position: absolute;
    top: 0.35rem;
    right: 0.35rem;
    z-index: 2;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    color: rgba(255, 255, 255, 0.28);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.fs-coach-student-card.is-starred .fs-coach-student-card__star,
.fs-coach-student-card__star:hover {
    color: #facc15;
    background: rgba(0, 0, 0, 0.55);
}

.fs-coach-student-card__body,
.fs-coach-student-card__link {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.35rem;
    padding: 0.4rem 0.5rem 2rem;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
    text-decoration: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.fs-coach-student-card__photo-wrap {
    width: 100%;
    padding: 2.65rem 0.35rem 0.4rem;
    box-sizing: border-box;
    flex-shrink: 0;
    line-height: 0;
    text-align: center;
}

.fs-coach-student-card__photo {
    display: inline-block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: scale-down;
    object-position: center center;
    vertical-align: top;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
}

.fs-coach-student-card__photo--ph {
    width: 100%;
    min-height: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    line-height: 1;
}

.fs-coach-student-card__hint {
    font-size: 0.72rem;
    opacity: 0.85;
    margin-top: 0.1rem;
    text-align: center;
}

.fs-coach-student-card__hint--warn {
    color: #eab308;
    opacity: 1;
}

.fs-coach-student-card__name {
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
    word-break: break-word;
}

.fs-coach-student-card__status-label {
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.fs-coach-student-card--present .fs-coach-student-card__status-label {
    color: #86efac;
}

.fs-coach-student-card--absent .fs-coach-student-card__status-label {
    color: #fca5a5;
}

.fs-coach-student-card--excused .fs-coach-student-card__status-label {
    color: #fcd34d;
}

.fs-coach-student-card--unset .fs-coach-student-card__status-label {
    color: rgba(255, 255, 255, 0.45);
}

.fs-coach-student-card__info {
    position: absolute;
    right: 0.4rem;
    bottom: 0.4rem;
    z-index: 2;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.22);
    border: 1px solid rgba(96, 165, 250, 0.45);
    color: #bfdbfe;
    text-decoration: none;
}

.fs-coach-student-card__info svg {
    width: 1rem;
    height: 1rem;
}

.fs-coach-student-card__info:hover {
    background: rgba(59, 130, 246, 0.35);
    color: #fff;
}

.fs-coach-student-card__info--disabled {
    opacity: 0.25;
    pointer-events: none;
}

/* Hoca paneli: site header altinda tam genislik icerik */
body.fs-coach-app {
    --fs-coach-nav-height: 3.35rem;
    --fs-coach-summary-dock-height: 4.25rem;
}

body.fs-coach-app #main {
    padding-top: 0.5rem;
    padding-bottom: 2.5rem;
}

body.fs-coach-app .fs-coach-panel {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

body.fs-coach-app .fs-coach-panel-card,
body.fs-coach-app .fs-coach-panel-card:hover {
    color: inherit;
}

body.fs-coach-app .fs-coach-yoklama-date.card {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.fs-coach-app .fs-coach-student-grid {
    margin-bottom: 1.5rem;
}

body.fs-coach-app .admin-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
}

body.fs-coach-app .admin-table {
    min-width: 28rem;
}

body.fs-coach-app .fs-rapor-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

body.fs-coach-app .fs-coach-report-note {
    margin-bottom: 1rem;
    line-height: 1.55;
}

body.fs-coach-app .fs-coach-report-filters {
    padding: 1rem 1.15rem;
    margin-bottom: 1rem;
}

body.fs-coach-app .fs-coach-report-filters__field label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

body.fs-coach-app .fs-coach-report-filters select {
    min-width: 10rem;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.25);
    color: inherit;
    font-family: inherit;
    min-height: 44px;
}

.fs-coach-student-grid > .fs-coach-yoklama-summary {
    grid-column: 1 / -1;
}

.fs-coach-yoklama-summary {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0.85rem 0.75rem;
    margin: 0 0 1rem;
    background: #0b2e1c;
    border: 2px solid #d4af37;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
    color: #f4f7f5;
}

.fs-coach-yoklama-summary--cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fs-coach-yoklama-summary--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fs-coach-yoklama-summary__label-short {
    display: none;
}

.fs-coach-yoklama-summary__item--excused .fs-coach-yoklama-summary__value {
    color: #fbbf24;
}

@media (min-width: 901px) {
    .fs-coach-yoklama-summary {
        position: sticky;
        top: 5.5rem;
        z-index: 45;
    }
}

.fs-coach-yoklama-summary.is-docked-mobile {
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(var(--fs-coach-nav-height) + env(safe-area-inset-bottom, 0px));
    top: auto;
    z-index: 9999;
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    padding: 0.65rem 0.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
}

.fs-coach-student-grid.has-mobile-summary-dock {
    padding-bottom: calc(
        var(--fs-coach-nav-height) + var(--fs-coach-summary-dock-height) + env(safe-area-inset-bottom, 0px) + 12px
    );
}

.fs-coach-yoklama-summary__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    text-align: center;
    min-width: 0;
}

.fs-coach-yoklama-summary__label {
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.2;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.fs-coach-yoklama-summary__value {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.1;
    min-width: 1.5rem;
    text-align: center;
}

.fs-coach-yoklama-summary__item--present .fs-coach-yoklama-summary__value {
    color: #4ade80;
}

.fs-coach-yoklama-summary__item--absent .fs-coach-yoklama-summary__value {
    color: #f87171;
}

.fs-coach-yoklama-summary__sep {
    display: none;
}

@media (max-width: 900px) {
    html {
        overflow-x: clip;
    }

    body.fs-coach-app #main {
        padding-left: 0.65rem;
        padding-right: 0.65rem;
        padding-bottom: calc(var(--fs-coach-nav-height) + env(safe-area-inset-bottom, 0px) + 1.25rem);
    }

    body.fs-coach-app .section-title {
        font-size: 1.35rem;
        line-height: 1.25;
        margin-bottom: 0.35rem;
    }

    body.fs-coach-app .section-lead {
        font-size: 0.88rem;
        margin-bottom: 0.75rem;
    }

    body.fs-coach-app .fs-coach-toolbar {
        gap: 0.45rem;
        padding: 0.5rem 0.65rem;
        margin-bottom: 0.65rem;
    }

    body.fs-coach-app .fs-coach-toolbar__team {
        flex: 1 1 100%;
        font-size: 0.82rem;
        opacity: 0.85;
    }

    body.fs-coach-app .fs-coach-toolbar__link {
        font-size: 0.8rem;
        min-height: 40px;
        display: inline-flex;
        align-items: center;
    }

    body.fs-coach-app .fs-coach-toolbar__link--logout {
        margin-left: auto;
    }

    body.fs-coach-app .fs-coach-menu {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10000;
        margin: 0;
        flex-wrap: nowrap;
        gap: 0.35rem;
        padding: 0.35rem 0.45rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
        background: rgba(8, 35, 22, 0.97);
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.35);
    }

    body.fs-coach-app .fs-coach-menu__link {
        flex: 1 1 0;
        min-width: 0;
        min-height: 44px;
        padding: 0.4rem 0.25rem;
        font-size: 0.72rem;
        line-height: 1.15;
        border-radius: 8px;
        text-align: center;
    }

    body.fs-coach-app .fs-coach-menu__link--admin {
        font-size: 0.68rem;
    }

    body.fs-coach-app .fs-coach-yoklama-date.card {
        flex-direction: column;
        align-items: stretch;
    }

    body.fs-coach-app .fs-coach-yoklama-date__input,
    body.fs-coach-app .fs-coach-yoklama-date__submit {
        width: 100%;
    }

    body.fs-coach-app .fs-coach-yoklama-notify__btn {
        width: 100%;
    }

    body.fs-coach-app .fs-rapor-filters {
        flex-direction: column;
        align-items: stretch;
    }

    body.fs-coach-app .fs-rapor-filters select,
    body.fs-coach-app .fs-rapor-filters .btn {
        width: 100%;
        min-height: 44px;
    }

    .fs-coach-yoklama-date__hint-long {
        display: none;
    }

    .fs-coach-yoklama-summary__label {
        font-size: 0.62rem;
    }

    .fs-coach-yoklama-summary__value {
        font-size: 1.35rem;
    }

    .fs-coach-yoklama-summary__label-full {
        display: none;
    }

    .fs-coach-yoklama-summary__label-short {
        display: inline;
    }

    .fs-coach-student-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .fs-coach-student-card {
        border-width: 2px;
    }

    .fs-coach-student-card__star {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.35rem;
        top: 0.25rem;
        right: 0.25rem;
    }

    .fs-coach-student-card__photo-wrap {
        padding: 2.55rem 0.25rem 0.35rem;
    }

    .fs-coach-student-card__photo {
        max-width: 100%;
    }

    .fs-coach-student-card__name {
        font-size: 0.78rem;
    }

    .fs-coach-student-card__body,
    .fs-coach-student-card__link {
        padding-bottom: 1.85rem;
    }

    .fs-coach-student-card__info {
        width: 2.25rem;
        height: 2.25rem;
    }
}

@media (max-width: 380px) {
    body.fs-coach-app .fs-coach-menu__link {
        font-size: 0.66rem;
        padding-inline: 0.15rem;
    }

    .fs-coach-yoklama-summary__label {
        font-size: 0.58rem;
        letter-spacing: 0.01em;
    }

    .fs-coach-yoklama-summary__value {
        font-size: 1.2rem;
    }

    .fs-coach-student-grid {
        gap: 0.55rem;
    }
}

/* Velilerimize ?zel ? sekt?r filtresi + indirim listesi */
.parent-deals-lead {
    margin: 0.5rem 0 1.25rem;
    max-width: 42rem;
    opacity: 0.78;
    line-height: 1.55;
}

.parent-deals-empty {
    margin: 1rem 0 0;
    opacity: 0.78;
}

.parent-deals-sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0 0 1.35rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.parent-deals-sector-btn {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(232, 236, 233, 0.88);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.parent-deals-sector-btn:hover,
.parent-deals-sector-btn:focus-visible {
    border-color: rgba(var(--c-secondary-rgb), 0.45);
    color: #fff;
    outline: none;
}

.parent-deals-sector-btn.is-active {
    background: rgba(var(--c-secondary-rgb), 0.2);
    border-color: rgba(var(--c-secondary-rgb), 0.55);
    color: var(--c-secondary);
}

.parent-deals-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.parent-deal-item {
    padding: 1.25rem 1.2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.parent-deal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

@media (min-width: 720px) {
    .parent-deal-item:has(.parent-deal-logo-wrap) .parent-deal-layout {
        grid-template-columns: 140px minmax(0, 1fr);
    }
}

.parent-deal-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    padding: 0.65rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.92);
}

.parent-deal-logo {
    display: block;
    max-width: 100%;
    max-height: 88px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.parent-deal-video {
    margin: 0;
    width: 100%;
    max-width: 280px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.35);
    aspect-ratio: 16 / 9;
    flex: 0 0 auto;
    pointer-events: auto;
}

.parent-deal-content {
    display: block;
}

.parent-deal-content--with-video {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.85rem 1rem;
}

.parent-deal-content--with-video .parent-deal-copy {
    flex: 1 1 180px;
    min-width: 0;
}

.parent-deal-content--with-video .parent-deal-video {
    flex: 0 0 auto;
    margin: 0;
}

.parent-deal-video iframe,
.parent-deal-video video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: contain;
    background: #000;
}

.parent-deal-video-el {
    object-fit: contain;
}

@media (max-width: 560px) {
    .parent-deal-video {
        max-width: 100%;
    }
}

.parent-deal-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.65rem;
    margin: 0 0 0.65rem;
}

.parent-deal-badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1a1508;
    background: linear-gradient(135deg, var(--c-secondary), #e0c76a);
}

.parent-deal-discount {
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-secondary);
}

.parent-deal-title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.15rem, 2.6vw, 1.4rem);
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.parent-deal-company {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(232, 236, 233, 0.9);
}

.parent-deal-sector-label {
    margin: 0 0 0.65rem;
    font-size: 0.8rem;
    color: rgba(var(--c-secondary-rgb), 0.85);
}

.parent-deal-summary,
.parent-deal-body,
.parent-deal-contact {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(232, 236, 233, 0.88);
}

.parent-deal-actions {
    margin: 0.85rem 0 0;
}

.parent-deal-link {
    font-size: 0.88rem;
}

@media (max-width: 560px) {
    .parent-deals-sectors {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.75rem;
        scrollbar-width: thin;
    }
    .parent-deals-sector-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

/* Kondisyon — AI sprint pilot (MediaPipe, client-side) */
.fs-sprint-ai-app {
    padding: 0;
    overflow: hidden;
}

.fs-sprint-ai-video-wrap {
    position: relative;
    width: 100%;
    background: #000;
    aspect-ratio: 4 / 3;
    max-height: 52vh;
}

.fs-sprint-ai-video,
.fs-sprint-ai-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fs-sprint-ai-canvas {
    pointer-events: none;
    z-index: 2;
}

.fs-sprint-ai-cal {
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fs-sprint-ai-cal__title {
    margin: 0 0 0.25rem;
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0.88;
}

.fs-sprint-ai-cal label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.fs-sprint-ai-cal input[type="range"] {
    flex: 1;
}

.fs-sprint-ai-status {
    margin: 0;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    line-height: 1.45;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fs-sprint-ai-status.is-error {
    color: #fca5a5;
    background: rgba(120, 30, 30, 0.25);
}

.fs-sprint-ai-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem 1rem 1rem;
}

.fs-sprint-ai-result {
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid rgba(var(--c-secondary-rgb), 0.35);
    background: rgba(var(--c-secondary-rgb), 0.08);
    font-size: 1.05rem;
    line-height: 1.6;
}

.fs-sprint-ai-result p {
    margin: 0.15rem 0;
}

body.fs-sprint-ai-page #main {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
}

/* Öğrenci başvurusu — güvenlik doğrulama modalı */
.fs-application-page.is-gate-locked .fs-application-form-shell,
.fs-rapor-page.is-gate-locked .fs-rapor-gate-shell {
    filter: blur(10px);
    opacity: 0.28;
    pointer-events: none;
    user-select: none;
}

body.fs-app-gate-open {
    overflow: hidden;
}

body.fs-app-gate-open .site-header,
body.fs-app-gate-open .site-footer,
body.fs-app-gate-open main > *:not(.fs-app-gate) {
    filter: blur(8px);
}

.fs-app-gate {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.fs-app-gate__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 18, 12, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.fs-app-gate__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 26rem);
    padding: 1.45rem 1.4rem 1.3rem;
    border-radius: var(--radius, 12px);
    border: 1px solid rgba(var(--c-secondary-rgb), 0.4);
    background: linear-gradient(165deg, rgba(8, 42, 28, 0.98) 0%, rgba(6, 32, 22, 0.99) 55%, rgba(5, 28, 18, 1) 100%);
    box-shadow:
        0 22px 56px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    color: #eef2f0;
}

.fs-app-gate__panel:hover {
    transform: none;
    border-color: rgba(var(--c-secondary-rgb), 0.4);
}

.fs-app-gate__title {
    margin: 0 0 0.55rem;
    font-size: 1.28rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.fs-app-gate__lead {
    margin: 0 0 1.1rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(236, 240, 238, 0.95);
}

.fs-app-gate__label {
    display: block;
    margin: 0 0 0.35rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #f2f5f3;
}

.fs-app-gate__question {
    margin: 0 0 0.7rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--c-secondary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.fs-app-gate__input {
    width: 100%;
    max-width: 10rem;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font: inherit;
    font-size: 1.05rem;
}

.fs-app-gate__input:focus {
    outline: none;
    border-color: rgba(var(--c-secondary-rgb), 0.65);
    box-shadow: 0 0 0 2px rgba(var(--c-secondary-rgb), 0.28);
}

.fs-app-gate__hint {
    margin: 0.55rem 0 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(232, 236, 233, 0.78);
}

.fs-app-gate__error {
    margin: 0.75rem 0 0;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    border: 1px solid rgba(240, 120, 120, 0.4);
    background: rgba(120, 30, 30, 0.45);
    color: #ffc8c8;
    font-size: 0.88rem;
    line-height: 1.4;
}

.fs-app-gate__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.1rem;
}
