/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --bg-main: #020617;
    --bg-elevated: #020617;
    --accent: #22c55e;
    --accent-soft: rgba(34, 197, 94, 0.15);
    --accent-2: #0ea5e9;
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --border-soft: rgba(148, 163, 184, 0.3);
    --white: #f9fafb;
    --danger: #ef4444;
    --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.85);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-full: 999px;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #0f172a 0, #020617 45%, #000 100%);
    color: var(--text-main);
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1200px, 100% - 2.5rem);
    margin: 0 auto;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(to bottom, rgba(15,23,42,0.95), rgba(15,23,42,0.75), transparent);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(148,163,184,0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.9rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 2px solid var(--accent);
    box-shadow: 0 0 18px rgba(34,197,94,0.55);
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.club-name {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.club-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.main-nav {
    margin-left: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.main-nav a {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    color: var(--text-muted);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent), var(--accent-2));
    transition: width 0.25s ease;
}

.main-nav a:hover {
    color: var(--white);
}

.main-nav a:hover::after {
    width: 100%;
}

.btn-cta {
    margin-left: 1rem;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(34,197,94,0.7);
    background: radial-gradient(circle at top left, rgba(34,197,94,0.25), rgba(15,23,42,0.9));
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(34,197,94,0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(34,197,94,0.55);
    background: radial-gradient(circle at top left, rgba(34,197,94,0.45), rgba(15,23,42,0.95));
}

/* Burger */
.burger {
    display: none;
    margin-left: auto;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    margin: 4px 0;
    border-radius: 999px;
}

/* HERO */
.hero {
    position: relative;
    padding: 4.5rem 0 4rem;
    isolation: isolate;
    overflow: hidden;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(34,197,94,0.2), transparent 50%),
                linear-gradient(to bottom right, rgba(15,23,42,0.9), rgba(2,6,23,0.95));
    z-index: -1;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-logo {
    width: 100px;
    margin-bottom: 0.9rem;
    filter: drop-shadow(0 0 20px rgba(34,197,94,0.6));
}

.hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.3rem);
    line-height: 1.1;
    margin-bottom: 0.7rem;
}

.hero-text {
    max-width: 520px;
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 1.3rem;
}

.hero-text strong {
    color: var(--white);
}

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

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    font-size: 0.92rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    color: #0b1120;
    box-shadow: 0 18px 35px rgba(34,197,94,0.45);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 50px rgba(34,197,94,0.7);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(148,163,184,0.6);
}

.btn-outline:hover {
    background: rgba(15,23,42,0.8);
}

/* HERO WIDGET */
.hero-widget {
    background: radial-gradient(circle at top left, rgba(34,197,94,0.18), rgba(15,23,42,0.95));
    border-radius: var(--radius-lg);
    padding: 1.3rem 1.4rem;
    border: 1px solid rgba(148,163,184,0.4);
    box-shadow: var(--shadow-soft);
}

.hero-widget h3 {
    font-size: 1rem;
    margin-bottom: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.match-card {
    border-radius: var(--radius-md);
    border: 1px solid rgba(148,163,184,0.4);
    padding: 1rem;
    background: rgba(15,23,42,0.95);
    margin-bottom: 1rem;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.team {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team img {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.5);
    object-fit: cover;
}

.team span {
    font-size: 0.9rem;
    font-weight: 600;
}

.vs {
    font-size: 0.85rem;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(148,163,184,0.4);
    color: var(--text-muted);
}

.match-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
}

.match-date {
    color: var(--white);
    font-weight: 500;
}

.match-extra {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.badge {
    font-size: 0.68rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-full);
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(34,197,94,0.4);
}

.badge.outline {
    background: transparent;
    color: var(--accent-2);
    border-color: rgba(56,189,248,0.5);
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.3rem;
}

.stat {
    padding: 0.5rem;
    border-radius: 16px;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.4);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* SECTIONS GENEL */
.section {
    padding: 3.5rem 0;
}

.section-head {
    text-align: center;
    margin-bottom: 2rem;
}

.section-head h2 {
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
}

.section-head p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* SPORCULARIMIZ */
.players-section {
    background: radial-gradient(circle at top, rgba(56,189,248,0.08), transparent 55%);
}

.players-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.players-arrow {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(148,163,184,0.6);
    background: rgba(15,23,42,0.9);
    color: var(--white);
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.1s ease;
}

.players-arrow:hover {
    background: rgba(34,197,94,0.25);
    transform: translateY(-1px);
}

.players-page {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.players-slider {
    position: relative;
    overflow-x: hidden;       /* ekledik */
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148,163,184,0.4);
    background: radial-gradient(circle at top left, rgba(34,197,94,0.15), rgba(15,23,42,0.98));
    box-shadow: var(--shadow-soft);
    padding: 1.3rem 1rem;
}
.players-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.player-card {
    background: rgba(15,23,42,0.98);
    border-radius: 18px;
    border: 1px solid rgba(148,163,184,0.4);
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(15,23,42,0.8);

    /* ÖNEMLİ KISIM: sabit kart genişliği */
    flex: 0 0 250px;   /* her kart 250px genişlik */
    max-width: 250px;
}


.player-photo {
    width: 100%;
    height: 220px;          /* hepsi aynı yükseklik */
    object-fit: cover;      /* kafalar güzel kadrajda */
    border-bottom: 1px solid rgba(148,163,184,0.4);
}


.player-info {
    padding: 0.8rem 0.9rem 0.95rem;
}

.player-info h3 {
    font-size: 0.96rem;
    margin-bottom: 0.25rem;
}

.player-position {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.15rem 0.45rem;
    border-radius: var(--radius-full);
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(34,197,94,0.4);
    margin-bottom: 0.35rem;
}

.player-birth,
.player-number {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.players-note {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    text-align: center;
    color: var(--text-muted);
}

/* HAKKIMIZDA */
/* HAKKIMIZDA BÖLÜMÜ – ARKA PLAN */
.about-section {
    position: relative;
    padding: 4rem 0;
    background:
        radial-gradient(circle at top, rgba(34,197,94,0.18), transparent 55%),
        radial-gradient(circle at bottom, rgba(56,189,248,0.10), transparent 60%);
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(34,197,94,0.25), transparent 60%);
    top: -140px;
    right: -120px;
    opacity: 0.5;
    filter: blur(2px);
    pointer-events: none;
}

.about-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(15,23,42,0.9), transparent 70%);
    bottom: -140px;
    left: -80px;
    opacity: 0.7;
    pointer-events: none;
}

.about-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.5rem;
    align-items: center;

    padding: 2.4rem 2.6rem;
    border-radius: 28px;
    border: 1px solid rgba(148,163,184,0.55);
    background: radial-gradient(circle at top left, rgba(15,23,42,0.95), rgba(2,6,23,0.96));
    box-shadow: 0 26px 60px rgba(15,23,42,0.95);
    backdrop-filter: blur(18px);
}


.about-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.about-list {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.7rem;
}

.about-list li {
    font-size: 0.88rem;
    padding: 0.7rem 0.8rem;
    border-radius: 14px;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.4);
    position: relative;
    color: var(--text-main);
    padding-left: 1.9rem;
}

.about-list li::before {
    content: "";
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 10px rgba(34,197,94,0.7);
}


.about-gallery {
    display: grid;
    grid-template-areas:
        "big big small1"
        "big big small2";
    gap: 0.8rem;
}

.about-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.55);
    background: rgba(15,23,42,0.9);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.about-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.75), transparent 45%);
    opacity: 0.0;
    transition: opacity 0.3s ease;
}

.about-photo.big {
    grid-area: big;
}
.about-photo:hover img {
    transform: scale(1.06);
}
.about-photo:hover::after {
    opacity: 1;
}
.about-text h2 {
    font-size: 1.9rem;
    margin-bottom: 0.7rem;
    position: relative;
}

.about-text h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.about-text p {
    font-size: 0.96rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    max-width: 620px;
}

.about-list {
    list-style: none;
    margin-top: 0.9rem;
}

.about-list li {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    padding-left: 1.3rem;
    position: relative;
    color: var(--text-main);
}

.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
}


/* İLK 11 */
.lineup-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
}

.lineup-table-wrapper {
    overflow-x: auto;
}

.lineup-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: rgba(15,23,42,0.92);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.5);
}

.lineup-table th,
.lineup-table td {
    padding: 0.6rem 0.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(51,65,85,0.8);
}

.lineup-table thead {
    background: linear-gradient(to right, var(--accent), var(--accent-2));
    color: #0b1120;
}

.lineup-table tbody tr:nth-child(even) {
    background: rgba(15,23,42,0.95);
}

.lineup-table tbody tr:hover {
    background: rgba(34,197,94,0.12);
}

/* Mini pitch */
.lineup-pitch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}

.pitch {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 2 / 3;
    border-radius: 24px;
    border: 2px solid rgba(148,163,184,0.7);
    background: radial-gradient(circle at top, rgba(34,197,94,0.3), rgba(22,163,74,0.8));
    position: relative;
    overflow: hidden;
}

.line-player {
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #0f172a;
    border: 2px solid #bbf7d0;
    color: #bbf7d0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Pozisyon koordinatları (rastgele şık görünüm) */
.gk { bottom: 6%; left: 50%; transform: translateX(-50%); }
.rb { bottom: 20%; left: 15%; }
.cb1 { bottom: 25%; left: 37%; }
.cb2 { bottom: 25%; right: 37%; }
.lb { bottom: 20%; right: 15%; }

.cm1 { bottom: 45%; left: 30%; }
.cm2 { bottom: 45%; right: 30%; }
.cam { bottom: 55%; left: 50%; transform: translateX(-50%); }

.rw { top: 32%; right: 18%; }
.lw { top: 32%; left: 18%; }
.st { top: 20%; left: 50%; transform: translateX(-50%); }

.pitch-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

/* SPONSORLAR */
.sponsors-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1.2rem;
    align-items: center;
}

.sponsor-card {
    background: rgba(15,23,42,0.96);
    border-radius: 18px;
    border: 1px solid rgba(148,163,184,0.4);
    padding: 0.6rem 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    opacity: 0.85;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.sponsor-card img {
    max-height: 40px;
    object-fit: contain;
}

.sponsor-card:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(15,23,42,0.9);
}

/* FOOTER */
.site-footer {
    border-top: 1px solid rgba(30,64,175,0.4);
    padding-top: 2rem;
    padding-bottom: 1.2rem;
    background: radial-gradient(circle at bottom, rgba(15,23,42,0.9), #020617);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
    font-size: 0.9rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 0.5rem;
}

.footer-col p {
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.footer-social a {
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(148,163,184,0.6);
}

.footer-bottom {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 960px) {
    .main-nav {
        position: fixed;
        inset: 60px 1rem auto;
        background: rgba(15,23,42,0.98);
        border-radius: 16px;
        border: 1px solid rgba(148,163,184,0.5);
        padding: 0.8rem 1rem;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0.6rem;
    }

    .btn-cta {
        display: none;
    }

    .burger {
        display: block;
    }

    .hero-inner,
    .about-inner,
    .lineup-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-inner {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-widget {
        order: -1;
        margin-bottom: 1.5rem;
    }

    .about-gallery {
        order: -1;
    }

    .footer-inner {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .players-slider {
        padding-inline: 0.6rem;
    }

    .player-photo {
        height: 130px;
    }

    .hero {
        padding-top: 3.2rem;
    }

    .hero-logo {
        margin-inline: auto;
    }
}
/* HOCA NOTU */
.coach-note-section {
    margin-top: 2rem;
    padding: 4rem 0;
    position: relative;
    background: url('../img/coach-bg.jpg') center/cover no-repeat;
    isolation: isolate;
}

.coach-note {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    padding: 2rem 2.4rem;
    border-radius: 26px;
    border: 1px solid rgba(148,163,184,0.45);
    background: rgba(15,23,42,0.7);
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 50px rgba(15,23,42,0.8);
}

.coach-photo img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(34,197,94,0.55);
    box-shadow: 0 0 18px rgba(34,197,94,0.55);
}

.coach-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    letter-spacing: 0.03em;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.coach-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.55;
}

.coach-sign {
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0.8;
    font-style: italic;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .coach-note {
        flex-direction: column;
        text-align: center;
        padding: 1.8rem 1.4rem;
    }
    
    .coach-photo img {
        width: 90px;
        height: 90px;
    }
}
/* -----------------------------------------------------------
   TEKNİK KADRO
----------------------------------------------------------- */

.staff-section {
    background: radial-gradient(circle at top, rgba(56,189,248,0.10), transparent 60%);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.staff-card {
    background: rgba(15,23,42,0.96);
    border-radius: 22px;
    border: 1px solid rgba(148,163,184,0.45);
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15,23,42,0.9);
    display: flex;
    flex-direction: column;
}

.staff-photo {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.staff-card:hover .staff-photo img {
    transform: scale(1.06);
}

.staff-body {
    padding: 1rem 1.1rem 1.15rem;
}

.staff-body h3 {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.staff-name {
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.staff-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* -----------------------------------------------------------
   TAKIM DEĞERLERİMİZ – PREMIUM TIMELINE TASARIM
----------------------------------------------------------- */

.values-section {
    background: radial-gradient(circle at bottom, rgba(34,197,94,0.18), transparent 60%);
}

.values-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 2.4rem;
    align-items: flex-start;
}

.values-intro h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.values-intro p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.values-highlight {
    border-left: 3px solid var(--accent);
    padding-left: 0.8rem;
    color: var(--text-main);
}

/* Timeline tarafı */

.values-timeline {
    position: relative;
    padding-left: 1.6rem;
}

.values-timeline::before {
    content: "";
    position: absolute;
    left: 0.5rem;
    top: 0.3rem;
    bottom: 0.3rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--accent-2));
    opacity: 0.7;
}

.value-item {
    position: relative;
    margin-bottom: 1.4rem;
    padding-bottom: 0.9rem;
}

.value-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.value-item::after {
    content: "";
    position: absolute;
    left: 0.2rem;
    bottom: 0;
    width: 40%;
    height: 1px;
    background: linear-gradient(to right, rgba(148,163,184,0.6), transparent);
    opacity: 0.35;
}

.value-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
    padding: 0.3rem 0.75rem 0.3rem 0.9rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.95);
    border: 1px solid rgba(148,163,184,0.6);
    box-shadow: 0 10px 24px rgba(15,23,42,0.9);
}

.value-badge::before {
    content: "";
    position: absolute;
    left: -1.03rem;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #0b1120;
    border: 3px solid #bbf7d0;
    box-shadow: 0 0 0 4px rgba(34,197,94,0.25);
}

.value-icon {
    font-size: 1.1rem;
}

.value-title {
    font-size: 0.95rem;
    font-weight: 600;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 520px;
}

/* Mobil uyum */

@media (max-width: 900px) {
    .values-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .values-timeline {
        margin-top: 0.8rem;
    }
}


/* -----------------------------------------------------------
   GALERİ
----------------------------------------------------------- */

.gallery-section {
    background: radial-gradient(circle at top, rgba(15,23,42,0.9), #020617);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.9rem;
}

.gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.4);
    background: rgba(15,23,42,0.9);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.8), transparent 45%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item:hover img {
    transform: scale(1.06);
    opacity: 0.9;
}

.gallery-item:hover::after {
    opacity: 1;
}

@media (max-width: 720px) {
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* -----------------------------------------------------------
   VELİLER İÇİN BİLGİ
----------------------------------------------------------- */

.parents-section {
    background: radial-gradient(circle at bottom, rgba(56,189,248,0.12), transparent 60%);
}

.parents-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.parents-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
}

.parents-list {
    list-style: none;
    margin-top: 0.5rem;
}

.parents-list li {
    font-size: 0.88rem;
    color: var(--text-main);
    margin-bottom: 0.35rem;
    padding-left: 1.2rem;
    position: relative;
}

.parents-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
}

.parents-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
}

.parents-card {
    background: rgba(15,23,42,0.96);
    border-radius: 18px;
    border: 1px solid rgba(148,163,184,0.45);
    padding: 1.1rem 1.1rem 1rem;
    box-shadow: 0 16px 34px rgba(15,23,42,0.9);
}

.parents-card h3 {
    font-size: 0.98rem;
    margin-bottom: 0.35rem;
}

.parents-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .parents-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}
/* -----------------------------------------------------------
   DÜŞBELEN SK SAYILARLA – AÇIK / FERAH TASARIM
----------------------------------------------------------- */

.stats-section {
    padding: 3rem 0;
    background:
        radial-gradient(circle at top, rgba(191, 219, 254, 0.55), transparent 60%),
        radial-gradient(circle at bottom, rgba(34, 197, 94, 0.18), transparent 55%);
}

.stats-inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.8rem;
    padding: 1.9rem 2.2rem;
    border-radius: 26px;

    /* Daha açık bir arka plan */
    background: rgba(15, 23, 42, 0.30);
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

/* Arkaya logo gölge efekti */
.stats-inner::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url('../img/logo.png');
    background-size: 140px;
    background-repeat: repeat;
    background-position: center;

    opacity: 0.02;
    filter: grayscale(1);
    pointer-events: none;
}




/* Hafif açık “ışık lekesi” */
.stats-inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;                  /* genişlik sınırsız */
    height: 180px;             /* yüksekliği istersen artırabilirsin */
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.18),
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.18)
    );
    opacity: 0.6;              /* daha az parlak istersen 0.4 yaparsın */
    pointer-events: none;
}


.stats-title-block {
    max-width: 360px;
    position: relative;
    z-index: 1;
}

.stats-title-block h2 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.stats-title-block p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
    flex: 1;
}

/* Kutuları açalım, boğmasın */
.stat-box {
    text-align: center;
    padding: 0.85rem 0.6rem;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.55);
    background: rgba(248, 250, 252, 0.12); /* açık, yarı şeffaf */
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.45);
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #e5e7eb; /* daha açık */
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* Mobil uyum */
@media (max-width: 900px) {
    .stats-inner {
        flex-direction: column;
        padding: 1.7rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 540px) {
    .stats-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
/* FOOTER LOGO & BRAND */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-logo {
    width: 85px;          /* büyüttük */
    height: auto;         /* oran bozulmasın */
    max-height: 85px;
    border-radius: 18px;
    object-fit: contain;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.6);
}


/* INSTAGRAM ICON STYLE */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.5);
    font-size: 0.8rem;
    background: rgba(15,23,42,0.8);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.social-icon span:last-child {
    color: var(--text-muted);
}

.social-icon:hover {
    background: rgba(15,23,42,1);
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(15,23,42,0.9);
}

.ig-glyph {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: radial-gradient(circle at 30% 30%, #fdf497 0, #fdf497 12%, #fd5949 40%, #d6249f 70%, #285AEB 100%);
    position: relative;
}

.ig-glyph::before,
.ig-glyph::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    border: 2px solid #fff;
}

.ig-glyph::before {
    width: 9px;
    height: 9px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ig-glyph::after {
    width: 3px;
    height: 3px;
    top: 4px;
    right: 4px;
}

/* FOOTER CALLOUT – TELEFON TOAST */
.footer-callout {
    position: fixed;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 80;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0;
}

.footer-callout.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.footer-callout-inner {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1.1rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.95);
    border: 1px solid rgba(148,163,184,0.7);
    box-shadow: 0 16px 40px rgba(15,23,42,0.9);
    font-size: 0.85rem;
}

.callout-label {
    font-weight: 500;
    color: var(--text-main);
}

.callout-phone {
    font-weight: 600;
    color: var(--accent);
}

.callout-close {
    background: transparent;
    border: 0;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    padding: 0 0.2rem;
}

.callout-close:hover {
    color: var(--white);
}

@media (max-width: 480px) {
    .footer-logo {
        width: 64px;
        max-height: 64px;
    }
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.4rem 0 0.8rem;
}

.about-tag {
    font-size: 0.78rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.5);
    background: rgba(15,23,42,0.9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

/* Motto / quote bloğu */
.about-quote {
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.about-quote-line {
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(to bottom, var(--accent), var(--accent-2));
    flex-shrink: 0;
    height: 100%;
}

.about-quote p {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-muted);
}
/* Sporcular slider: sürükle-kaydır */
#playersSlider {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

#playersSlider.dragging {
  cursor: grabbing;
}
/* -----------------------------------------------------------
   YÖNETİM & DENETLEME KURULU
----------------------------------------------------------- */

.boards-section {
    background:
        radial-gradient(circle at top, rgba(34,197,94,0.12), transparent 60%),
        radial-gradient(circle at bottom, rgba(56,189,248,0.10), transparent 55%);
}

.board-block {
    margin-top: 2rem;
}

.board-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.board-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    margin-top: 0.4rem;
    background: linear-gradient(to right, var(--accent), var(--accent-2));
    border-radius: 999px;
}

.board-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.4);
    background: rgba(15,23,42,0.75);
    backdrop-filter: blur(12px);
}

.board-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.1rem;
    border-bottom: 1px solid rgba(148,163,184,0.25);
}

.board-list li:last-child {
    border-bottom: none;
}

.board-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.board-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Mobil uyum */
@media (max-width: 600px) {
    .board-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
}


/* SAYILARLA – FULL WIDTH BAND */
.stats-section{
  padding: 0;
  width: 100%;
}

.stats-inner{
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  padding: 2.4rem 2.2rem;
  border-radius: 0;

  background: rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(10px);

  border-top: 1px solid rgba(148,163,184,0.22);
  border-bottom: 1px solid rgba(148,163,184,0.22);

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.8rem;
}

/* İçeriği max genişlikte tut */
.stats-title-block,
.stats-grid{
  max-width: 1200px;
}

@media (max-width: 900px){
  .stats-inner{
    padding: 2rem 1.3rem;
  }
}
.board-note{
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}
/* Sadece oyuncu slider'ı full geniş */
#playersSlider {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  padding: 0 16px; /* kenarlarda nefes */
}
/* SPORCULARIMIZ – SPOT IŞIĞI EFEKTİ */
#players {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(255, 255, 255, 0.22),
            rgba(15, 23, 42, 0.85) 60%
        ),
        radial-gradient(
            circle at 50% 120%,
            rgba(34, 197, 94, 0.18),
            rgba(15, 23, 42, 0.95) 70%
        );
}
.player-card {
    box-shadow:
        0 12px 28px rgba(0,0,0,0.55),
        0 0 0 rgba(255,255,255,0);
    transition: transform .25s ease, box-shadow .25s ease;
}

.player-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 18px 44px rgba(0,0,0,0.75),
        0 0 18px rgba(34,197,94,0.45);
}
/* VELİLER – GÜVEN ROZETLERİ */
.parents-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.6rem;
}

.parents-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.45);
    color: #bbf7d0;
    white-space: nowrap;
}

/* Yeşil tik */
.parents-badge::before {
    content: "✓";
    font-weight: 700;
    color: #22c55e;
}
/* TEKNİK KADRO - Foto kırpma düzeltme */
.staff-photo{
  height: 260px;          /* istersen 280-320 yapabiliriz */
  overflow: hidden;
  border-radius: 16px;    /* kart tarzına uyum */
}

.staff-photo img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top; /* KAFALAR ARTIK KESİLMEZ */
}
/* Mobilde Sporcularımız sayaç yazısını (1/32) gizle */
@media (max-width: 768px) {
  #playersPageInfo {
    display: none !important;
  }
}
/* Sporcularımız slider sayaç yazısını tamamen kaldır */
#playersPageInfo {
  display: none !important;
}
