/* UGÇ Futbol Akademisi - ugc-style.css */

/* ===== INDEX.HTML ===== */
:root {
            --bg-main: #020817;
            --bg-card: rgba(5, 15, 35, 0.80);
            --bg-card-soft: rgba(7, 21, 44, 0.78);
            --accent-main: #35f1ff;  /* turkuaz */
            --accent-soft: #7ce6ff;
            --accent-altin: #f5c518;
            --text-main: #f3f7ff;
            --text-muted: #96a4c3;
            --border-soft: rgba(107, 181, 255, 0.35);
            --shadow-strong: 0 26px 80px rgba(0, 0, 0, 0.95);
            --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.85);

            /* ✅ Reels yüksekliğini buradan MANUEL ayarlayacaksın */
            --reels-max-h: 520px;
        }

        * { box-sizing: border-box; }

        body {
            margin: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background:
                radial-gradient(circle at top left, #06213e 0, transparent 55%),
                radial-gradient(circle at top right, #050d24 0, transparent 55%),
                radial-gradient(circle at bottom, #020817 0, #000207 60%);
            color: var(--text-main);
            overflow-x: hidden;
        }

        a { color: var(--accent-main); text-decoration: none; }
        a:hover { color: var(--accent-soft); }

        /* Arka planda kalkan logo watermark */
        .ugc-watermark {
            position: fixed;
            inset: 0;
            margin: auto;
            width: 520px;
            height: 520px;
            opacity: 0.045;
            pointer-events: none;
            background: url("/images/ugclogo.png") center/contain no-repeat;
            filter: blur(0.8px);
            z-index: 0;
        }

        /* =======================
           HEADER / NAVBAR (YENİ STANDART - B SEÇENEĞİ)
           - Menü ortada
           - Altın Yıldız pill hep sağda (çakışma yok)
        ======================= */

        header {
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(18px);
            background: transparent;
            border-bottom: 1px solid transparent;
            box-shadow: none;
            transition: background 0.25s ease, box-shadow 0.25s ease, border-bottom 0.25s ease, transform 0.25s ease;
        }
        header.header-solid {
            background: linear-gradient(90deg, rgba(2,8,23,0.97), rgba(2,8,23,0.90));
            border-bottom: 1px solid rgba(76, 124, 255, 0.45);
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.95);
        }
        header.header-hidden { transform: translateY(-100%); }

        .header-inner {
            max-width: 1440px;
            margin: 0 auto;
            padding: 10px 18px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: relative;
        }

        .header-nav{
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            column-gap: 14px;
            width: 100%;
        }

        .header-menu{
            grid-column: 2;
            display: flex;
            align-items: center;
            gap: 22px;
            justify-content: center;
            min-width: 0;
            transform-origin: center;
        }

        .header-menu a {
            color: #f4f6ff;
            font-size: 1.02rem;
            font-weight: 800;
            text-shadow: 0 0 10px rgba(0,0,0,0.9);
            padding: 4px 2px;
            white-space: nowrap;
        }
        .header-menu a:hover { color: var(--accent-main); }
        .header-menu a.active { color: var(--accent-main); }

        /* Altın Yıldız pill */
        .badge-altinyildiz{
            grid-column: 3;
            justify-self: end;

            display: inline-flex;
            align-items: center;
            gap: 8px;

            padding: 6px 14px 6px 10px;
            border-radius: 999px;

            background: linear-gradient(135deg, rgba(245,197,24,0.95), rgba(255,215,106,0.95));
            color: #130e04 !important;

            border: 1px solid rgba(245,197,24,0.75);
            box-shadow: 0 12px 30px rgba(245,197,24,0.22), 0 12px 30px rgba(0,0,0,0.65);

            text-transform: uppercase;
            letter-spacing: 0.14em;
            font-weight: 900;
            white-space: nowrap;
            transition: transform .18s ease, filter .18s ease;
        }
        .badge-altinyildiz:hover{
            transform: translateY(-1px);
            filter: brightness(1.02);
        }
        .badge-altinyildiz img{
            width: 22px;
            height: 22px;
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(0,0,0,0.35));
        }

        .badge-altinyildiz .ay-text{
            display: inline-flex;
            flex-direction: column;
            line-height: 1.05;
            font-size: 0.72rem;
        }
        .badge-altinyildiz .ay-text b{ font-size: 0.74rem; }

        .badge-altinyildiz .ay-cta{
            margin-left: 6px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(2,8,23,0.16);
            border: 1px solid rgba(19,14,4,0.18);
            font-size: 0.68rem;
            letter-spacing: 0.18em;
            font-weight: 900;
            color: #130e04;
        }

        @media (max-width: 1199px){
            .header-menu{ gap: 18px; }
            .header-menu a{ font-size: 0.96rem; }
        }
        @media (max-width: 1099px){
            .header-menu{ transform: scale(0.96); }
        }
        @media (max-width: 1020px){
            .header-menu{ transform: scale(0.93); }
            .badge-altinyildiz{ padding: 6px 12px 6px 10px; }
            .badge-altinyildiz .ay-cta{ display: none; }
        }

        /* MOBİL ÜST ÇUBUK + MENÜ */
        .mobile-bar {
            display: none;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }
        .mobile-logo { display: flex; align-items: center; gap: 8px; }
        .mobile-logo img {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            object-fit: contain;
            background: #020817;
        }
        .mobile-logo span {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #f4f6ff;
        }
        .mobile-menu-toggle {
            background: transparent;
            border: none;
            padding: 4px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            cursor: pointer;
        }
        .mobile-menu-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            border-radius: 999px;
            background: #f4f6ff;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: radial-gradient(circle at top, rgba(4,15,37,0.98), rgba(2,8,23,0.98));
            border-bottom: 1px solid rgba(76,124,255,0.45);
            box-shadow: 0 18px 40px rgba(0,0,0,0.95);
            padding: 10px 18px 14px 18px;
        }
        .mobile-menu.open { display: block; }
        .mobile-menu a {
            display: block;
            padding: 8px 0;
            color: #f4f6ff;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }
        .mobile-menu a + a { border-top: 1px solid rgba(255,255,255,0.06); }
        .mobile-menu a:hover { color: var(--accent-main); }

        .mobile-menu-separator {
            border-top: 1px solid rgba(255,255,255,0.08);
            margin-top: 10px;
            padding-top: 10px;
        }
        .mobile-altinyildiz-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            border-radius: 16px;
            background: radial-gradient(circle at left, rgba(245,197,24,0.28), rgba(10,7,2,0.96));
            border: 1px solid rgba(245,197,24,0.65);
            color: #fffdf0;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }
        .mobile-altinyildiz-link img { width: 26px; height: 26px; object-fit: contain; }
        .mobile-altinyildiz-text { display: flex; flex-direction: column; line-height: 1.1; }
        .mobile-altinyildiz-text strong { font-size: 0.82rem; }
        .mobile-altinyildiz-text span { font-size: 0.72rem; opacity: 0.9; }
        .mobile-altinyildiz-pill {
            margin-left: auto;
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 999px;
            background: linear-gradient(135deg, #f5c518, #ffe38a);
            color: #130e04;
            font-weight: 900;
            letter-spacing: 0.16em;
        }

        /* SOL BİLGİ BLOĞU */
        .side-info {
            position: sticky;
            top: 120px;
            left: 14px;
            max-width: 260px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            color: var(--text-muted);
            align-self: flex-start;
        }
        .side-info-logo {
            width: 216px;
            height: 216px;
            border-radius: 20px;
            padding: 0;
            background: none;
            box-shadow: none;
            filter: drop-shadow(0 0 24px rgba(53,241,255,0.9));
        }
        .side-info-logo a { display: block; }
        .side-info-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 16px;
            background: transparent;
        }
        .side-info-title {
            font-size: 0.9rem;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--accent-soft);
            font-weight: 700;
        }
        .side-info-sub {
            font-size: 0.8rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--text-main);
            font-weight: 600;
        }
        .side-info-text {
            margin-top: 6px;
            font-size: 0.9rem;
            line-height: 1.45;
            color: #dce6ff;
        }
        .side-info-text strong { color: var(--accent-soft); }
        .side-info-note {
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px solid rgba(255,255,255,0.08);
            font-size: 0.84rem;
            color: var(--text-muted);
            line-height: 1.45;
        }

        /* MAIN */
        main {
            position: relative;
            z-index: 1;
            max-width: 1440px;
            margin: 0 auto;
            padding: 26px 18px 60px 18px;
        }
        section { margin-bottom: 40px; }

        /* HERO */
        .hero-card {
            margin-top: 8px;
            background:
                radial-gradient(circle at top left, rgba(53, 241, 255, 0.18) 0, transparent 50%),
                radial-gradient(circle at bottom right, rgba(124, 230, 255, 0.16) 0, transparent 55%),
                linear-gradient(135deg, rgba(2,10,26,0.92), rgba(6,21,45,0.88));
            border-radius: 26px;
            padding: 26px 24px 22px 24px;
            box-shadow: var(--shadow-strong);
            border: 1px solid rgba(96, 176, 255, 0.55);
            position: relative;
            overflow: hidden;
        }
        .hero-logo-big {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 320px;
            height: 320px;
            transform: translate(-50%, -50%);
            opacity: 0.18;
            filter: drop-shadow(0 0 24px rgba(53,241,255,0.9));
            z-index: 0;
            pointer-events: none;
        }
        .hero-logo-big img { width: 100%; height: 100%; object-fit: contain; }

        .hero-label-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .hero-pill {
            border-radius: 999px;
            padding: 4px 14px;
            font-size: 0.75rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }
        .hero-pill-main {
            background: rgba(2, 8, 23, 0.76);
            border: 1px solid rgba(96, 176, 255, 0.7);
            color: var(--accent-soft);
        }
        .hero-pill-sub {
            background: rgba(3, 17, 36, 0.82);
            border: 1px solid rgba(53,241,255,0.5);
            color: var(--text-muted);
        }

        .hero-title {
            font-size: clamp(1.75rem, 4.8vw, 3rem);
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1.1;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .hero-title span {
            color: var(--accent-main);
            text-shadow: 0 0 30px rgba(53,241,255,0.8);
        }
        .hero-text {
            font-size: 0.98rem;
            color: var(--text-muted);
            max-width: 640px;
            position: relative;
            z-index: 1;
            margin-bottom: 10px;
        }
        .hero-text .hero-more {
            margin-top: 10px;
            padding-left: 0;
        }
        .hero-text .hero-more p {
            margin: 0 0 8px 0;
            color: #cfe0ff;
            line-height: 1.55;
        }
        .hero-text .hero-more strong { color: var(--accent-soft); }

        .hero-actions {
            margin-top: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            position: relative;
            z-index: 1;
        }
        .btn-hero-main,
        .btn-hero-ghost {
            border-radius: 999px;
            padding: 9px 20px;
            font-size: 0.86rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            font-weight: 700;
            border: none;
            cursor: pointer;
        }
        .btn-hero-main {
            background: linear-gradient(135deg, var(--accent-main), #7ce6ff);
            color: #021018;
            box-shadow: 0 16px 34px rgba(53,241,255,0.8);
        }
        .btn-hero-main:hover {
            background: linear-gradient(135deg, #a5f6ff, var(--accent-main));
        }
        .btn-hero-ghost {
            border: 1px solid rgba(124,230,255,0.8);
            background: rgba(3, 18, 38, 0.86);
            color: #e6f4ff;
        }
        .btn-hero-ghost:hover { background: rgba(7, 30, 60, 0.94); }

        /* ✅ Kanıt kartı içi mini butonlar */
        .proof-actions {
            margin-top: 10px;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .btn-proof {
            display: inline-block;
            border-radius: 999px;
            padding: 8px 12px;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            font-weight: 800;
            border: 1px solid rgba(124,230,255,0.55);
            background: rgba(2, 8, 23, 0.78);
            color: #e6f4ff;
        }
        .btn-proof:hover {
            background: rgba(7, 30, 60, 0.92);
            color: var(--accent-soft);
            border-color: rgba(124,230,255,0.85);
        }

        /* Reels Video Kart */
        .reels-card {
            background: rgba(2, 11, 27, 0.80);
            border-radius: 20px;
            padding: 14px;
            border: 1px solid rgba(96, 176, 255, 0.55);
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }
        .reels-title {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--accent-soft);
            margin-bottom: 10px;
        }

        /* ✅ Video çerçevesi: ortalı + kırpmasız + manuel boy */
        .reels-frame {
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(53,241,255,0.32);
            background: #000;
            box-shadow: 0 18px 44px rgba(0,0,0,0.85);

            aspect-ratio: 9 / 16;
            height: min(52vh, var(--reels-max-h));
            width: 100%;

            position: relative;

            display: flex;
            align-items: center;
            justify-content: center;
        }
        .reels-frame video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            background: #000;
        }

        .reels-note {
            margin-top: 10px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* KANIT ROZETLERİ */
        .proof-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin-top: 14px;
        }
        .proof-card {
            background: var(--bg-card);
            border-radius: 18px;
            padding: 14px 16px;
            border: 1px solid var(--border-soft);
            box-shadow: var(--shadow-soft);
            color: var(--text-muted);
            font-size: 0.92rem;
        }
        .proof-card strong {
            display: block;
            color: #f6fbff;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            font-size: 0.86rem;
            margin-bottom: 6px;
        }
        .proof-card .mini {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* ŞERİT */
        .strip {
            margin-top: 18px;
            background: linear-gradient(90deg, rgba(3,22,48,0.88), rgba(2,10,27,0.86));
            border-radius: 999px;
            padding: 10px 20px;
            border: 1px solid rgba(96,176,255,0.45);
            box-shadow: var(--shadow-soft);
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            justify-content: center;
            font-size: 0.86rem;
            color: var(--text-muted);
        }
        .strip strong { color: var(--accent-main); }

        /* BAŞLIK TİPLERİ */
        .section-title {
            font-size: 1.1rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            margin-bottom: 8px;
        }
        .section-title span { color: var(--accent-main); }
        .section-sub {
            font-size: 0.95rem;
            color: var(--text-muted);
            max-width: 760px;
            margin-bottom: 16px;
        }

        /* LİG DUYURU BLOĞU */
        .league-card {
            background:
                radial-gradient(circle at top left, rgba(245,197,24,0.13) 0, transparent 55%),
                linear-gradient(135deg, rgba(2,10,26,0.92), rgba(7,23,47,0.86));
            border-radius: 24px;
            padding: 18px 20px 18px 20px;
            border: 1px solid rgba(245,197,24,0.45);
            box-shadow: var(--shadow-strong);
        }
        .league-pill {
            display: inline-block;
            border-radius: 999px;
            padding: 5px 12px;
            font-size: 0.78rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            background: rgba(245,197,24,0.14);
            border: 1px solid rgba(245,197,24,0.55);
            color: #fdf4c6;
            margin-bottom: 10px;
        }
        .league-list {
            list-style: none;
            padding-left: 0;
            margin: 12px 0 0 0;
            font-size: 0.92rem;
            color: #e5f1ff;
        }
        .league-list li {
            display: flex;
            gap: 8px;
            margin-bottom: 8px;
        }
        .league-list li::before {
            content: "";
            margin-top: 7px;
            width: 9px;
            height: 9px;
            border-radius: 999px;
            background: radial-gradient(circle, #f5c518 0, #ffe38a 45%, transparent 100%);
            box-shadow: 0 0 12px rgba(245,197,24,0.7);
        }

        /* YAŞ GRUPLARI */
        .age-wrap {
            background: var(--bg-card-soft);
            border-radius: 20px;
            padding: 16px 18px 18px 18px;
            border: 1px solid rgba(53,241,255,0.32);
            box-shadow: var(--shadow-soft);
        }
        .age-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }
        .age-pill {
            border-radius: 999px;
            padding: 8px 12px;
            font-size: 0.85rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            background: rgba(2, 8, 23, 0.72);
            border: 1px solid rgba(124,230,255,0.55);
            color: #e9f5ff;
        }

        /* ✅ Yaş grubu detay kartları */
        .age-detail-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0,1fr));
            gap: 12px;
            margin-top: 14px;
        }
        .age-detail-card {
            background: rgba(2, 11, 27, 0.72);
            border: 1px solid rgba(96,176,255,0.40);
            border-radius: 18px;
            padding: 14px 14px 12px 14px;
            box-shadow: var(--shadow-soft);
        }
        .age-detail-card .tag {
            display: inline-block;
            border-radius: 999px;
            padding: 5px 10px;
            font-size: 0.72rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            background: rgba(53,241,255,0.12);
            border: 1px solid rgba(53,241,255,0.35);
            color: var(--accent-soft);
            margin-bottom: 8px;
        }
        .age-detail-card h3 {
            font-size: 0.92rem;
            margin: 0 0 8px 0;
            letter-spacing: 0.10em;
            text-transform: uppercase;
            font-weight: 900;
            color: #f6fbff;
        }
        .age-detail-card ul {
            margin: 0;
            padding-left: 18px;
            color: #dce6ff;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        .age-note {
            margin-top: 12px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .age-note strong { color: var(--accent-soft); }

        /* GALERİ */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0,1fr));
            gap: 10px;
            margin-top: 12px;
        }
        .gallery-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: #000;
            box-shadow: var(--shadow-soft);
            aspect-ratio: 4 / 3;
        }
        .gallery-img-blur {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: blur(18px);
            transform: scale(1.12);
            opacity: 0.8;
        }
        .gallery-img-main {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform .3s ease, opacity .3s ease;
        }
        .gallery-item:hover .gallery-img-main {
            transform: scale(1.02);
            opacity: 0.95;
        }
        .gallery-item::after {
            content: "Bu haftadan";
            position: absolute;
            left: 10px;
            bottom: 10px;
            font-size: 0.74rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: #e9f5ff;
            text-shadow: 0 0 10px rgba(0,0,0,0.9);
            z-index: 2;
        }

        /* SSS */
        .faq-wrapper {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 16px 18px 18px 18px;
            border: 1px solid var(--border-soft);
            box-shadow: var(--shadow-soft);
        }
        .faq-intro {
            font-size: 0.92rem;
            color: var(--text-muted);
            margin-bottom: 8px;
        }
        .faq-item {
            border-top: 1px solid rgba(255,255,255,0.04);
            padding: 8px 0;
        }
        .faq-question {
            font-size: 0.9rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
        }
        .faq-question span { font-weight: 600; }
        .faq-toggle { font-size: 1.1rem; color: var(--accent-main); }
        .faq-answer {
            display: none;
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* ✅ Veli görüşleri */
        .testimonials-wrap {
            margin-top: 14px;
            background: var(--bg-card-soft);
            border-radius: 20px;
            padding: 16px 18px 18px 18px;
            border: 1px solid rgba(53,241,255,0.22);
            box-shadow: var(--shadow-soft);
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0,1fr));
            gap: 12px;
            margin-top: 12px;
        }
        .testimonial {
            background: rgba(2, 11, 27, 0.72);
            border: 1px solid rgba(96,176,255,0.35);
            border-radius: 18px;
            padding: 14px 14px 12px 14px;
            box-shadow: var(--shadow-soft);
            color: #dce6ff;
            font-size: 0.92rem;
            line-height: 1.5;
        }
        .testimonial .who {
            margin-top: 10px;
            font-size: 0.78rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        /* KAYIT & İLETİŞİM ÖZETİ */
        .contact-card {
            background:
                radial-gradient(circle at right, rgba(53,241,255,0.22), transparent 55%),
                linear-gradient(135deg, rgba(2,10,26,0.92), rgba(7,23,47,0.86));
            border-radius: 24px;
            padding: 18px 20px 26px 20px;
            border: 1px solid rgba(96,176,255,0.6);
            box-shadow: var(--shadow-strong);
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 2fr 3fr;
            gap: 18px;
        }
        .contact-info p {
            margin-bottom: 4px;
            font-size: 0.92rem;
            color: var(--text-main);
        }
        .contact-info span { color: var(--text-muted); }

        .contact-note {
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid rgba(255,255,255,0.08);
            color: var(--text-muted);
            font-size: 0.88rem;
            line-height: 1.5;
        }
        .contact-note strong { color: var(--accent-soft); }

        .contact-cta {
            font-size: 0.92rem;
            color: var(--text-muted);
            position: relative;
        }
        .contact-cta a.btn-hero-main {
            display: inline-block;
            margin-top: 14px;
            margin-left: 40px;
            padding: 11px 26px;
            font-size: 0.9rem;
            box-shadow: 0 18px 40px rgba(53,241,255,0.9);
            background: linear-gradient(135deg, #35f1ff, #b1f7ff);
        }
        .contact-cta a.btn-hero-main:hover {
            background: linear-gradient(135deg, #c6fbff, #35f1ff);
        }

        /* LIGHTBOX */
        .lightbox-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }
        .lightbox-overlay img {
            max-width: 92vw;
            max-height: 92vh;
            border-radius: 14px;
            box-shadow: 0 24px 70px rgba(0,0,0,0.9);
        }
        .lightbox-overlay.close-cursor { cursor: zoom-out; }

        /* RESPONSIVE */
        @media (max-width: 1199px) { .side-info { display: none; } }

        @media (max-width: 991px) {
            .header-nav { display: none; }
            .mobile-bar { display: flex; }
            main {
                padding-top: 20px;
                margin: 0 auto;
                max-width: 960px;
            }
            .proof-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
            .contact-grid { grid-template-columns: 1fr; }
            .contact-cta a.btn-hero-main { margin-left: 0; }

            .age-detail-grid { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }

            .reels-frame { height: min(48vh, var(--reels-max-h)); }
        }

        @media (max-width: 575px) {
            .hero-card { padding: 20px 16px 18px 16px; }
            .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
        }

        @media (min-width: 1200px) {
            main {
                max-width: none;
                margin-left: 300px;
                width: calc(100% - 320px);
                padding-right: 24px;
            }
        }

/* ===== ANTRENMAN.HTML ===== */
:root {
            --bg-main: #020817;
            --bg-card: rgba(5, 15, 35, 0.80);
            --bg-card-soft: rgba(7, 21, 44, 0.78);
            --accent-main: #35f1ff;
            --accent-soft: #7ce6ff;
            --accent-altin: #f5c518;
            --text-main: #f3f7ff;
            --text-muted: #96a4c3;
            --border-soft: rgba(107, 181, 255, 0.35);
            --shadow-strong: 0 26px 80px rgba(0, 0, 0, 0.95);
            --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.85);
            --section-max-width: 1600px;
        }

        * { box-sizing: border-box; }

        body {
            margin: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background:
                radial-gradient(circle at top left, #06213e 0, transparent 55%),
                radial-gradient(circle at top right, #050d24 0, transparent 55%),
                radial-gradient(circle at bottom, #020817 0, #000207 60%);
            color: var(--text-main);
            overflow-x: hidden;
        }

        a { color: var(--accent-main); text-decoration: none; }
        a:hover { color: var(--accent-soft); }

        .ugc-watermark {
            position: fixed;
            inset: 0;
            margin: auto;
            width: 520px;
            height: 520px;
            opacity: 0.045;
            pointer-events: none;
            background: url("/images/ugclogo.png") center/contain no-repeat;
            filter: blur(0.8px);
            z-index: 0;
        }

        /* HEADER */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(18px);
            background: linear-gradient(90deg, rgba(2,8,23,0.97), rgba(2,8,23,0.90));
            border-bottom: 1px solid rgba(76, 124, 255, 0.45);
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.95);
        }

        .header-inner {
            max-width: 1440px;
            margin: 0 auto;
            padding: 10px 18px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: relative;
        }

        /* MASAÜSTÜ MENÜ (B seçeneği – grid) */
        .header-nav {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            column-gap: 14px;
            width: 100%;
        }

        .header-menu {
            grid-column: 2;
            display: flex;
            align-items: center;
            gap: 22px;
            justify-content: center;
            min-width: 0;
            transform-origin: center;
        }

        .header-menu a {
            color: #f4f6ff;
            font-size: 1.02rem;
            font-weight: 800;
            text-shadow: 0 0 10px rgba(0,0,0,0.9);
            padding: 4px 2px;
            white-space: nowrap;
        }
        .header-menu a:hover { color: var(--accent-main); }
        .header-menu a.active { color: var(--accent-main); }

        /* Altın Yıldız rozet (geliştirilmiş) */
        .badge-altinyildiz {
            grid-column: 3;
            justify-self: end;

            display: inline-flex;
            align-items: center;
            gap: 8px;

            padding: 6px 14px 6px 10px;
            border-radius: 999px;

            background: linear-gradient(135deg, rgba(245,197,24,0.95), rgba(255,215,106,0.95));
            color: #130e04 !important;

            border: 1px solid rgba(245,197,24,0.75);
            box-shadow: 0 12px 30px rgba(245,197,24,0.22), 0 12px 30px rgba(0,0,0,0.65);

            text-transform: uppercase;
            letter-spacing: 0.14em;
            font-weight: 900;
            white-space: nowrap;
            transition: transform .18s ease, filter .18s ease;
        }

        .badge-altinyildiz:hover {
            transform: translateY(-1px);
            filter: brightness(1.02);
        }

        .badge-altinyildiz img {
            width: 22px;
            height: 22px;
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(0,0,0,0.35));
        }

        .badge-altinyildiz .ay-text {
            display: inline-flex;
            flex-direction: column;
            line-height: 1.05;
            font-size: 0.72rem;
        }
        .badge-altinyildiz .ay-text b { font-size: 0.74rem; }

        .badge-altinyildiz .ay-cta {
            margin-left: 6px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(2,8,23,0.16);
            border: 1px solid rgba(19,14,4,0.18);
            font-size: 0.68rem;
            letter-spacing: 0.18em;
            font-weight: 900;
            color: #130e04;
        }

        @media (max-width: 1199px) {
            .header-menu { gap: 18px; }
            .header-menu a { font-size: 0.96rem; }
        }
        @media (max-width: 1099px) {
            .header-menu { transform: scale(0.96); }
        }
        @media (max-width: 1020px) {
            .header-menu { transform: scale(0.93); }
            .badge-altinyildiz { padding: 6px 12px 6px 10px; }
            .badge-altinyildiz .ay-cta { display: none; }
        }

        /* MOBİL */
        .mobile-bar {
            display: none;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .mobile-logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mobile-logo img {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            object-fit: contain;
            background: #020817;
        }

        .mobile-logo span {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #f4f6ff;
        }

        .mobile-menu-toggle {
            background: transparent;
            border: none;
            padding: 4px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            cursor: pointer;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            border-radius: 999px;
            background: #f4f6ff;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: radial-gradient(circle at top, rgba(4,15,37,0.98), rgba(2,8,23,0.98));
            border-bottom: 1px solid rgba(76,124,255,0.45);
            box-shadow: 0 18px 40px rgba(0,0,0,0.95);
            padding: 10px 18px 14px 18px;
        }

        .mobile-menu.open { display: block; }

        .mobile-menu a {
            display: block;
            padding: 8px 0;
            color: #f4f6ff;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

        .mobile-menu a + a { border-top: 1px solid rgba(255,255,255,0.06); }
        .mobile-menu a:hover { color: var(--accent-main); }

        .mobile-menu-separator {
            border-top: 1px solid rgba(255,255,255,0.08);
            margin-top: 10px;
            padding-top: 10px;
        }

        .mobile-altinyildiz-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            border-radius: 16px;
            background: radial-gradient(circle at left, rgba(245,197,24,0.28), rgba(10,7,2,0.96));
            border: 1px solid rgba(245,197,24,0.65);
            color: #fffdf0;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }
        .mobile-altinyildiz-link img { width: 26px; height: 26px; object-fit: contain; }
        .mobile-altinyildiz-text { display: flex; flex-direction: column; line-height: 1.1; }
        .mobile-altinyildiz-text strong { font-size: 0.82rem; }
        .mobile-altinyildiz-text span { font-size: 0.72rem; opacity: 0.9; }
        .mobile-altinyildiz-pill {
            margin-left: auto;
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 999px;
            background: linear-gradient(135deg, #f5c518, #ffe38a);
            color: #130e04;
            font-weight: 900;
            letter-spacing: 0.16em;
        }

        /* Sol bilgi bloğu */
        .side-info {
            position: sticky;
            top: 120px;
            left: 14px;
            max-width: 260px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            color: var(--text-muted);
            align-self: flex-start;
        }
        .side-info-logo {
            width: 216px;
            height: 216px;
            border-radius: 20px;
            padding: 0;
            background: none;
            box-shadow: none;
            filter: drop-shadow(0 0 24px rgba(53,241,255,0.9));
        }
        .side-info-logo a { display: block; }
        .side-info-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 16px;
            background: transparent;
        }
        .side-info-title {
            font-size: 0.9rem;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--accent-soft);
            font-weight: 700;
        }
        .side-info-sub {
            font-size: 0.8rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--text-main);
            font-weight: 600;
        }
        .side-info-text {
            margin-top: 6px;
            font-size: 0.9rem;
            line-height: 1.45;
            color: #dce6ff;
        }
        .side-info-text strong { color: var(--accent-soft); }

        /* MAIN */
        main {
            position: relative;
            z-index: 1;
            max-width: 1440px;
            margin: 0 auto;
            padding: 26px 18px 60px 18px;
        }
        section { margin-bottom: 40px; }

        /* HERO */
        #schedule-hero { padding-top: 4px; }

        .schedule-hero-card {
            background:
                radial-gradient(circle at top left, rgba(53, 241, 255, 0.18) 0, transparent 50%),
                radial-gradient(circle at bottom right, rgba(124, 230, 255, 0.16) 0, transparent 55%),
                linear-gradient(135deg, rgba(2,10,26,0.92), rgba(6,21,45,0.88));
            border-radius: 26px;
            padding: 22px 24px 20px 24px;
            box-shadow: var(--shadow-strong);
            border: 1px solid rgba(96, 176, 255, 0.55);
        }

        .schedule-badge {
            border-radius: 999px;
            padding: 6px 16px;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: #021018;
            background: linear-gradient(135deg, var(--accent-main), #7ce6ff);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 10px 24px rgba(53, 241, 255, 0.7);
        }

        .schedule-hero-title {
            font-size: clamp(2rem, 3vw, 2.6rem);
            font-weight: 900;
            text-transform: uppercase;
            margin-top: 16px;
            line-height: 1.18;
        }
        .schedule-hero-title span {
            color: var(--accent-main);
            text-shadow: 0 0 20px rgba(53, 241, 255, 0.6);
        }

        .schedule-hero-sub {
            font-size: 0.98rem;
            color: var(--text-muted);
            margin-top: 12px;
            max-width: 900px;
        }
        .schedule-hero-sub strong { color: #fdfbff; }

        /* ÜST BAŞLIK + BUTONLAR */
        .schedule-wrapper { padding: 22px 0 50px 0; }
        .section-inner { max-width: var(--section-max-width); margin: 0 auto; }

        .schedule-header-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 18px;
        }

        .schedule-header-text { max-width: 950px; }

        .schedule-section-title {
            text-transform: uppercase;
            letter-spacing: 0.14em;
            font-weight: 900;
            font-size: 1.2rem;
            margin-bottom: 6px;
        }
        .schedule-section-sub {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 0;
        }

        .schedule-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .btn-schedule-main {
            border-radius: 999px;
            border: 1px solid rgba(53,241,255,0.85);
            color: #021018;
            font-size: 0.88rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            padding: 7px 18px;
            background: linear-gradient(135deg, var(--accent-main), #7ce6ff);
            font-weight: 700;
            box-shadow: 0 10px 24px rgba(53, 241, 255, 0.7);
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-schedule-main:hover {
            background: linear-gradient(135deg, #a5f6ff, var(--accent-main));
            color: #021018;
        }

        .btn-schedule-ghost {
            border-radius: 999px;
            border: 1px solid rgba(96, 176, 255, 0.7);
            color: #f7f4ff;
            font-size: 0.88rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            padding: 7px 18px;
            background: rgba(5, 13, 28, 0.9);
            font-weight: 700;
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-schedule-ghost:hover { background: rgba(10, 27, 54, 0.95); }

        /* ÖZET TABLO KARTI */
        .schedule-table-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 16px 18px 18px 18px;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--border-soft);
            margin-bottom: 24px;
        }
        .schedule-table-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .schedule-table-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .table-training {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        .table-training thead { background: rgba(7, 28, 70, 0.95); }
        .table-training th,
        .table-training td {
            padding: 8px 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .table-training th {
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.78rem;
            color: #ece7ff;
        }
        .table-training td { color: #f7f4ff; }
        .table-training tbody tr:nth-child(even) { background: rgba(4, 18, 50, 0.9); }
        .table-training tbody tr:hover { background: rgba(10, 32, 74, 0.95); }

        /* YAŞ GRUBU KARTLARI */
        .schedule-age-title-overall {
            text-transform: uppercase;
            letter-spacing: 0.14em;
            font-weight: 900;
            font-size: 1.05rem;
            margin-bottom: 4px;
            margin-top: 4px;
        }
        .schedule-age-sub {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 14px;
        }

        .age-card {
            background: var(--bg-card-soft);
            border-radius: 18px;
            border: 1px solid var(--border-soft);
            padding: 14px 16px 14px 16px;
            height: 100%;
            box-shadow: var(--shadow-soft);
        }
        .age-card-title {
            font-size: 0.98rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 4px;
        }
        .age-card-tag {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--accent-soft);
            margin-bottom: 6px;
        }
        .age-card-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 6px;
            font-size: 0.9rem;
            color: #f7f4ff;
        }
        .age-card-list li {
            margin-bottom: 3px;
            display: flex;
            gap: 6px;
        }
        .age-card-list li::before {
            content: "•";
            color: var(--accent-main);
            margin-right: 2px;
        }
        .age-card-note {
            font-size: 0.84rem;
            color: var(--text-muted);
        }

        /* ALT NOTLAR */
        .schedule-notes {
            margin-top: 22px;
            background: rgba(4, 14, 34, 0.96);
            border-radius: 18px;
            border: 1px solid var(--border-soft);
            padding: 14px 16px 14px 16px;
            font-size: 0.9rem;
            box-shadow: var(--shadow-soft);
        }
        .schedule-notes-title {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--accent-soft);
            margin-bottom: 6px;
            font-weight: 800;
        }
        .schedule-notes ul { margin: 0; padding-left: 18px; }
        .schedule-notes li { margin-bottom: 4px; color: var(--text-muted); }

        /* RESPONSIVE */
        @media (max-width: 1199px) { .side-info { display: none; } }

        @media (max-width: 991px) {
            .header-nav { display: none; }
            .mobile-bar { display: flex; }
            main {
                padding-top: 20px;
                margin: 0 auto;
                max-width: 960px;
            }
            .schedule-header-row { align-items: flex-start; }
            .schedule-actions { justify-content: flex-start; }
        }

        @media (max-width: 575px) {
            .schedule-hero-card { padding: 18px 16px; }
            .schedule-header-row { flex-direction: column; gap: 10px; }
            .schedule-actions { width: 100%; }
            .btn-schedule-main,
            .btn-schedule-ghost {
                width: 100%;
                justify-content: center;
                text-align: center;
            }
        }

        @media (min-width: 1200px) {
            main {
                max-width: none;
                margin-left: 300px;
                width: calc(100% - 320px);
                padding-right: 24px;
            }
        }

/* ===== DUYURULAR.HTML ===== */
:root {
            --bg-main: #020817;
            --bg-card: rgba(5, 15, 35, 0.80);
            --accent-main: #35f1ff;
            --accent-soft: #7ce6ff;
            --accent-altin: #f5c518;
            --text-main: #f3f7ff;
            --text-muted: #96a4c3;
            --shadow-strong: 0 26px 80px rgba(0, 0, 0, 0.95);
        }

        * { box-sizing: border-box; }

        body {
            margin: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background:
                radial-gradient(circle at top left, #06213e 0, transparent 55%),
                radial-gradient(circle at top right, #050d24 0, transparent 55%),
                radial-gradient(circle at bottom, #020817 0, #000207 60%);
            color: var(--text-main);
            overflow-x: hidden;
        }

        a { color: var(--accent-main); text-decoration: none; }
        a:hover { color: var(--accent-soft); }

        .ugc-watermark {
            position: fixed;
            inset: 0;
            margin: auto;
            width: 520px;
            height: 520px;
            opacity: 0.045;
            pointer-events: none;
            background: url("/images/ugclogo.png") center/contain no-repeat;
            filter: blur(0.8px);
            z-index: 0;
        }

        /* =======================
           HEADER / NAVBAR (YENİ STANDART)
        ======================= */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(18px);
            background: transparent;
            border-bottom: 1px solid transparent;
            box-shadow: none;
            transition: background 0.25s ease, box-shadow 0.25s ease, border-bottom 0.25s ease, transform 0.25s ease;
        }
        header.header-solid {
            background: linear-gradient(90deg, rgba(2,8,23,0.97), rgba(2,8,23,0.90));
            border-bottom: 1px solid rgba(76, 124, 255, 0.45);
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.95);
        }
        header.header-hidden { transform: translateY(-100%); }

        .header-inner {
            max-width: 1440px;
            margin: 0 auto;
            padding: 10px 18px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: relative;
        }

        .header-nav{
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            column-gap: 14px;
            width: 100%;
        }

        .header-menu{
            grid-column: 2;
            display: flex;
            align-items: center;
            gap: 22px;
            justify-content: center;
            min-width: 0;
            transform-origin: center;
        }

        .header-menu a{
            color: #f4f6ff;
            font-size: 1.02rem;
            font-weight: 800;
            text-shadow: 0 0 10px rgba(0,0,0,0.9);
            padding: 4px 2px;
            white-space: nowrap;
        }
        .header-menu a:hover { color: var(--accent-main); }
        .header-menu a.active { color: var(--accent-main); }

        .badge-altinyildiz{
            grid-column: 3;
            justify-self: end;

            display: inline-flex;
            align-items: center;
            gap: 8px;

            padding: 6px 14px 6px 10px;
            border-radius: 999px;

            background: linear-gradient(135deg, rgba(245,197,24,0.95), rgba(255,215,106,0.95));
            color: #130e04 !important;

            border: 1px solid rgba(245,197,24,0.75);
            box-shadow: 0 12px 30px rgba(245,197,24,0.22), 0 12px 30px rgba(0,0,0,0.65);

            text-transform: uppercase;
            letter-spacing: 0.14em;
            font-weight: 900;
            white-space: nowrap;
            transition: transform .18s ease, filter .18s ease;
        }
        .badge-altinyildiz:hover{
            transform: translateY(-1px);
            filter: brightness(1.02);
        }
        .badge-altinyildiz img{
            width: 22px;
            height: 22px;
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(0,0,0,0.35));
        }

        .badge-altinyildiz .ay-text{
            display: inline-flex;
            flex-direction: column;
            line-height: 1.05;
            font-size: 0.72rem;
        }
        .badge-altinyildiz .ay-text b{ font-size: 0.74rem; }

        .badge-altinyildiz .ay-cta{
            margin-left: 6px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(2,8,23,0.16);
            border: 1px solid rgba(19,14,4,0.18);
            font-size: 0.68rem;
            letter-spacing: 0.18em;
            font-weight: 900;
            color: #130e04;
        }

        @media (max-width: 1199px){
            .header-menu{ gap: 18px; }
            .header-menu a{ font-size: 0.96rem; }
        }
        @media (max-width: 1099px){
            .header-menu{ transform: scale(0.96); }
        }
        @media (max-width: 1020px){
            .header-menu{ transform: scale(0.93); }
            .badge-altinyildiz{ padding: 6px 12px 6px 10px; }
            .badge-altinyildiz .ay-cta{ display: none; }
        }

        /* Mobil bar */
        .mobile-bar { display: none; align-items: center; justify-content: space-between; gap: 10px; }
        .mobile-logo { display: flex; align-items: center; gap: 8px; }
        .mobile-logo img { width: 34px; height: 34px; border-radius: 50%; object-fit: contain; background: #020817; }
        .mobile-logo span { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #f4f6ff; }
        .mobile-menu-toggle { background: transparent; border: none; padding: 4px; display: flex; flex-direction: column; justify-content: center; gap: 4px; cursor: pointer; }
        .mobile-menu-toggle span { display: block; width: 22px; height: 2px; border-radius: 999px; background: #f4f6ff; }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: radial-gradient(circle at top, rgba(4,15,37,0.98), rgba(2,8,23,0.98));
            border-bottom: 1px solid rgba(76,124,255,0.45);
            box-shadow: 0 18px 40px rgba(0,0,0,0.95);
            padding: 10px 18px 14px 18px;
        }
        .mobile-menu.open { display: block; }
        .mobile-menu a {
            display: block;
            padding: 8px 0;
            color: #f4f6ff;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }
        .mobile-menu a + a { border-top: 1px solid rgba(255,255,255,0.06); }

        .mobile-menu-separator { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 10px; padding-top: 10px; }
        .mobile-altinyildiz-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            border-radius: 16px;
            background: radial-gradient(circle at left, rgba(245,197,24,0.28), rgba(10,7,2,0.96));
            border: 1px solid rgba(245,197,24,0.65);
            color: #fffdf0;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }
        .mobile-altinyildiz-link img { width: 26px; height: 26px; object-fit: contain; }
        .mobile-altinyildiz-text{
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }
        .mobile-altinyildiz-text strong{ font-size: 0.82rem; }
        .mobile-altinyildiz-text span{ font-size: 0.72rem; opacity: 0.9; }
        .mobile-altinyildiz-pill {
            margin-left: auto;
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 999px;
            background: linear-gradient(135deg, #f5c518, #ffe38a);
            color: #130e04;
            font-weight: 900;
            letter-spacing: 0.16em;
        }

        /* =======================
           Sol bilgi bloğu (GÜNCELLENDİ)
        ======================= */
        .side-info {
            position: sticky;
            top: 120px;
            left: 14px;
            max-width: 260px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            color: var(--text-muted);
            align-self: flex-start;
        }
        .side-info-logo {
            width: 216px;
            height: 216px;
            border-radius: 20px;
            padding: 0;
            background: none;
            box-shadow: none;
            filter: drop-shadow(0 0 24px rgba(53,241,255,0.9));
        }
        .side-info-logo a { display: block; }
        .side-info-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 16px; background: transparent; }

        .side-info-title {
            font-size: 0.9rem;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--accent-soft);
            font-weight: 800;
        }
        .side-info-sub {
            font-size: 0.8rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--text-main);
            font-weight: 650;
        }
        .side-info-text {
            margin-top: 4px;
            font-size: 0.9rem;
            line-height: 1.5;
            color: #dce6ff;
        }
        .side-info-text strong { color: var(--accent-soft); }

        .side-info-note{
            margin-top: 10px;
            padding: 10px 12px;
            border-radius: 14px;
            background: rgba(3, 18, 38, 0.72);
            border: 1px solid rgba(124,230,255,0.26);
            box-shadow: 0 12px 28px rgba(0,0,0,0.55);
            color: #e3eeff;
            font-size: 0.85rem;
            line-height: 1.35;
        }

        .side-actions{
            margin-top: 10px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            width: 100%;
        }
        .side-btn{
            width: 100%;
            border-radius: 999px;
            padding: 8px 12px;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            font-weight: 900;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .side-btn.main{
            background: linear-gradient(135deg, var(--accent-main), #7ce6ff);
            color: #021018;
            box-shadow: 0 12px 22px rgba(53,241,255,0.35);
        }
        .side-btn.ghost{
            border: 1px solid rgba(124,230,255,0.45);
            background: rgba(2, 8, 23, 0.70);
            color: #e6f4ff;
        }

        main {
            position: relative;
            z-index: 1;
            max-width: 1440px;
            margin: 0 auto;
            padding: 22px 16px 52px 16px;
        }
        section { margin-bottom: 26px; }

        .page-hero {
            margin-top: 6px;
            background:
                radial-gradient(circle at top left, rgba(53, 241, 255, 0.14) 0, transparent 52%),
                radial-gradient(circle at bottom right, rgba(124, 230, 255, 0.10) 0, transparent 60%),
                linear-gradient(135deg, rgba(2,10,26,0.90), rgba(6,21,45,0.86));
            border-radius: 22px;
            padding: 14px 14px 12px 14px;
            box-shadow: var(--shadow-strong);
            border: 1px solid rgba(96, 176, 255, 0.45);
            overflow: hidden;
        }
        .page-hero .pill {
            display: inline-block;
            border-radius: 999px;
            padding: 4px 10px;
            font-size: 0.72rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            background: rgba(2, 8, 23, 0.76);
            border: 1px solid rgba(96, 176, 255, 0.50);
            color: var(--accent-soft);
            margin-bottom: 8px;
        }
        .page-hero h1 {
            margin: 0 0 6px 0;
            font-size: clamp(1.20rem, 3.1vw, 1.75rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            line-height: 1.12;
        }
        .page-hero h1 span { color: var(--accent-main); text-shadow: 0 0 26px rgba(53,241,255,0.52); }
        .page-hero p {
            color: var(--text-muted);
            margin: 0;
            max-width: 820px;
            line-height: 1.55;
            font-size: 0.90rem;
        }

        /* ====== DUYURU ====== */
        .big-ann {
            margin-top: 12px;
            background: var(--bg-card);
            border-radius: 22px;
            border: 1px solid rgba(124,230,255,0.40);
            box-shadow: var(--shadow-strong);
            overflow: hidden;
        }

        .big-ann-inner{
            display: grid;
            grid-template-columns: 40% 60%;
            align-items: start;
        }

        .big-ann-media {
            position: relative;
            overflow: hidden;
            background: #000;
            height: 480px;
            border-right: 1px solid rgba(255,255,255,0.06);
        }

        .big-ann-media::before {
            content: "";
            position: absolute;
            inset: -22px;
            background-image: url("/images/duyurular/efe-bas.jpg");
            background-size: cover;
            background-position: center;
            filter: blur(26px) brightness(0.62);
            transform: scale(1.18);
            z-index: 1;
        }

        .big-ann-media img {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            transform: scale(1);
        }

        .big-ann-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0,0,0,0.18), rgba(0,0,0,0.12));
            pointer-events: none;
            z-index: 3;
        }

        .big-ann-body { padding: 12px; }

        .big-ann-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }
        .big-date {
            font-size: 0.70rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--text-muted);
        }
        .big-tag {
            font-size: 0.66rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            padding: 4px 9px;
            border-radius: 999px;
            background: rgba(53,241,255,0.10);
            border: 1px solid rgba(53,241,255,0.28);
            color: var(--accent-soft);
        }

        .big-title {
            margin: 0 0 8px 0;
            font-size: clamp(0.98rem, 1.7vw, 1.25rem);
            font-weight: 950;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #f6fbff;
        }

        .big-text p {
            margin: 0 0 6px 0;
            color: #dce6ff;
            font-size: 0.88rem;
            line-height: 1.55;
        }

        .big-h2 {
            margin: 10px 0 6px 0;
            font-size: 0.88rem;
            font-weight: 900;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }
        .big-h2 span { color: var(--accent-main); }

        .big-side-note {
            margin-top: 10px;
            padding: 10px 10px;
            border-radius: 14px;
            background: rgba(2, 8, 23, 0.65);
            border: 1px solid rgba(107, 181, 255, 0.22);
            color: var(--text-muted);
            font-size: 0.86rem;
            line-height: 1.55;
        }

        .big-actions {
            margin-top: 10px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }
        .btn-main, .btn-ghost {
            border-radius: 999px;
            padding: 8px 14px;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            font-weight: 900;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-main {
            background: linear-gradient(135deg, var(--accent-main), #7ce6ff);
            color: #021018;
            box-shadow: 0 12px 24px rgba(53,241,255,0.48);
        }
        .btn-ghost {
            border: 1px solid rgba(124,230,255,0.50);
            background: rgba(2, 8, 23, 0.72);
            color: #e6f4ff;
        }

        footer {
            padding: 24px 18px 12px 18px;
            border-top: 1px solid rgba(76, 124, 255, 0.35);
            background: radial-gradient(circle at top, #040f25 0, #020817 60%);
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .footer-inner { max-width: 1440px; margin: 0 auto; }
        .footer-title { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; color: var(--accent-soft); }
        .footer-link { color: #f3f7ff; text-decoration: none; }
        .footer-link:hover { color: var(--accent-main); }
        .footer-copy { margin-top: 18px; text-align: center; font-size: 0.85rem; }

        @media (max-width: 1199px) { .side-info { display: none; } }

        @media (max-width: 991px) {
            .header-nav { display: none; }
            .mobile-bar { display: flex; }

            .big-ann-inner { grid-template-columns: 1fr; }
            .big-ann-media { height: 160px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
            .big-ann-body { padding: 12px; }
        }

        @media (min-width: 1200px) {
            main {
                max-width: none;
                margin-left: 300px;
                width: calc(100% - 320px);
                padding-right: 22px;
            }
        }

/* ===== GALERI.HTML ===== */
:root {
            --bg-main: #020817;
            --bg-card: rgba(5, 15, 35, 0.80);
            --bg-card-soft: rgba(7, 21, 44, 0.78);
            --accent-main: #35f1ff;
            --accent-soft: #7ce6ff;
            --accent-gold: #f5c518;
            --text-main: #f3f7ff;
            --text-muted: #96a4c3;
            --border-soft: rgba(107, 181, 255, 0.35);
            --shadow-strong: 0 26px 80px rgba(0, 0, 0, 0.95);
            --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.85);
            --section-max-width: 1600px;
        }

        * { box-sizing: border-box; }

        body {
            margin: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background:
                radial-gradient(circle at top left, #06213e 0, transparent 55%),
                radial-gradient(circle at top right, #050d24 0, transparent 55%),
                radial-gradient(circle at bottom, #020817 0, #000207 60%);
            color: var(--text-main);
            overflow-x: hidden;
        }

        a { color: var(--accent-main); text-decoration: none; }
        a:hover { color: var(--accent-soft); }

        /* Watermark */
        .ugc-watermark {
            position: fixed;
            inset: 0;
            margin: auto;
            width: 520px;
            height: 520px;
            opacity: 0.045;
            pointer-events: none;
            background: url("/images/ugclogo.png") center/contain no-repeat;
            filter: blur(0.8px);
            z-index: 0;
        }

        /* HEADER */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(18px);
            background: linear-gradient(90deg, rgba(2,8,23,0.97), rgba(2,8,23,0.90));
            border-bottom: 1px solid rgba(76, 124, 255, 0.45);
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.95);
        }

        .header-inner {
            max-width: 1440px;
            margin: 0 auto;
            padding: 10px 18px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: relative;
        }

        /* MASAÜSTÜ MENÜ (B seçeneği – grid) */
        .header-nav {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            column-gap: 14px;
            width: 100%;
        }

        .header-menu {
            grid-column: 2;
            display: flex;
            align-items: center;
            gap: 22px;
            justify-content: center;
            min-width: 0;
            transform-origin: center;
        }

        .header-menu a {
            color: #f4f6ff;
            font-size: 1.02rem;
            font-weight: 800;
            text-shadow: 0 0 10px rgba(0,0,0,0.9);
            padding: 4px 2px;
            white-space: nowrap;
        }

        .header-menu a:hover { color: var(--accent-main); }
        .header-menu a.active { color: var(--accent-main); }

        /* Altın Yıldız rozet (geliştirilmiş) */
        .badge-altinyildiz {
            grid-column: 3;
            justify-self: end;

            display: inline-flex;
            align-items: center;
            gap: 8px;

            padding: 6px 14px 6px 10px;
            border-radius: 999px;

            background: linear-gradient(135deg, rgba(245,197,24,0.95), rgba(255,215,106,0.95));
            color: #130e04 !important;

            border: 1px solid rgba(245,197,24,0.75);
            box-shadow: 0 12px 30px rgba(245,197,24,0.22), 0 12px 30px rgba(0,0,0,0.65);

            text-transform: uppercase;
            letter-spacing: 0.14em;
            font-weight: 900;
            white-space: nowrap;
            transition: transform .18s ease, filter .18s ease;
        }

        .badge-altinyildiz:hover {
            transform: translateY(-1px);
            filter: brightness(1.02);
        }

        .badge-altinyildiz img {
            width: 22px;
            height: 22px;
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(0,0,0,0.35));
        }

        .badge-altinyildiz .ay-text {
            display: inline-flex;
            flex-direction: column;
            line-height: 1.05;
            font-size: 0.72rem;
        }
        .badge-altinyildiz .ay-text b { font-size: 0.74rem; }

        .badge-altinyildiz .ay-cta {
            margin-left: 6px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(2,8,23,0.16);
            border: 1px solid rgba(19,14,4,0.18);
            font-size: 0.68rem;
            letter-spacing: 0.18em;
            font-weight: 900;
            color: #130e04;
        }

        @media (max-width: 1199px) {
            .header-menu { gap: 18px; }
            .header-menu a { font-size: 0.96rem; }
        }
        @media (max-width: 1099px) {
            .header-menu { transform: scale(0.96); }
        }
        @media (max-width: 1020px) {
            .header-menu { transform: scale(0.93); }
            .badge-altinyildiz { padding: 6px 12px 6px 10px; }
            .badge-altinyildiz .ay-cta { display: none; }
        }

        /* MOBİL BAR */
        .mobile-bar {
            display: none;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .mobile-logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mobile-logo img {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            object-fit: contain;
            background: #020817;
        }

        .mobile-logo span {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #f4f6ff;
        }

        .mobile-menu-toggle {
            background: transparent;
            border: none;
            padding: 4px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            cursor: pointer;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            border-radius: 999px;
            background: #f4f6ff;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: radial-gradient(circle at top, rgba(4,15,37,0.98), rgba(2,8,23,0.98));
            border-bottom: 1px solid rgba(76,124,255,0.45);
            box-shadow: 0 18px 40px rgba(0,0,0,0.95);
            padding: 10px 18px 14px 18px;
        }

        .mobile-menu.open { display: block; }

        .mobile-menu a {
            display: block;
            padding: 8px 0;
            color: #f4f6ff;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

        .mobile-menu a + a { border-top: 1px solid rgba(255,255,255,0.06); }
        .mobile-menu a:hover { color: var(--accent-main); }

        .mobile-menu-separator {
            border-top: 1px solid rgba(255,255,255,0.08);
            margin-top: 10px;
            padding-top: 10px;
        }

        .mobile-altinyildiz-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            border-radius: 16px;
            background: radial-gradient(circle at left, rgba(245,197,24,0.28), rgba(10,7,2,0.96));
            border: 1px solid rgba(245,197,24,0.65);
            color: #fffdf0;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }
        .mobile-altinyildiz-link img { width: 26px; height: 26px; object-fit: contain; }
        .mobile-altinyildiz-text { display: flex; flex-direction: column; line-height: 1.1; }
        .mobile-altinyildiz-text strong { font-size: 0.82rem; }
        .mobile-altinyildiz-text span { font-size: 0.72rem; opacity: 0.9; }
        .mobile-altinyildiz-pill {
            margin-left: auto;
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 999px;
            background: linear-gradient(135deg, #f5c518, #ffe38a);
            color: #130e04;
            font-weight: 900;
            letter-spacing: 0.16em;
        }

        /* Sol bilgi bloğu */
        .side-info {
            position: sticky;
            top: 120px;
            left: 14px;
            max-width: 260px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            color: var(--text-muted);
            align-self: flex-start;
        }

        .side-info-logo {
            width: 216px;
            height: 216px;
            border-radius: 20px;
            padding: 0;
            background: none;
            box-shadow: none;
            filter: drop-shadow(0 0 24px rgba(53,241,255,0.9));
        }

        .side-info-logo a { display: block; }

        .side-info-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 16px;
        }

        .side-info-title {
            font-size: 0.9rem;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--accent-soft);
            font-weight: 700;
        }

        .side-info-sub {
            font-size: 0.8rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--text-main);
            font-weight: 600;
        }

        .side-info-text {
            margin-top: 6px;
            font-size: 0.9rem;
            line-height: 1.45;
            color: #dce6ff;
        }

        .side-info-text strong { color: var(--accent-soft); }

        /* MAIN */
        main {
            position: relative;
            z-index: 1;
            max-width: 1440px;
            margin: 0 auto;
            padding: 26px 18px 60px 18px;
        }

        section { margin-bottom: 40px; }

        .section-inner {
            max-width: var(--section-max-width);
            margin: 0 auto;
        }

        /* HERO – GALERİ */
        #gallery-hero { padding-top: 4px; }

        .hero-card {
            position: relative;
            background:
                radial-gradient(circle at top left, rgba(53, 241, 255, 0.18) 0, transparent 50%),
                radial-gradient(circle at bottom right, rgba(124, 230, 255, 0.16) 0, transparent 55%),
                linear-gradient(135deg, rgba(2,10,26,0.92), rgba(6,21,45,0.88));
            border-radius: 28px;
            padding: 26px 26px 24px 26px;
            box-shadow: var(--shadow-strong);
            overflow: hidden;
            border: 1px solid rgba(96, 176, 255, 0.55);
        }

        .hero-content { position: relative; z-index: 2; }

        .hero-badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            margin-bottom: 12px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-radius: 999px;
            padding: 5px 14px;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: #021018;
            background: linear-gradient(135deg, var(--accent-main), #7ce6ff);
            box-shadow: 0 10px 22px rgba(53, 241, 255, 0.6);
        }

        .hero-title {
            margin-top: 4px;
            font-size: clamp(2.1rem, 3.2vw, 2.7rem);
            font-weight: 900;
            line-height: 1.18;
            text-transform: uppercase;
        }

        .hero-title span {
            color: var(--accent-main);
            text-shadow: 0 0 25px rgba(53, 241, 255, 0.5);
        }

        .hero-subtitle {
            font-size: 0.98rem;
            color: var(--text-muted);
            max-width: 760px;
            margin-top: 14px;
        }

        .hero-subtitle strong { color: #fdfbff; }

        .hero-note {
            font-size: 0.86rem;
            color: var(--text-muted);
            margin-top: 8px;
        }

        .hero-note strong { color: #fdfbff; }

        /* GALERİ KART YAPISI */
        .gallery-section-wrapper { padding: 10px 0 0 0; }

        .gallery-section-title {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--accent-soft);
            margin-bottom: 16px;
        }

        .gallery-card {
            background: var(--bg-card-soft);
            border-radius: 18px;
            border: 1px solid var(--border-soft);
            padding: 18px 18px 14px 18px;
            height: 100%;
            box-shadow: var(--shadow-soft);
            display: flex;
            flex-direction: column;
        }

        .gallery-card h3 {
            font-size: 1.08rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .gallery-card p {
            font-size: 0.95rem;
            color: var(--text-main);
            margin-bottom: 0;
        }

        .tag-pill {
            display: inline-block;
            border-radius: 999px;
            padding: 4px 10px;
            border: 1px solid rgba(124,230,255,0.7);
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.11em;
            color: var(--accent-soft);
            margin-bottom: 8px;
        }

        .gallery-thumbs {
            margin-top: 12px;
            margin-bottom: 12px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .thumb-wrap {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            height: 190px;
        }

        .thumb-wrap::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: var(--thumb-bg);
            background-size: cover;
            background-position: center;
            filter: blur(14px);
            transform: scale(1.08);
        }

        .thumb-wrap img {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            object-fit: contain;
            cursor: zoom-in;
        }

        .gallery-card-footer {
            margin-top: auto;
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: 0.86rem;
        }

        .gallery-note { color: var(--text-muted); }

        .gallery-btn {
            border-radius: 999px;
            border: 1px solid rgba(124,230,255,0.9);
            background: linear-gradient(135deg, rgba(53,241,255,0.14), rgba(124,230,255,0.24));
            color: var(--accent-soft);
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 0.11em;
            font-weight: 600;
            padding: 8px 16px;
            align-self: flex-start;
        }

        .gallery-btn:hover {
            background: linear-gradient(135deg, rgba(53,241,255,0.3), rgba(124,230,255,0.45));
            color: #020817;
        }

        .mobile-drive-note {
            display: none;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 10px;
        }

        .gallery-section { padding: 20px 0 0 0; }

        .maintenance-box {
            background: var(--bg-card);
            border-radius: 20px;
            border: 1px solid rgba(124,230,255,0.7);
            padding: 24px 22px;
            max-width: 900px;
            box-shadow: var(--shadow-soft);
            margin: 0 auto;
        }

        .maintenance-icon { font-size: 2.2rem; margin-bottom: 4px; }

        .maintenance-title {
            font-size: 1.4rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .maintenance-text {
            font-size: 0.96rem;
            color: #e4e9ff;
            line-height: 1.7;
        }

        .maintenance-text strong { color: var(--accent-soft); }

        /* LIGHTBOX */
        #lightbox-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.9);
            backdrop-filter: blur(6px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
            transition: opacity .25s ease;
        }

        #lightbox-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        #lightbox-overlay img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 12px;
            border: 3px solid rgba(245,197,24,0.9);
            box-shadow: 0 0 24px rgba(0,0,0,0.85);
        }

        /* RESPONSIVE */
        @media (max-width: 1199px) {
            .side-info { display: none; }
        }

        @media (max-width: 991px) {
            .header-nav { display: none; }
            .mobile-bar { display: flex; }

            main {
                padding-top: 20px;
                margin: 0 auto;
                max-width: 960px;
            }
        }

        @media (max-width: 575px) {
            .hero-card { padding: 20px 16px 18px 16px; }
            .hero-title { font-size: 1.9rem; }

            .thumb-wrap { height: 220px; }

            .gallery-btn {
                width: 100%;
                text-align: center;
                align-self: stretch;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .mobile-drive-note { display: block; }
        }

        @media (min-width: 1200px) {
            main {
                max-width: none;
                margin-left: 300px;
                width: calc(100% - 320px);
                padding-right: 24px;
            }
        }

/* ===== HAKKIMIZDA.HTML ===== */
:root {
      --bg-main: #020817;
      --bg-card: rgba(5, 15, 35, 0.80);
      --bg-card-soft: rgba(7, 21, 44, 0.78);
      --accent-main: #35f1ff;
      --accent-soft: #7ce6ff;
      --accent-altin: #f5c518;
      --text-main: #f3f7ff;
      --text-muted: #96a4c3;
      --border-soft: rgba(107, 181, 255, 0.35);
      --shadow-strong: 0 26px 80px rgba(0, 0, 0, 0.95);
      --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.85);
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top left, #06213e 0, transparent 55%),
        radial-gradient(circle at top right, #050d24 0, transparent 55%),
        radial-gradient(circle at bottom, #020817 0, #000207 60%);
      color: var(--text-main);
      overflow-x: hidden;
    }

    a { color: var(--accent-main); text-decoration: none; }
    a:hover { color: var(--accent-soft); }

    .ugc-watermark {
      position: fixed;
      inset: 0;
      margin: auto;
      width: 520px;
      height: 520px;
      opacity: 0.045;
      pointer-events: none;
      background: url("/images/ugclogo.png") center/contain no-repeat;
      filter: blur(0.8px);
      z-index: 0;
    }

    /* HEADER */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(18px);
      background: linear-gradient(90deg, rgba(2,8,23,0.97), rgba(2,8,23,0.90));
      border-bottom: 1px solid rgba(76, 124, 255, 0.45);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.95);
    }

    .header-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 10px 18px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      position: relative;
    }

    /* MASAÜSTÜ MENÜ (B seçeneği) */
    .header-nav {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      column-gap: 14px;
      width: 100%;
    }

    .header-menu {
      grid-column: 2;
      display: flex;
      align-items: center;
      gap: 22px;
      justify-content: center;
      min-width: 0;
      transform-origin: center;
    }

    .header-menu a {
      color: #f4f6ff;
      font-size: 1.02rem;
      font-weight: 800;
      text-shadow: 0 0 10px rgba(0,0,0,0.9);
      padding: 4px 2px;
      white-space: nowrap;
    }

    .header-menu a:hover { color: var(--accent-main); }
    .header-menu a.active { color: var(--accent-main); }

    /* Altın Yıldız rozet (geliştirilmiş) */
    .badge-altinyildiz {
      grid-column: 3;
      justify-self: end;

      display: inline-flex;
      align-items: center;
      gap: 8px;

      padding: 6px 14px 6px 10px;
      border-radius: 999px;

      background: linear-gradient(135deg, rgba(245,197,24,0.95), rgba(255,215,106,0.95));
      color: #130e04 !important;

      border: 1px solid rgba(245,197,24,0.75);
      box-shadow: 0 12px 30px rgba(245,197,24,0.22), 0 12px 30px rgba(0,0,0,0.65);

      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-weight: 900;
      white-space: nowrap;
      transition: transform .18s ease, filter .18s ease;
    }

    .badge-altinyildiz:hover {
      transform: translateY(-1px);
      filter: brightness(1.02);
    }

    .badge-altinyildiz img {
      width: 22px;
      height: 22px;
      object-fit: contain;
      filter: drop-shadow(0 0 10px rgba(0,0,0,0.35));
    }

    .badge-altinyildiz .ay-text {
      display: inline-flex;
      flex-direction: column;
      line-height: 1.05;
      font-size: 0.72rem;
    }
    .badge-altinyildiz .ay-text b { font-size: 0.74rem; }

    .badge-altinyildiz .ay-cta {
      margin-left: 6px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(2,8,23,0.16);
      border: 1px solid rgba(19,14,4,0.18);
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      font-weight: 900;
      color: #130e04;
    }

    @media (max-width: 1199px) {
      .header-menu { gap: 18px; }
      .header-menu a { font-size: 0.96rem; }
    }
    @media (max-width: 1099px) {
      .header-menu { transform: scale(0.96); }
    }
    @media (max-width: 1020px) {
      .header-menu { transform: scale(0.93); }
      .badge-altinyildiz { padding: 6px 12px 6px 10px; }
      .badge-altinyildiz .ay-cta { display: none; }
    }

    /* MOBİL */
    .mobile-bar {
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .mobile-logo {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .mobile-logo img {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      object-fit: contain;
      background: #020817;
    }

    .mobile-logo span {
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #f4f6ff;
    }

    .mobile-menu-toggle {
      background: transparent;
      border: none;
      padding: 4px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      cursor: pointer;
    }

    .mobile-menu-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      border-radius: 999px;
      background: #f4f6ff;
    }

    .mobile-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: radial-gradient(circle at top, rgba(4,15,37,0.98), rgba(2,8,23,0.98));
      border-bottom: 1px solid rgba(76,124,255,0.45);
      box-shadow: 0 18px 40px rgba(0,0,0,0.95);
      padding: 10px 18px 14px 18px;
    }

    .mobile-menu.open { display: block; }

    .mobile-menu a {
      display: block;
      padding: 8px 0;
      color: #f4f6ff;
      font-weight: 600;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .mobile-menu a + a { border-top: 1px solid rgba(255,255,255,0.06); }
    .mobile-menu a:hover { color: var(--accent-main); }

    .mobile-menu-separator {
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-top: 10px;
      padding-top: 10px;
    }

    .mobile-altinyildiz-link {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 10px;
      border-radius: 16px;
      background: radial-gradient(circle at left, rgba(245,197,24,0.28), rgba(10,7,2,0.96));
      border: 1px solid rgba(245,197,24,0.65);
      color: #fffdf0;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }
    .mobile-altinyildiz-link img { width: 26px; height: 26px; object-fit: contain; }
    .mobile-altinyildiz-text { display: flex; flex-direction: column; line-height: 1.1; }
    .mobile-altinyildiz-text strong { font-size: 0.82rem; }
    .mobile-altinyildiz-text span { font-size: 0.72rem; opacity: 0.9; }
    .mobile-altinyildiz-pill {
      margin-left: auto;
      font-size: 0.7rem;
      padding: 3px 10px;
      border-radius: 999px;
      background: linear-gradient(135deg, #f5c518, #ffe38a);
      color: #130e04;
      font-weight: 900;
      letter-spacing: 0.16em;
    }

    /* Sol bilgi bloğu */
    .side-info {
      position: sticky;
      top: 120px;
      left: 14px;
      max-width: 260px;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      color: var(--text-muted);
    }

    .side-info-logo {
      width: 216px;
      height: 216px;
      border-radius: 20px;
      padding: 0;
      background: none;
      box-shadow: none;
      filter: drop-shadow(0 0 24px rgba(53,241,255,0.9));
    }

    .side-info-logo a { display: block; }

    .side-info-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 16px;
      background: transparent;
    }

    .side-info-title {
      font-size: 0.9rem;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--accent-soft);
      font-weight: 700;
    }

    .side-info-sub {
      font-size: 0.8rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-main);
      font-weight: 600;
    }

    .side-info-text {
      margin-top: 6px;
      font-size: 0.9rem;
      line-height: 1.45;
      color: #dce6ff;
    }

    .side-info-text strong { color: var(--accent-soft); }

    /* MAIN */
    main {
      position: relative;
      z-index: 1;
      max-width: 1440px;
      margin: 0 auto;
      padding: 26px 18px 60px 18px;
    }

    section { margin-bottom: 40px; }

    .hero-card {
      margin-top: 8px;
      background:
        radial-gradient(circle at top left, rgba(53, 241, 255, 0.18) 0, transparent 50%),
        radial-gradient(circle at bottom right, rgba(124, 230, 255, 0.16) 0, transparent 55%),
        linear-gradient(135deg, rgba(2,10,26,0.92), rgba(6,21,45,0.88));
      border-radius: 26px;
      padding: 26px 24px 22px 24px;
      box-shadow: var(--shadow-strong);
      border: 1px solid rgba(96, 176, 255, 0.55);
      position: relative;
      overflow: hidden;
    }

    .hero-kicker {
      font-size: 0.8rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent-soft);
      font-weight: 700;
      margin-bottom: 6px;
    }

    .hero-title {
      font-size: clamp(2rem, 3.2vw, 2.6rem);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.15;
      margin-bottom: 10px;
    }

    .hero-title span {
      color: var(--accent-main);
      text-shadow: 0 0 30px rgba(53,241,255,0.8);
    }

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

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

    .hero-highlight-row {
      margin-top: 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.9rem;
    }

    .hero-pill {
      padding: 6px 12px;
      border-radius: 999px;
      border: 1px solid rgba(124,230,255,0.8);
      background: rgba(3, 18, 38, 0.86);
      color: #e6f4ff;
    }

    .hero-pill strong { color: var(--accent-main); }

    .hero-right-box {
      background: rgba(2, 11, 27, 0.80);
      border-radius: 20px;
      padding: 14px 16px 20px 16px;
      border: 1px solid rgba(96, 176, 255, 0.55);
      box-shadow: var(--shadow-soft);
      font-size: 0.9rem;
      color: var(--text-muted);
      position: relative;
      overflow: hidden;
    }

    .hero-right-title {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--accent-soft);
      margin-bottom: 8px;
    }

    .section-title {
      font-size: 1.1rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-bottom: 8px;
    }
    .section-title span { color: var(--accent-main); }

    .section-sub {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 820px;
      margin-bottom: 16px;
    }

    .info-card {
      background: var(--bg-card);
      border-radius: 20px;
      padding: 16px 18px 18px 18px;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      font-size: 0.94rem;
      color: #e3eaff;
      height: 100%;
    }

    .info-card-title {
      font-size: 0.96rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--accent-soft);
      margin-bottom: 6px;
    }

    .info-card strong { color: var(--accent-soft); }
    .info-card ul { margin: 8px 0 0 0; padding-left: 18px; }
    .info-card li { margin-bottom: 4px; }

    .values-strip {
      margin-top: 10px;
      background: linear-gradient(90deg, rgba(3,22,48,0.88), rgba(2,10,27,0.86));
      border-radius: 999px;
      padding: 10px 18px;
      border: 1px solid rgba(96,176,255,0.45);
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      font-size: 0.86rem;
      color: var(--text-muted);
    }

    .values-strip span { position: relative; padding-left: 14px; }
    .values-strip span::before {
      content: "•";
      position: absolute;
      left: 0;
      top: -1px;
      color: var(--accent-main);
    }

    footer {
      padding: 24px 18px 12px 18px;
      border-top: 1px solid rgba(76, 124, 255, 0.35);
      background: radial-gradient(circle at top, #040f25 0, #020817 60%);
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .footer-inner { max-width: 1440px; margin: 0 auto; }

    .footer-title {
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 10px;
      color: var(--accent-soft);
    }

    .footer-link { color: #f3f7ff; text-decoration: none; }
    .footer-link:hover { color: var(--accent-main); }

    .footer-copy {
      margin-top: 18px;
      text-align: center;
      font-size: 0.85rem;
    }

    @media (max-width: 1199px) { .side-info { display: none; } }

    @media (max-width: 991px) {
      .header-nav { display: none; }
      .mobile-bar { display: flex; }
      main { padding-top: 16px; margin: 0 auto; max-width: 960px; }
    }

    @media (max-width: 575px) {
      .hero-card { padding: 20px 16px 18px 16px; }
    }

    @media (min-width: 1200px) {
      main {
        max-width: none;
        margin-left: 300px;
        width: calc(100% - 320px);
        padding-right: 24px;
      }
    }

/* ===== ILETISIM.HTML ===== */
:root {
            --bg-main: #020817;
            --bg-card: rgba(5, 15, 35, 0.80);
            --bg-card-soft: rgba(7, 21, 44, 0.78);
            --accent-main: #35f1ff;
            --accent-soft: #7ce6ff;
            --accent-altin: #f5c518;
            --text-main: #f3f7ff;
            --text-muted: #96a4c3;
            --border-soft: rgba(107, 181, 255, 0.35);
            --shadow-strong: 0 26px 80px rgba(0, 0, 0, 0.95);
            --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.85);
            --section-max-width: 1600px;
        }

        * { box-sizing: border-box; }

        body {
            margin: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background:
                radial-gradient(circle at top left, #06213e 0, transparent 55%),
                radial-gradient(circle at top right, #050d24 0, transparent 55%),
                radial-gradient(circle at bottom, #020817 0, #000207 60%);
            color: var(--text-main);
            overflow-x: hidden;
        }

        a { color: var(--accent-main); text-decoration: none; }
        a:hover { color: var(--accent-soft); }

        /* Arka planda kalkan logo watermark */
        .ugc-watermark {
            position: fixed;
            inset: 0;
            margin: auto;
            width: 520px;
            height: 520px;
            opacity: 0.045;
            pointer-events: none;
            background: url("/images/ugclogo.png") center/contain no-repeat;
            filter: blur(0.8px);
            z-index: 0;
        }

        /* HEADER */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(18px);
            background: linear-gradient(90deg, rgba(2,8,23,0.97), rgba(2,8,23,0.90));
            border-bottom: 1px solid rgba(76, 124, 255, 0.45);
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.95);
        }

        .header-inner {
            max-width: 1440px;
            margin: 0 auto;
            padding: 10px 18px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: relative;
        }

        /* MASAÜSTÜ MENÜ (B seçeneği – grid) */
        .header-nav {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            column-gap: 14px;
            width: 100%;
        }

        .header-menu {
            grid-column: 2;
            display: flex;
            align-items: center;
            gap: 22px;
            justify-content: center;
            min-width: 0;
            transform-origin: center;
        }

        .header-menu a {
            color: #f4f6ff;
            font-size: 1.02rem;
            font-weight: 800;
            text-shadow: 0 0 10px rgba(0,0,0,0.9);
            padding: 4px 2px;
            white-space: nowrap;
        }

        .header-menu a:hover { color: var(--accent-main); }
        .header-menu a.active { color: var(--accent-main); }

        /* Altın Yıldız rozet (geliştirilmiş) */
        .badge-altinyildiz {
            grid-column: 3;
            justify-self: end;

            display: inline-flex;
            align-items: center;
            gap: 8px;

            padding: 6px 14px 6px 10px;
            border-radius: 999px;

            background: linear-gradient(135deg, rgba(245,197,24,0.95), rgba(255,215,106,0.95));
            color: #130e04 !important;

            border: 1px solid rgba(245,197,24,0.75);
            box-shadow: 0 12px 30px rgba(245,197,24,0.22), 0 12px 30px rgba(0,0,0,0.65);

            text-transform: uppercase;
            letter-spacing: 0.14em;
            font-weight: 900;
            white-space: nowrap;
            transition: transform .18s ease, filter .18s ease;
        }

        .badge-altinyildiz:hover {
            transform: translateY(-1px);
            filter: brightness(1.02);
        }

        .badge-altinyildiz img {
            width: 22px;
            height: 22px;
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(0,0,0,0.35));
        }

        .badge-altinyildiz .ay-text {
            display: inline-flex;
            flex-direction: column;
            line-height: 1.05;
            font-size: 0.72rem;
        }
        .badge-altinyildiz .ay-text b { font-size: 0.74rem; }

        .badge-altinyildiz .ay-cta {
            margin-left: 6px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(2,8,23,0.16);
            border: 1px solid rgba(19,14,4,0.18);
            font-size: 0.68rem;
            letter-spacing: 0.18em;
            font-weight: 900;
            color: #130e04;
        }

        @media (max-width: 1199px) {
            .header-menu { gap: 18px; }
            .header-menu a { font-size: 0.96rem; }
        }
        @media (max-width: 1099px) {
            .header-menu { transform: scale(0.96); }
        }
        @media (max-width: 1020px) {
            .header-menu { transform: scale(0.93); }
            .badge-altinyildiz { padding: 6px 12px 6px 10px; }
            .badge-altinyildiz .ay-cta { display: none; }
        }

        /* MOBİL ÜST ÇUBUK + MENÜ */
        .mobile-bar {
            display: none;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .mobile-logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mobile-logo img {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            object-fit: contain;
            background: #020817;
        }

        .mobile-logo span {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #f4f6ff;
        }

        .mobile-menu-toggle {
            background: transparent;
            border: none;
            padding: 4px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            cursor: pointer;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            border-radius: 999px;
            background: #f4f6ff;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: radial-gradient(circle at top, rgba(4,15,37,0.98), rgba(2,8,23,0.98));
            border-bottom: 1px solid rgba(76,124,255,0.45);
            box-shadow: 0 18px 40px rgba(0,0,0,0.95);
            padding: 10px 18px 14px 18px;
        }

        .mobile-menu.open { display: block; }

        .mobile-menu a {
            display: block;
            padding: 8px 0;
            color: #f4f6ff;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

        .mobile-menu a + a {
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .mobile-menu a:hover { color: var(--accent-main); }

        .mobile-menu-separator {
            border-top: 1px solid rgba(255,255,255,0.08);
            margin-top: 10px;
            padding-top: 10px;
        }

        .mobile-altinyildiz-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            border-radius: 16px;
            background: radial-gradient(circle at left, rgba(245,197,24,0.28), rgba(10,7,2,0.96));
            border: 1px solid rgba(245,197,24,0.65);
            color: #fffdf0;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }
        .mobile-altinyildiz-link img { width: 26px; height: 26px; object-fit: contain; }
        .mobile-altinyildiz-text { display: flex; flex-direction: column; line-height: 1.1; }
        .mobile-altinyildiz-text strong { font-size: 0.82rem; }
        .mobile-altinyildiz-text span { font-size: 0.72rem; opacity: 0.9; }
        .mobile-altinyildiz-pill {
            margin-left: auto;
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 999px;
            background: linear-gradient(135deg, #f5c518, #ffe38a);
            color: #130e04;
            font-weight: 900;
            letter-spacing: 0.16em;
        }

        /* Sol bilgi bloğu */
        .side-info {
            position: sticky;
            top: 120px;
            left: 14px;
            max-width: 260px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            color: var(--text-muted);
            align-self: flex-start;
        }

        .side-info-logo {
            width: 216px;
            height: 216px;
            border-radius: 20px;
            padding: 0;
            background: none;
            box-shadow: none;
            filter: drop-shadow(0 0 24px rgba(53,241,255,0.9));
        }

        .side-info-logo a { display: block; }

        .side-info-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 16px;
            background: transparent;
        }

        .side-info-title {
            font-size: 0.9rem;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--accent-soft);
            font-weight: 700;
        }

        .side-info-sub {
            font-size: 0.8rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--text-main);
            font-weight: 600;
        }

        .side-info-text {
            margin-top: 6px;
            font-size: 0.9rem;
            line-height: 1.45;
            color: #dce6ff;
        }

        .side-info-text strong { color: var(--accent-soft); }

        /* MAIN */
        main {
            position: relative;
            z-index: 1;
            max-width: 1440px;
            margin: 0 auto;
            padding: 26px 18px 60px 18px;
        }

        section { margin-bottom: 40px; }

        /* HERO */
        .hero-card {
            margin-top: 8px;
            background:
                radial-gradient(circle at top left, rgba(53, 241, 255, 0.18) 0, transparent 50%),
                radial-gradient(circle at bottom right, rgba(124, 230, 255, 0.16) 0, transparent 55%),
                linear-gradient(135deg, rgba(2,10,26,0.92), rgba(6,21,45,0.88));
            border-radius: 26px;
            padding: 26px 24px 22px 24px;
            box-shadow: var(--shadow-strong);
            border: 1px solid rgba(96, 176, 255, 0.55);
            position: relative;
            overflow: hidden;
        }

        .hero-title {
            font-size: clamp(2rem, 3.2vw, 2.6rem);
            font-weight: 900;
            text-transform: uppercase;
            line-height: 1.15;
            margin-bottom: 10px;
        }

        .hero-title span {
            color: var(--accent-main);
            text-shadow: 0 0 30px rgba(53,241,255,0.8);
        }

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

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

        /* Başlıklar */
        .section-title {
            font-size: 1.1rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            margin-bottom: 8px;
        }

        .section-title span { color: var(--accent-main); }

        .section-sub {
            font-size: 0.95rem;
            color: var(--text-muted);
            max-width: 720px;
            margin-bottom: 16px;
        }

        /* İLETİŞİM KARTI + GRID */
        .contact-card {
            background:
                radial-gradient(circle at right, rgba(53,241,255,0.22), transparent 55%),
                linear-gradient(135deg, rgba(2,10,26,0.92), rgba(7,23,47,0.86));
            border-radius: 24px;
            padding: 18px 20px 26px 20px;
            border: 1px solid rgba(96,176,255,0.6);
            box-shadow: var(--shadow-strong);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 2fr 3fr;
            gap: 18px;
        }

        .contact-info p {
            margin-bottom: 4px;
            font-size: 0.92rem;
            color: var(--text-main);
        }

        .contact-info span { color: var(--text-muted); }

        .contact-info a { color: #e9f6ff; }

        .contact-info a:hover { color: var(--accent-main); }

        .contact-extra {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 8px;
        }

        .contact-map iframe {
            width: 100%;
            min-height: 260px;
            border: 0;
            border-radius: 16px;
            box-shadow: var(--shadow-soft);
        }

        /* RESPONSIVE */
        @media (max-width: 1199px) { .side-info { display: none; } }

        @media (max-width: 991px) {
            .header-nav { display: none; }
            .mobile-bar { display: flex; }

            main {
                padding-top: 20px;
                margin: 0 auto;
                max-width: 960px;
            }

            .contact-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 575px) {
            .hero-card { padding: 20px 16px 18px 16px; }
        }

        /* Geniş ekranlarda sağ alana yay */
        @media (min-width: 1200px) {
            main {
                max-width: none;
                margin-left: 300px;
                width: calc(100% - 320px);
                padding-right: 24px;
            }
        }

/* ===== KAYIT.HTML ===== */
:root {
      --bg-main: #020817;
      --bg-card: rgba(5, 15, 35, 0.80);
      --bg-card-soft: rgba(7, 21, 44, 0.78);
      --accent-main: #35f1ff;
      --accent-soft: #7ce6ff;
      --accent-altin: #f5c518;
      --text-main: #f3f7ff;
      --text-muted: #96a4c3;
      --border-soft: rgba(107, 181, 255, 0.35);
      --shadow-strong: 0 26px 80px rgba(0, 0, 0, 0.95);
      --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.85);
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top left, #06213e 0, transparent 55%),
        radial-gradient(circle at top right, #050d24 0, transparent 55%),
        radial-gradient(circle at bottom, #020817 0, #000207 60%);
      color: var(--text-main);
      overflow-x: hidden;
    }

    a { color: var(--accent-main); text-decoration: none; }
    a:hover { color: var(--accent-soft); }

    .ugc-watermark {
      position: fixed;
      inset: 0;
      margin: auto;
      width: 520px;
      height: 520px;
      opacity: 0.045;
      pointer-events: none;
      background: url("/images/ugclogo.png") center/contain no-repeat;
      filter: blur(0.8px);
      z-index: 0;
    }

    /* =======================
       HEADER / NAVBAR (INDEX ile aynı)
    ======================= */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(18px);
      background: transparent;
      border-bottom: 1px solid transparent;
      box-shadow: none;
      transition: background 0.25s ease, box-shadow 0.25s ease, border-bottom 0.25s ease, transform 0.25s ease;
    }
    header.header-solid {
      background: linear-gradient(90deg, rgba(2,8,23,0.97), rgba(2,8,23,0.90));
      border-bottom: 1px solid rgba(76, 124, 255, 0.45);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.95);
    }
    header.header-hidden { transform: translateY(-100%); }

    .header-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 10px 18px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      position: relative;
    }

    .header-nav{
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      column-gap: 14px;
      width: 100%;
    }

    .header-menu{
      grid-column: 2;
      display: flex;
      align-items: center;
      gap: 22px;
      justify-content: center;
      min-width: 0;
      transform-origin: center;
    }

    .header-menu a {
      color: #f4f6ff;
      font-size: 1.02rem;
      font-weight: 800;
      text-shadow: 0 0 10px rgba(0,0,0,0.9);
      padding: 4px 2px;
      white-space: nowrap;
    }
    .header-menu a:hover { color: var(--accent-main); }
    .header-menu a.active { color: var(--accent-main); }

    .badge-altinyildiz{
      grid-column: 3;
      justify-self: end;

      display: inline-flex;
      align-items: center;
      gap: 8px;

      padding: 6px 14px 6px 10px;
      border-radius: 999px;

      background: linear-gradient(135deg, rgba(245,197,24,0.95), rgba(255,215,106,0.95));
      color: #130e04 !important;

      border: 1px solid rgba(245,197,24,0.75);
      box-shadow: 0 12px 30px rgba(245,197,24,0.22), 0 12px 30px rgba(0,0,0,0.65);

      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-weight: 900;
      white-space: nowrap;
      transition: transform .18s ease, filter .18s ease;
    }
    .badge-altinyildiz:hover{
      transform: translateY(-1px);
      filter: brightness(1.02);
    }
    .badge-altinyildiz img{
      width: 22px;
      height: 22px;
      object-fit: contain;
      filter: drop-shadow(0 0 10px rgba(0,0,0,0.35));
    }
    .badge-altinyildiz .ay-text{
      display: inline-flex;
      flex-direction: column;
      line-height: 1.05;
      font-size: 0.72rem;
    }
    .badge-altinyildiz .ay-text b{ font-size: 0.74rem; }

    .badge-altinyildiz .ay-cta{
      margin-left: 6px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(2,8,23,0.16);
      border: 1px solid rgba(19,14,4,0.18);
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      font-weight: 900;
      color: #130e04;
    }

    @media (max-width: 1199px){
      .header-menu{ gap: 18px; }
      .header-menu a{ font-size: 0.96rem; }
    }
    @media (max-width: 1099px){
      .header-menu{ transform: scale(0.96); }
    }
    @media (max-width: 1020px){
      .header-menu{ transform: scale(0.93); }
      .badge-altinyildiz{ padding: 6px 12px 6px 10px; }
      .badge-altinyildiz .ay-cta{ display: none; }
    }

    /* MOBİL */
    .mobile-bar {
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .mobile-logo { display: flex; align-items: center; gap: 8px; }
    .mobile-logo img {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      object-fit: contain;
      background: #020817;
    }
    .mobile-logo span {
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #f4f6ff;
    }
    .mobile-menu-toggle {
      background: transparent;
      border: none;
      padding: 4px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      cursor: pointer;
    }
    .mobile-menu-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      border-radius: 999px;
      background: #f4f6ff;
    }

    .mobile-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: radial-gradient(circle at top, rgba(4,15,37,0.98), rgba(2,8,23,0.98));
      border-bottom: 1px solid rgba(76,124,255,0.45);
      box-shadow: 0 18px 40px rgba(0,0,0,0.95);
      padding: 10px 18px 14px 18px;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu a {
      display: block;
      padding: 8px 0;
      color: #f4f6ff;
      font-weight: 600;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }
    .mobile-menu a + a { border-top: 1px solid rgba(255,255,255,0.06); }
    .mobile-menu a:hover { color: var(--accent-main); }
    .mobile-menu a.active { color: var(--accent-main); }

    .mobile-menu-separator{
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-top: 10px;
      padding-top: 10px;
    }
    .mobile-altinyildiz-link{
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 10px;
      border-radius: 16px;
      background: radial-gradient(circle at left, rgba(245,197,24,0.28), rgba(10,7,2,0.96));
      border: 1px solid rgba(245,197,24,0.65);
      color: #fffdf0;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }
    .mobile-altinyildiz-link img{ width: 26px; height: 26px; object-fit: contain; }
    .mobile-altinyildiz-text{ display:flex; flex-direction:column; line-height:1.1; }
    .mobile-altinyildiz-text strong{ font-size:.82rem; }
    .mobile-altinyildiz-text span{ font-size:.72rem; opacity:.9; }
    .mobile-altinyildiz-pill{
      margin-left:auto;
      font-size:.7rem;
      padding:3px 10px;
      border-radius:999px;
      background: linear-gradient(135deg, #f5c518, #ffe38a);
      color:#130e04;
      font-weight:900;
      letter-spacing:.16em;
    }

    /* SOL BLOK */
    .side-info {
      position: sticky;
      top: 120px;
      left: 14px;
      max-width: 260px;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      color: var(--text-muted);
    }
    .side-info-logo {
      width: 216px;
      height: 216px;
      border-radius: 20px;
      padding: 0;
      background: none;
      box-shadow: none;
      filter: drop-shadow(0 0 24px rgba(53,241,255,0.9));
    }
    .side-info-logo a { display: block; }
    .side-info-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 16px;
      background: transparent;
    }
    .side-info-title {
      font-size: 0.9rem;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--accent-soft);
      font-weight: 700;
    }
    .side-info-sub {
      font-size: 0.8rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-main);
      font-weight: 600;
    }
    .side-info-text {
      margin-top: 6px;
      font-size: 0.9rem;
      line-height: 1.45;
      color: #dce6ff;
    }
    .side-info-text strong { color: var(--accent-soft); }

    .side-info-note{
      margin-top: 12px;
      padding: 10px 12px;
      border-radius: 14px;
      background: rgba(3, 18, 38, 0.72);
      border: 1px solid rgba(124,230,255,0.28);
      box-shadow: 0 12px 28px rgba(0,0,0,0.55);
      color: #e3eeff;
      font-size: 0.85rem;
      line-height: 1.35;
    }

    /* MAIN */
    main {
      position: relative;
      z-index: 1;
      max-width: 1440px;
      margin: 0 auto;
      padding: 26px 18px 60px 18px;
    }

    /* HERO/FORM UI */
    .hero-card {
      margin-top: 8px;
      background:
        radial-gradient(circle at top left, rgba(53, 241, 255, 0.18) 0, transparent 50%),
        radial-gradient(circle at bottom right, rgba(124, 230, 255, 0.16) 0, transparent 55%),
        linear-gradient(135deg, rgba(2,10,26,0.92), rgba(6,21,45,0.88));
      border-radius: 26px;
      padding: 26px 24px 22px 24px;
      box-shadow: var(--shadow-strong);
      border: 1px solid rgba(96, 176, 255, 0.55);
      position: relative;
      overflow: hidden;
    }

    .hero-title {
      font-size: clamp(2rem, 3.2vw, 2.6rem);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.15;
      margin-bottom: 10px;
    }
    .hero-title span {
      color: var(--accent-main);
      text-shadow: 0 0 30px rgba(53,241,255,0.8);
    }
    .hero-text {
      font-size: 0.98rem;
      color: var(--text-muted);
      max-width: 640px;
    }
    .hero-text strong { color: var(--accent-soft); }

    .hero-list {
      list-style: none;
      padding-left: 0;
      margin: 16px 0 0 0;
      font-size: 0.9rem;
      color: #e5f1ff;
    }
    .hero-list li { display: flex; gap: 8px; margin-bottom: 6px; }
    .hero-list li::before {
      content: "";
      margin-top: 6px;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: radial-gradient(circle, var(--accent-main) 0, #35f1ff 40%, transparent 100%);
      box-shadow: 0 0 12px rgba(53,241,255,0.9);
    }

    .hero-actions {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .btn-hero-main,
    .btn-hero-ghost {
      border-radius: 999px;
      padding: 9px 20px;
      font-size: 0.86rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-weight: 700;
      border: none;
      cursor: pointer;
      display: inline-block;
    }

    .btn-hero-main {
      background: linear-gradient(135deg, var(--accent-main), #7ce6ff);
      color: #021018;
      box-shadow: 0 16px 34px rgba(53,241,255,0.8);
    }
    .btn-hero-main:hover { background: linear-gradient(135deg, #a5f6ff, var(--accent-main)); }

    .btn-hero-ghost {
      border: 1px solid rgba(124,230,255,0.8);
      background: rgba(3, 18, 38, 0.86);
      color: #e6f4ff;
    }
    .btn-hero-ghost:hover { background: rgba(7, 30, 60, 0.94); }

    .hero-right-box {
      background: rgba(2, 11, 27, 0.80);
      border-radius: 20px;
      padding: 14px 16px 20px 16px;
      border: 1px solid rgba(96, 176, 255, 0.55);
      box-shadow: var(--shadow-soft);
      font-size: 0.9rem;
      color: var(--text-muted);
      position: relative;
      overflow: hidden;
    }
    .hero-right-title {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--accent-soft);
      margin-bottom: 8px;
    }

    .strip {
      margin-top: 18px;
      background: linear-gradient(90deg, rgba(3,22,48,0.88), rgba(2,10,27,0.86));
      border-radius: 999px;
      padding: 10px 20px;
      border: 1px solid rgba(96,176,255,0.45);
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      justify-content: center;
      font-size: 0.86rem;
      color: var(--text-muted);
    }
    .strip strong { color: var(--accent-main); }

    .section-title {
      font-size: 1.1rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-bottom: 8px;
    }
    .section-title span { color: var(--accent-main); }

    .section-sub {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 720px;
      margin-bottom: 16px;
    }

    .form-wrapper {
      background: var(--bg-card);
      border-radius: 22px;
      padding: 18px 20px 20px 20px;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
    }
    .form-note { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 10px; }
    .form-label { font-size: 0.9rem; margin-bottom: 4px; }

    .form-control,
    .form-select,
    textarea.form-control {
      background: #050b18;
      border: 1px solid #333;
      color: #f1f1f1;
      font-size: 0.9rem;
    }
    .form-control:focus,
    .form-select:focus,
    textarea.form-control:focus {
      background: #050b18;
      color: #f1f1f1;
      border-color: var(--accent-main);
      box-shadow: 0 0 0 0.1rem rgba(53, 241, 255, 0.35);
    }
    .small-hint { font-size: 0.8rem; color: var(--text-muted); }

    .notes-card {
      margin-top: 22px;
      background: var(--bg-card-soft);
      border-radius: 18px;
      padding: 14px 16px;
      border: 1px solid rgba(255,255,255,0.06);
      box-shadow: var(--shadow-soft);
      font-size: 0.9rem;
      color: #e3eaff;
    }
    .notes-card ul { margin: 0; padding-left: 18px; }
    .notes-card li { margin-bottom: 4px; }

    /* RESPONSIVE */
    @media (max-width: 1199px) { .side-info { display: none; } }

    @media (max-width: 991px) {
      .header-nav { display: none; }
      .mobile-bar { display: flex; }
      main { padding-top: 20px; margin: 0 auto; max-width: 960px; }
    }

    @media (max-width: 575px) {
      .hero-card { padding: 20px 16px 18px 16px; }
    }

    @media (min-width: 1200px) {
      main {
        max-width: none;
        margin-left: 300px;
        width: calc(100% - 320px);
        padding-right: 24px;
      }
    }

/* ===== SSS.HTML ===== */
:root{
      --bg-main:#020817;
      --bg-card:rgba(5,15,35,.80);
      --bg-card-soft:rgba(7,21,44,.78);
      --accent-main:#35f1ff;
      --accent-soft:#7ce6ff;
      --accent-altin:#f5c518;
      --text-main:#f3f7ff;
      --text-muted:#96a4c3;
      --border-soft:rgba(107,181,255,.35);
      --shadow-strong:0 26px 80px rgba(0,0,0,.95);
      --shadow-soft:0 16px 40px rgba(0,0,0,.85);
    }

    *{ box-sizing:border-box; }

    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      background:
        radial-gradient(circle at top left,#06213e 0,transparent 55%),
        radial-gradient(circle at top right,#050d24 0,transparent 55%),
        radial-gradient(circle at bottom,#020817 0,#000207 60%);
      color:var(--text-main);
      overflow-x:hidden;
    }

    a{ color:var(--accent-main); text-decoration:none; }
    a:hover{ color:var(--accent-soft); }

    /* watermark */
    .ugc-watermark{
      position:fixed;
      inset:0;
      margin:auto;
      width:520px;
      height:520px;
      opacity:.045;
      pointer-events:none;
      background:url("/images/ugclogo.png") center/contain no-repeat;
      filter:blur(.8px);
      z-index:0;
    }

    /* =======================
       HEADER / NAVBAR (INDEX İLE AYNI - B)
       - Menü ortada (grid)
       - Altın Yıldız pill sağda sabit
    ======================= */
    header{
      position:sticky;
      top:0;
      z-index:100;
      backdrop-filter:blur(18px);
      background:transparent;
      border-bottom:1px solid transparent;
      box-shadow:none;
      transition:background .25s ease, box-shadow .25s ease, border-bottom .25s ease, transform .25s ease;
    }
    header.header-solid{
      background:linear-gradient(90deg, rgba(2,8,23,.97), rgba(2,8,23,.90));
      border-bottom:1px solid rgba(76,124,255,.45);
      box-shadow:0 16px 36px rgba(0,0,0,.95);
    }
    header.header-hidden{ transform:translateY(-100%); }

    .header-inner{
      max-width:1440px;
      margin:0 auto;
      padding:10px 18px;
      display:flex;
      flex-direction:column;
      gap:8px;
      position:relative;
    }

    .header-nav{
      display:grid;
      grid-template-columns:1fr auto 1fr;  /* <<< KAYIK OLMAYI BİTİREN ASIL ŞEY */
      align-items:center;
      column-gap:14px;
      width:100%;
    }

    .header-menu{
      grid-column:2;
      display:flex;
      align-items:center;
      gap:22px;
      justify-content:center;
      min-width:0;
      transform-origin:center;
    }

    .header-menu a{
      color:#f4f6ff;
      font-size:1.02rem;
      font-weight:800;
      text-shadow:0 0 10px rgba(0,0,0,.9);
      padding:4px 2px;
      white-space:nowrap;
    }
    .header-menu a:hover{ color:var(--accent-main); }
    .header-menu a.active{ color:var(--accent-main); }

    .badge-altinyildiz{
      grid-column:3;
      justify-self:end;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 14px 6px 10px;
      border-radius:999px;
      background:linear-gradient(135deg, rgba(245,197,24,.95), rgba(255,215,106,.95));
      color:#130e04 !important;
      border:1px solid rgba(245,197,24,.75);
      box-shadow:0 12px 30px rgba(245,197,24,.22), 0 12px 30px rgba(0,0,0,.65);
      text-transform:uppercase;
      letter-spacing:.14em;
      font-weight:900;
      white-space:nowrap;
      transition:transform .18s ease, filter .18s ease;
    }
    .badge-altinyildiz:hover{ transform:translateY(-1px); filter:brightness(1.02); }
    .badge-altinyildiz img{
      width:22px; height:22px; object-fit:contain;
      filter:drop-shadow(0 0 10px rgba(0,0,0,.35));
    }
    .badge-altinyildiz .ay-text{
      display:inline-flex; flex-direction:column; line-height:1.05; font-size:.72rem;
    }
    .badge-altinyildiz .ay-text b{ font-size:.74rem; }
    .badge-altinyildiz .ay-cta{
      margin-left:6px;
      padding:4px 10px;
      border-radius:999px;
      background:rgba(2,8,23,.16);
      border:1px solid rgba(19,14,4,.18);
      font-size:.68rem;
      letter-spacing:.18em;
      font-weight:900;
      color:#130e04;
    }

    @media (max-width:1199px){
      .header-menu{ gap:18px; }
      .header-menu a{ font-size:.96rem; }
    }
    @media (max-width:1099px){ .header-menu{ transform:scale(.96); } }
    @media (max-width:1020px){
      .header-menu{ transform:scale(.93); }
      .badge-altinyildiz{ padding:6px 12px 6px 10px; }
      .badge-altinyildiz .ay-cta{ display:none; }
    }

    /* mobile bar + menu */
    .mobile-bar{ display:none; align-items:center; justify-content:space-between; gap:10px; }
    .mobile-logo{ display:flex; align-items:center; gap:8px; }
    .mobile-logo img{
      width:34px; height:34px; border-radius:50%; object-fit:contain; background:#020817;
    }
    .mobile-logo span{
      font-size:.85rem; font-weight:700; letter-spacing:.12em;
      text-transform:uppercase; color:#f4f6ff;
    }
    .mobile-menu-toggle{
      background:transparent; border:none; padding:4px;
      display:flex; flex-direction:column; justify-content:center; gap:4px; cursor:pointer;
    }
    .mobile-menu-toggle span{
      display:block; width:22px; height:2px; border-radius:999px; background:#f4f6ff;
    }

    .mobile-menu{
      display:none;
      position:absolute;
      top:100%; left:0; right:0;
      background:radial-gradient(circle at top, rgba(4,15,37,.98), rgba(2,8,23,.98));
      border-bottom:1px solid rgba(76,124,255,.45);
      box-shadow:0 18px 40px rgba(0,0,0,.95);
      padding:10px 18px 14px 18px;
    }
    .mobile-menu.open{ display:block; }
    .mobile-menu a{
      display:block;
      padding:8px 0;
      color:#f4f6ff;
      font-weight:600;
      font-size:.95rem;
      text-transform:uppercase;
      letter-spacing:.12em;
    }
    .mobile-menu a + a{ border-top:1px solid rgba(255,255,255,.06); }
    .mobile-menu a:hover{ color:var(--accent-main); }

    .mobile-menu-separator{
      border-top:1px solid rgba(255,255,255,.08);
      margin-top:10px;
      padding-top:10px;
    }
    .mobile-altinyildiz-link{
      display:flex; align-items:center; gap:10px;
      padding:8px 10px;
      border-radius:16px;
      background:radial-gradient(circle at left, rgba(245,197,24,.28), rgba(10,7,2,.96));
      border:1px solid rgba(245,197,24,.65);
      color:#fffdf0;
      font-size:.8rem;
      text-transform:uppercase;
      letter-spacing:.12em;
    }
    .mobile-altinyildiz-link img{ width:26px; height:26px; object-fit:contain; }
    .mobile-altinyildiz-text{ display:flex; flex-direction:column; line-height:1.1; }
    .mobile-altinyildiz-text strong{ font-size:.82rem; }
    .mobile-altinyildiz-text span{ font-size:.72rem; opacity:.9; }
    .mobile-altinyildiz-pill{
      margin-left:auto;
      font-size:.7rem;
      padding:3px 10px;
      border-radius:999px;
      background:linear-gradient(135deg, #f5c518, #ffe38a);
      color:#130e04;
      font-weight:900;
      letter-spacing:.16em;
    }

    /* side-info */
    .side-info{
      position: sticky;
      top:120px;
      left:14px;
      max-width:260px;
      z-index:2;
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      gap:10px;
      color:var(--text-muted);
    }
    .side-info-logo{
      width:216px; height:216px;
      border-radius:20px;
      padding:0;
      background:none;
      box-shadow:none;
      filter:drop-shadow(0 0 24px rgba(53,241,255,.9));
    }
    .side-info-logo a{ display:block; }
    .side-info-logo img{
      width:100%; height:100%;
      object-fit:contain;
      border-radius:16px;
      background:transparent;
    }
    .side-info-title{
      font-size:.9rem;
      letter-spacing:.26em;
      text-transform:uppercase;
      color:var(--accent-soft);
      font-weight:700;
    }
    .side-info-sub{
      font-size:.8rem;
      letter-spacing:.22em;
      text-transform:uppercase;
      color:var(--text-main);
      font-weight:600;
    }
    .side-info-text{
      margin-top:6px;
      font-size:.9rem;
      line-height:1.45;
      color:#dce6ff;
    }
    .side-info-text strong{ color:var(--accent-soft); }

    /* main */
    main{
      position:relative;
      z-index:1;
      max-width:1440px;
      margin:0 auto;
      padding:26px 18px 60px 18px;
    }
    section{ margin-bottom:40px; }

    /* hero */
    .hero-card{
      margin-top:8px;
      background:
        radial-gradient(circle at top left, rgba(53,241,255,.18) 0, transparent 50%),
        radial-gradient(circle at bottom right, rgba(124,230,255,.16) 0, transparent 55%),
        linear-gradient(135deg, rgba(2,10,26,.92), rgba(6,21,45,.88));
      border-radius:26px;
      padding:26px 24px 22px 24px;
      box-shadow:var(--shadow-strong);
      border:1px solid rgba(96,176,255,.55);
      position:relative;
      overflow:hidden;
    }
    .hero-title{
      font-size:clamp(1.75rem, 4.8vw, 3rem);
      font-weight:900;
      text-transform:uppercase;
      line-height:1.1;
      margin-bottom:10px;
    }
    .hero-title span{
      color:var(--accent-main);
      text-shadow:0 0 30px rgba(53,241,255,.8);
    }
    .hero-text{
      font-size:.98rem;
      color:var(--text-muted);
      max-width:760px;
      margin:0;
    }

    /* section titles */
    .section-title{
      font-size:1.1rem;
      font-weight:900;
      text-transform:uppercase;
      letter-spacing:.14em;
      margin-bottom:8px;
    }
    .section-title span{ color:var(--accent-main); }
    .section-sub{
      font-size:.95rem;
      color:var(--text-muted);
      max-width:760px;
      margin-bottom:16px;
    }

    /* faq */
    .faq-wrapper{
      background:var(--bg-card);
      border-radius:20px;
      padding:16px 18px 18px 18px;
      border:1px solid var(--border-soft);
      box-shadow:var(--shadow-soft);
    }
    .faq-category-title{
      font-size:.9rem;
      letter-spacing:.20em;
      text-transform:uppercase;
      font-weight:900;
      color:var(--accent-soft);
      margin-bottom:6px;
    }
    .faq-category-sub{
      font-size:.92rem;
      color:var(--text-muted);
      margin-bottom:10px;
    }
    .faq-item{
      border-top:1px solid rgba(255,255,255,.04);
      padding:10px 0;
    }
    .faq-question{
      font-size:.95rem;
      cursor:pointer;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
      user-select:none;
    }
    .faq-question span:first-child{ font-weight:700; color:#eaf3ff; }
    .faq-toggle{ font-size:1.2rem; color:var(--accent-main); font-weight:900; }
    .faq-answer{
      display:none;
      font-size:.92rem;
      color:var(--text-muted);
      margin-top:8px;
    }
    .faq-answer p{ margin:0 0 8px 0; }
    .faq-answer ul{ margin:0; padding-left:18px; }

    /* testimonials */
    .testimonials-wrap{
      margin-top:14px;
      background:var(--bg-card-soft);
      border-radius:20px;
      padding:16px 18px 18px 18px;
      border:1px solid rgba(53,241,255,.22);
      box-shadow:var(--shadow-soft);
    }
    .testimonials-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:12px;
      margin-top:12px;
    }
    .testimonial{
      background:rgba(2,11,27,.72);
      border:1px solid rgba(96,176,255,.35);
      border-radius:18px;
      padding:14px 14px 12px 14px;
      box-shadow:var(--shadow-soft);
      color:#dce6ff;
      font-size:.92rem;
      line-height:1.5;
    }
    .testimonial .who{
      margin-top:10px;
      font-size:.78rem;
      letter-spacing:.14em;
      text-transform:uppercase;
      color:var(--text-muted);
    }

    /* footer */
    footer{
      padding:24px 18px 12px 18px;
      border-top:1px solid rgba(76,124,255,.35);
      background:radial-gradient(circle at top,#040f25 0,#020817 60%);
      font-size:.9rem;
      color:var(--text-muted);
    }
    .footer-inner{ max-width:1440px; margin:0 auto; }
    .footer-title{
      font-size:.95rem;
      text-transform:uppercase;
      letter-spacing:1px;
      margin-bottom:10px;
      color:var(--accent-soft);
    }
    .footer-link{ color:#f3f7ff; text-decoration:none; }
    .footer-link:hover{ color:var(--accent-main); }
    .footer-copy{ margin-top:18px; text-align:center; font-size:.85rem; }

    /* responsive */
    @media (max-width:1199px){ .side-info{ display:none; } }

    @media (max-width:991px){
      .header-nav{ display:none; }
      .mobile-bar{ display:flex; }
      main{ padding-top:20px; margin:0 auto; max-width:960px; }
      .testimonials-grid{ grid-template-columns:1fr; }
    }

    @media (max-width:575px){
      .hero-card{ padding:20px 16px 18px 16px; }
    }

    @media (min-width:1200px){
      main{
        max-width:none;
        margin-left:300px;
        width:calc(100% - 320px);
        padding-right:24px;
      }
    }

/* ===== TEKNIK-KADRO.HTML ===== */
:root {
            --bg-main: #020817;
            --bg-card: rgba(5, 15, 35, 0.80);
            --bg-card-soft: rgba(7, 21, 44, 0.78);
            --accent-main: #35f1ff;
            --accent-soft: #7ce6ff;
            --accent-gold: #f5c518;
            --text-main: #f3f7ff;
            --text-muted: #96a4c3;
            --border-soft: rgba(107, 181, 255, 0.35);
            --shadow-strong: 0 26px 80px rgba(0, 0, 0, 0.95);
            --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.85);
            --section-max-width: 1600px;
        }

        * { box-sizing: border-box; }

        body {
            margin: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background:
                radial-gradient(circle at top left, #06213e 0, transparent 55%),
                radial-gradient(circle at top right, #050d24 0, transparent 55%),
                radial-gradient(circle at bottom, #020817 0, #000207 60%);
            color: var(--text-main);
            overflow-x: hidden;
        }

        a { color: var(--accent-main); text-decoration: none; }
        a:hover { color: var(--accent-soft); }

        /* Arka plan watermark */
        .ugc-watermark {
            position: fixed;
            inset: 0;
            margin: auto;
            width: 520px;
            height: 520px;
            opacity: 0.045;
            pointer-events: none;
            background: url("/images/ugclogo.png") center/contain no-repeat;
            filter: blur(0.8px);
            z-index: 0;
        }

        /* HEADER */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(18px);
            background: linear-gradient(90deg, rgba(2,8,23,0.97), rgba(2,8,23,0.90));
            border-bottom: 1px solid rgba(76, 124, 255, 0.45);
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.95);
        }

        .header-inner {
            max-width: 1440px;
            margin: 0 auto;
            padding: 10px 18px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            position: relative;
        }

        /* MASAÜSTÜ MENÜ (B seçeneği – grid) */
        .header-nav {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            column-gap: 14px;
            width: 100%;
        }

        .header-menu {
            grid-column: 2;
            display: flex;
            align-items: center;
            gap: 22px;
            justify-content: center;
            min-width: 0;
            transform-origin: center;
        }

        .header-menu a {
            color: #f4f6ff;
            font-size: 1.02rem;
            font-weight: 800;
            text-shadow: 0 0 10px rgba(0,0,0,0.9);
            padding: 4px 2px;
            white-space: nowrap;
        }

        .header-menu a:hover { color: var(--accent-main); }
        .header-menu a.active { color: var(--accent-main); }

        /* Altın Yıldız rozet (geliştirilmiş) */
        .badge-altinyildiz {
            grid-column: 3;
            justify-self: end;

            display: inline-flex;
            align-items: center;
            gap: 8px;

            padding: 6px 14px 6px 10px;
            border-radius: 999px;

            background: linear-gradient(135deg, rgba(245,197,24,0.95), rgba(255,215,106,0.95));
            color: #130e04 !important;

            border: 1px solid rgba(245,197,24,0.75);
            box-shadow: 0 12px 30px rgba(245,197,24,0.22), 0 12px 30px rgba(0,0,0,0.65);

            text-transform: uppercase;
            letter-spacing: 0.14em;
            font-weight: 900;
            white-space: nowrap;
            transition: transform .18s ease, filter .18s ease;
        }

        .badge-altinyildiz:hover {
            transform: translateY(-1px);
            filter: brightness(1.02);
        }

        .badge-altinyildiz img {
            width: 22px;
            height: 22px;
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(0,0,0,0.35));
        }

        .badge-altinyildiz .ay-text {
            display: inline-flex;
            flex-direction: column;
            line-height: 1.05;
            font-size: 0.72rem;
        }
        .badge-altinyildiz .ay-text b { font-size: 0.74rem; }

        .badge-altinyildiz .ay-cta {
            margin-left: 6px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(2,8,23,0.16);
            border: 1px solid rgba(19,14,4,0.18);
            font-size: 0.68rem;
            letter-spacing: 0.18em;
            font-weight: 900;
            color: #130e04;
        }

        @media (max-width: 1199px) {
            .header-menu { gap: 18px; }
            .header-menu a { font-size: 0.96rem; }
        }
        @media (max-width: 1099px) {
            .header-menu { transform: scale(0.96); }
        }
        @media (max-width: 1020px) {
            .header-menu { transform: scale(0.93); }
            .badge-altinyildiz { padding: 6px 12px 6px 10px; }
            .badge-altinyildiz .ay-cta { display: none; }
        }

        /* MOBİL ÜST ÇUBUK + MENÜ */
        .mobile-bar {
            display: none;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .mobile-logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mobile-logo img {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            object-fit: contain;
            background: #020817;
        }

        .mobile-logo span {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #f4f6ff;
        }

        .mobile-menu-toggle {
            background: transparent;
            border: none;
            padding: 4px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            cursor: pointer;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            border-radius: 999px;
            background: #f4f6ff;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: radial-gradient(circle at top, rgba(4,15,37,0.98), rgba(2,8,23,0.98));
            border-bottom: 1px solid rgba(76,124,255,0.45);
            box-shadow: 0 18px 40px rgba(0,0,0,0.95);
            padding: 10px 18px 14px 18px;
        }

        .mobile-menu.open { display: block; }

        .mobile-menu a {
            display: block;
            padding: 8px 0;
            color: #f4f6ff;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

        .mobile-menu a + a { border-top: 1px solid rgba(255,255,255,0.06); }
        .mobile-menu a:hover { color: var(--accent-main); }

        .mobile-menu-separator {
            border-top: 1px solid rgba(255,255,255,0.08);
            margin-top: 10px;
            padding-top: 10px;
        }

        .mobile-altinyildiz-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            border-radius: 16px;
            background: radial-gradient(circle at left, rgba(245,197,24,0.28), rgba(10,7,2,0.96));
            border: 1px solid rgba(245,197,24,0.65);
            color: #fffdf0;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }
        .mobile-altinyildiz-link img { width: 26px; height: 26px; object-fit: contain; }
        .mobile-altinyildiz-text { display: flex; flex-direction: column; line-height: 1.1; }
        .mobile-altinyildiz-text strong { font-size: 0.82rem; }
        .mobile-altinyildiz-text span { font-size: 0.72rem; opacity: 0.9; }
        .mobile-altinyildiz-pill {
            margin-left: auto;
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 999px;
            background: linear-gradient(135deg, #f5c518, #ffe38a);
            color: #130e04;
            font-weight: 900;
            letter-spacing: 0.16em;
        }

        /* Sol bilgi bloğu */
        .side-info {
            position: sticky;
            top: 120px;
            left: 14px;
            max-width: 260px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            color: var(--text-muted);
            align-self: flex-start;
        }

        .side-info-logo {
            width: 216px;
            height: 216px;
            border-radius: 20px;
            padding: 0;
            background: none;
            box-shadow: none;
            filter: drop-shadow(0 0 24px rgba(53,241,255,0.9));
        }

        .side-info-logo a { display: block; }

        .side-info-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 16px;
            background: transparent;
        }

        .side-info-title {
            font-size: 0.9rem;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: var(--accent-soft);
            font-weight: 700;
        }

        .side-info-sub {
            font-size: 0.8rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--text-main);
            font-weight: 600;
        }

        .side-info-text {
            margin-top: 6px;
            font-size: 0.9rem;
            line-height: 1.45;
            color: #dce6ff;
        }

        .side-info-text strong { color: var(--accent-soft); }

        /* MAIN */
        main {
            position: relative;
            z-index: 1;
            max-width: 1440px;
            margin: 0 auto;
            padding: 26px 18px 60px 18px;
        }

        section { margin-bottom: 40px; }

        .section-inner {
            max-width: var(--section-max-width);
            margin: 0 auto;
        }

        /* HERO – TEKNİK KADRO */
        #staff-hero { padding-top: 4px; }

        .hero-card {
            position: relative;
            background:
                radial-gradient(circle at top left, rgba(53, 241, 255, 0.18) 0, transparent 50%),
                radial-gradient(circle at bottom right, rgba(124, 230, 255, 0.16) 0, transparent 55%),
                linear-gradient(135deg, rgba(2,10,26,0.92), rgba(6,21,45,0.88));
            border-radius: 28px;
            padding: 26px 26px 24px 26px;
            box-shadow: var(--shadow-strong);
            overflow: hidden;
            border: 1px solid rgba(96, 176, 255, 0.55);
        }

        .hero-content { position: relative; z-index: 2; }

        .hero-badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            margin-bottom: 12px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-radius: 999px;
            padding: 5px 14px;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: #021018;
            background: linear-gradient(135deg, var(--accent-main), #7ce6ff);
            box-shadow: 0 10px 22px rgba(53, 241, 255, 0.6);
        }

        .hero-badge-secondary {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-radius: 999px;
            padding: 5px 12px;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: #e8f4ff;
            background: rgba(5, 17, 40, 0.9);
        }

        .hero-title {
            margin-top: 4px;
            font-size: clamp(2.1rem, 3.2vw, 2.7rem);
            font-weight: 900;
            line-height: 1.18;
            text-transform: uppercase;
        }

        .hero-title span {
            color: var(--accent-main);
            text-shadow: 0 0 25px rgba(53, 241, 255, 0.5);
        }

        .hero-subtitle {
            font-size: 0.98rem;
            color: var(--text-muted);
            max-width: 760px;
            margin-top: 14px;
        }

        .hero-subtitle strong { color: #fdfbff; }

        /* TEKNİK KADRO BÖLÜMÜ */
        .staff-section { padding: 24px 0 44px 0; }

        .staff-section-title {
            font-size: 1.4rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            margin-bottom: 6px;
        }

        .staff-section-title span { color: var(--accent-main); }

        .staff-section-sub {
            font-size: 0.94rem;
            color: var(--text-muted);
            max-width: 900px;
            margin-bottom: 20px;
        }

        .staff-card {
            background: var(--bg-card);
            border-radius: 22px;
            border: 1px solid var(--border-soft);
            box-shadow: var(--shadow-soft);
            padding: 18px 18px 20px 18px;
            margin-bottom: 18px;
        }

        .staff-role {
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--accent-soft);
            margin-bottom: 4px;
        }

        .staff-name {
            font-size: 1.25rem;
            font-weight: 800;
            color: #fdf9ff;
        }

        .staff-meta {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .staff-photo-wrapper { text-align: center; }

        .staff-photo {
            width: 100%;
            max-width: 320px;
            max-height: 340px;
            border-radius: 14px;
            object-fit: cover;
            border: 1px solid rgba(245, 197, 24, 0.75);
            box-shadow: 0 0 22px rgba(0,0,0,0.9);
            cursor: pointer;
        }

        .staff-bio {
            font-size: 0.94rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-top: 0.35rem;
        }

        /* LIGHTBOX */
        #lightbox-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.9);
            backdrop-filter: blur(6px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
            transition: opacity .25s ease;
        }

        #lightbox-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        #lightbox-overlay img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 12px;
            border: 3px solid rgba(245,197,24,0.9);
            box-shadow: 0 0 24px rgba(0,0,0,0.85);
            animation: lightboxZoom .25s ease;
        }

        @keyframes lightboxZoom {
            from { transform: scale(0.85); opacity: 0; }
            to   { transform: scale(1);    opacity: 1; }
        }

        /* RESPONSIVE */
        @media (max-width: 1199px) {
            .side-info { display: none; }
        }

        @media (max-width: 991px) {
            .header-nav { display: none; }
            .mobile-bar { display: flex; }

            main {
                padding-top: 20px;
                margin: 0 auto;
                max-width: 960px;
            }

            .site-footer .text-md-center,
            .site-footer .text-md-end {
                text-align: left !important;
            }

            .staff-card { padding: 16px 14px 18px 14px; }

            .staff-photo {
                max-width: 260px;
                max-height: 300px;
                margin-bottom: 10px;
            }
        }

        @media (max-width: 575px) {
            .hero-card { padding: 20px 16px 18px 16px; }
            .hero-title { font-size: 1.9rem; }
        }

        @media (min-width: 1200px) {
            main {
                max-width: none;
                margin-left: 300px;
                width: calc(100% - 320px);
                padding-right: 24px;
            }
        }


/* ===== DUYURU & TRANSFER SLIDER ===== */
.news-transfer-section {
    padding: 10px 0 40px 0;
}
.news-transfer-inner {
    max-width: 100%;
    margin: 0 auto;
}
.subheading {
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #f5c518;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 800;
    text-shadow: 0 0 12px rgba(245,197,24,0.7);
}
.home-slider-box {
    background: rgba(5,15,35,0.85);
    border-radius: 20px;
    border: 1px solid rgba(96,176,255,0.35);
    padding: 16px 16px 26px 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.85);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.news-slide {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.news-text { flex: 1; }
.news-text h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fdf9ff;
}
.news-date {
    font-size: 0.82rem;
    color: #96a4c3;
    margin-bottom: 4px;
}
.news-text p {
    font-size: 0.95rem;
    color: #96a4c3;
}
.news-image {
    flex: 0 0 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-image .photo-slide-wrapper,
.transfer-slider-box .photo-slide-wrapper {
    height: 240px;
    border-radius: 13px;
}
.news-image .photo-slide-foreground img,
.transfer-slider-box .photo-slide-foreground img {
    border-radius: 13px;
    border: 1px solid rgba(245,197,24,0.5);
    box-shadow: 0 16px 35px rgba(0,0,0,0.9);
}
.photo-slide-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
}
.photo-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(30px);
    transform: scale(1.4);
}
.photo-slide-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.1) 0, rgba(0,0,0,0.75) 70%);
}
.photo-slide-foreground {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-slide-foreground img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 13px;
}
.slider-footer-link {
    margin-top: 8px;
    font-size: 0.86rem;
    display: inline-block;
    color: #35f1ff;
}
@media (max-width: 991px) {
    .news-slide { flex-direction: column; }
    .news-image { flex: none; width: 100%; height: 200px; }
    .news-image .photo-slide-wrapper,
    .transfer-slider-box .photo-slide-wrapper,
    .photo-slide-wrapper { height: 200px; }
}

/* ===== DUYURU KARTLARI ===== */
.news-card {
    background: rgba(5,15,35,0.85);
    border-radius: 18px;
    border: 1px solid rgba(96,176,255,0.25);
    padding: 16px 18px;
    height: 100%;
    box-shadow: 0 16px 40px rgba(0,0,0,0.85);
}
.news-meta-top {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 6px;
}
.news-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    border-radius: 999px;
    border: 1px solid rgba(53,241,255,0.5);
    padding: 3px 9px;
    display: inline-block;
    color: #35f1ff;
    background: rgba(2,8,23,0.9);
}
.news-date { font-size: 0.85rem; color: #96a4c3; }
.news-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.35rem; color: #f3f7ff; }
.news-excerpt { font-size: 0.92rem; color: #96a4c3; margin-bottom: 0.6rem; }
.news-link { font-size: 0.9rem; text-decoration: none; color: #35f1ff; }
.news-link:hover { text-decoration: underline; }
.news-thumb-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

/* ===== SIDE-INFO FOOTER ÜSTÜNE ÇIKMA DÜZELTMESİ ===== */
@media (min-width: 1200px) {
    .side-info {
        position: fixed !important;
        top: 120px !important;
        left: 14px !important;
        max-width: 260px !important;
        max-height: calc(100vh - 160px);
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: none;
        z-index: 2 !important;
    }
    .side-info::-webkit-scrollbar { display: none; }

    /* footer yaklaşınca side-info'yu gizle */
    body {
        --footer-safe: 0px;
    }
}

/* ===== FOOTER (TEK TANIM) ===== */
footer {
    padding: 16px 18px 10px 18px;
    border-top: 1px solid rgba(76, 124, 255, 0.35);
    background: radial-gradient(circle at top, #040f25 0, #020817 60%);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}
footer p {
    margin: 0 0 2px 0;
}
.footer-inner {
    max-width: 960px;
    margin: 0 auto;
}
.footer-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: var(--accent-soft);
}
.footer-link {
    color: #f3f7ff;
    text-decoration: none;
}
.footer-link:hover { color: var(--accent-main); }
.footer-copy {
    margin-top: 8px;
    text-align: center;
    font-size: 0.82rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 8px;
}
