/* ============================================================
   style.css - BIRLESTIRILMIS STIL DOSYASI
   index.php icindeki tum CSS + kurumsal style.css birlestimi
   ------------------------------------------------------------
   A) Kurumsal genel ayarlar (scrollbar, app-shell, glass-form,
      tablo, link)     - style.css dosyasindan geldi
   B) body / html.dark body - cakisma cozuldu (tek nusha)
   C) index.php'den tasinan tum bilesen CSS
   ============================================================ */

/* ============ A) KURUMSAL GENEL AYARLAR ============ */
/* --- 1. KISIM: GENEL AYARLAR (Scrollbar, Animasyon) --- */

/* Temalara uyumlu scrollbar (acik / koyu tema)
   Renkler acik ve koyu tema degiskenlerinden alinir,
   sayfanin alti/ustu degistikce otomatik degisir. */
:root {
    --sb-track: #e5e7eb;      /* acik tema: gri track */
    --sb-thumb: #a1a1aa;      /* acik tema: zink thumb */
    --sb-thumb-hover: #71717a;
}
html.dark {
    --sb-track: #0f172a;      /* koyu tema: slate-900 */
    --sb-thumb: #475569;      /* koyu tema: slate-600 */
    --sb-thumb-hover: #64748b;/* slate-500 */
}
* {
    scrollbar-width: thin;
    scrollbar-color: var(--sb-thumb) var(--sb-track);
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: var(--sb-track);
}

*::-webkit-scrollbar-thumb {
    background: var(--sb-thumb);
    border-radius: 9999px;
    border: 1px solid var(--sb-track);
}

*::-webkit-scrollbar-thumb:hover {
    background: var(--sb-thumb-hover);
}

.app-shell {
    min-height: 100vh;
}

/* --- 3. KISIM: FORM / KART GORUNUMU --- */

input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.35);
    border-color: #3b82f6;
}

/* Linkler */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* ============ B) BODY / HTML.DARK BODY (cakisma cozuldu) ============ */
body {
    margin: 0;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: #fafafa;
    color: #18181b;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(249,115,22,0.10) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(236,72,153,0.10) 0%, transparent 45%);
    background-attachment: fixed;
}
html.dark body {
    background-color: #050505;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(139,92,246,0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(236,72,153,0.15) 0%, transparent 40%);
    background-attachment: fixed;
}

/* ============ C) INDEX ICINDEKI TUM BILESEN CSS ============ */

        /* Glassmorphism Kartlari */
        .glass-card {
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
        }

        /* Dark Mod Kart Stili */
        html.dark .glass-card {
            background: rgba(10, 10, 10, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
        }

        /* Light Mod Kart Stili */
        .glass-card {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        /* Animasyonlar */
        .fade-in-up {
            animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Parlayan ve Hoverda Titreyen Butonlar (Kayit Ol / Hemen Basla) */

        .btn-glow-spin:hover {
            animation: btnGlowPulse 1.1s ease-in-out infinite, btnShake 0.4s ease-in-out infinite;
            filter: brightness(1.08);
        }
        @keyframes btnGlowPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(236,72,153,0.00), 0 0 18px 2px rgba(139,92,246,0.35); }
            50% { box-shadow: 0 0 0 6px rgba(236,72,153,0.00), 0 0 34px 8px rgba(236,72,153,0.50); }
        }
        @keyframes btnShake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-4px); }
            75% { transform: translateX(4px); }
        }

        /* Yatay Kayan Populer Platformlar */
        .marquee-horizontal-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
        }
        .marquee-track-horizontal {
            display: flex;
            width: max-content;
            gap: 1.5rem; /* 24px */
        }
        .scroll-right {
            animation: scrollRight 120s linear infinite;
        }
        .scroll-left {
            animation: scrollLeft 120s linear infinite;
        }
        .marquee-horizontal-container:hover .marquee-track-horizontal {
            animation-play-state: paused;
        }
        @keyframes scrollRight {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }
        @keyframes scrollLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .platform-card {
            width: 250px;
            height: 64px;
            flex-direction: row !important;
            gap: 0.85rem;
            padding: 0 1.25rem;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: all 0.3s ease;
        }
        html.dark .platform-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .platform-card:hover {
            transform: translateY(-3px);
            border-color: rgba(139, 92, 246, 0.3);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
        }
        html.dark .platform-card:hover {
            border-color: rgba(139, 92, 246, 0.4);
        }

        /* =========================================================
           YUKARI KAYAN SERVIS MARQUEE - TELEFON / SMS SOYNET GORUNUMU
        ========================================================= */

        /* Telefon cercevesi: dis govde */
        .phone-combo {
            position: relative;
            width: 100%;
            max-width: 340px;
            margin-inline: auto;
            border-radius: 2.4rem;
            overflow: hidden;
            animation: float 6s ease-in-out infinite;
            background: #0b1220;
            box-shadow:
                0 0 0 6px #0a0f1c,
                0 0 0 7px rgba(139, 92, 246, 0.20),
                0 28px 60px -28px rgba(0, 0, 0, 0.55);
        }
        html:not(.dark) .phone-combo {
            background: #ffffff;
            box-shadow:
                0 0 0 6px #e2e8f0,
                0 0 0 7px rgba(139, 92, 246, 0.25),
                0 28px 60px -30px rgba(0, 0, 0, 0.30);
        }

        /* Asagi-yukari suzulme animasyonu (telefon sabit durmasin) */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50%      { transform: translateY(-12px); }
        }

        /* iPhone 17 kamera centigi (Dynamic Island) */
        .phone-notch {
            position: absolute;
            top: 14px;
            left: 50%;
            transform: translateX(-50%);
            width: 90px;
            height: 26px;
            background: #000;
            border-radius: 999px;
            z-index: 20;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
            pointer-events: none;
        }
        .phone-notch::before {
            /* On kamera lensi */
            content: "";
            position: absolute;
            top: 50%;
            right: 10px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 35%, #3a4a6b, #05070c 70%);
            transform: translateY(-50%);
        }
        html:not(.dark) .phone-notch {
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
        }

        /* Telefon durum cubugu */
        .status-bar {
            position: relative;
            z-index: 6;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px 4px;
            font-size: 11px;
            font-weight: 700;
            color: #fff;
            background: linear-gradient(90deg, #1e2433, #151a26);
            letter-spacing: 0.3px;
        }
        html:not(.dark) .status-bar {
            color: #0f172a;
            background: linear-gradient(90deg, #eef2f7, #e2e8f0);
        }
        .st-time { opacity: 0.9; }
        .st-icons { display: inline-flex; gap: 6px; font-size: 10px; opacity: 0.85; }

        /* Sohbet baslik cubugu (ust bar) */
        .chat-header {
            position: relative;
            z-index: 5;
            display: flex;
            align-items: center;
            gap: 11px;
            padding: 13px 16px;
            color: #fff;
            background: linear-gradient(90deg, #1e2433, #151a26);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        html:not(.dark) .chat-header {
            color: #111827;
            background: linear-gradient(90deg, #eef2f7, #e2e8f0);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }
        .chat-header .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
            color: #fff;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 14px rgba(139, 92, 246, 0.4);
            flex-shrink: 0;
        }
        .chat-header .meta {
            line-height: 1.15;
            min-width: 0;
        }
        .chat-header .meta b {
            display: block;
            font-size: 13.5px;
            font-weight: 700;
            letter-spacing: 0.2px;
        }
        .chat-header .meta span {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            opacity: 0.75;
            margin-top: 3px;
        }
        .chat-header .tools {
            margin-left: auto;
            display: flex;
            gap: 15px;
            font-size: 14px;
            opacity: 0.85;
        }
        .online-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #22c55e;
            display: inline-block;
            animation: pulseDot 1.8s ease-out infinite;
        }
        @keyframes pulseDot {
            0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
            80%, 100% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
        }

        /* Sohbet listesi penceresi */
        .marquee-container {
            height: 440px;
            overflow: hidden;
            position: relative;
            mask-image: linear-gradient(to bottom, transparent 0%, black 9%, black 91%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 9%, black 91%, transparent 100%);
        }
        .chat-screen-bg {
            position: absolute;
            inset: 0;
            background-color: #e9e2d9;
            background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
            background-size: 13px 13px;
        }
        html.dark .chat-screen-bg {
            background-color: #0b1220;
            background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
        }

        .marquee-track {
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 14px;
            animation: scrollUp 200s linear infinite;
            will-change: transform;
        }
        .marquee-track:hover {
            animation-play-state: paused;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        /* Mesaj balonu */
        .sms-msg {
            position: relative;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 9px;
            padding: 13px 15px 11px;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 16px;
            border-bottom-left-radius: 5px;
            box-shadow: 0 4px 14px -6px rgba(0, 0, 0, 0.18);
        }
        html.dark .sms-msg {
            background: #151d2c;
            border-color: rgba(255, 255, 255, 0.06);
            box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.6);
        }
        .sms-tail {
            position: absolute;
            left: -7px;
            bottom: 0;
            width: 14px;
            height: 14px;
            background: #ffffff;
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
        }
        html.dark .sms-tail {
            background: #151d2c;
        }
        .sms-msg:hover {
            transform: translateX(2px);
        }

        /* Balon ust satiri */
        .bubble-head {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .b-avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            color: #fff;
            font-size: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
        }
        .b-avatar i,
        .b-avatar img {
            font-size: 14px;
        }
        .b-avatar img {
            width: 18px;
            height: 18px;
        }
        .b-meta {
            display: flex;
            flex-direction: column;
            min-width: 0;
            line-height: 1.2;
        }
        .b-meta b {
            font-size: 13.5px;
            font-weight: 700;
            color: #111827;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        html.dark .b-meta b { color: #f1f5f9; }
        .b-sub {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            color: #64748b;
            margin-top: 2px;
        }
        html.dark .b-sub { color: #94a3b8; }
        .b-verif {
            margin-left: auto;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 10.5px;
            font-weight: 700;
            color: #059669;
            background: rgba(16, 185, 129, 0.12);
            border: 1px solid rgba(16, 185, 129, 0.25);
            padding: 3px 8px;
            border-radius: 999px;
        }
        html.dark .b-verif {
            color: #34d399;
            background: rgba(16, 185, 129, 0.14);
            border-color: rgba(16, 185, 129, 0.3);
        }

        /* Onay kodu kutusu */
        .b-code {
            display: flex;
            align-items: center;
            gap: 7px;
            justify-content: center;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.10), rgba(236, 72, 153, 0.10));
            border: 1.5px dashed rgba(139, 92, 246, 0.40);
            border-radius: 9px;
            padding: 5px 9px;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 3px;
            color: #7c3aed;
        }
        html.dark .b-code {
            color: #a78bfa;
            border-color: rgba(139, 92, 246, 0.5);
        }
        .b-code i {
            font-size: 11px;
            letter-spacing: 0;
            opacity: 0.72;
        }

        /* Alt satir: zaman + okunma tikleri */
        .b-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 2px;
        }
        .b-foot > span {
            font-size: 11px;
            color: #94a3b8;
        }
        html.dark .b-foot > span { color: #64748b; }
        .b-ticks {
            display: inline-flex;
            font-size: 12px;
            color: #94a3b8;
        }
        .b-ticks i:nth-child(2) {
            margin-left: -5px;
        }
        .b-ticks.is-read {
            color: #2563eb;
        }
        html.dark .b-ticks.is-read { color: #60a5fa; }

        /* Canli "kod geliyor" gostergesi */
        .typing-bar {
            position: absolute;
            left: 12px;
            bottom: 12px;
            z-index: 6;
            display: flex;
            align-items: center;
            gap: 9px;
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(0, 0, 0, 0.06);
            color: #475569;
            font-size: 11.5px;
            font-weight: 600;
            padding: 8px 13px;
            border-radius: 999px;
            box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        html.dark .typing-bar {
            background: rgba(21, 29, 44, 0.9);
            border-color: rgba(255, 255, 255, 0.08);
            color: #cbd5e1;
        }
        .t-dots {
            display: inline-flex;
            gap: 3px;
        }
        .t-dots i {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #8b5cf6;
            animation: tdot 1.2s infinite;
        }
        .t-dots i:nth-child(2) { animation-delay: 0.15s; }
        .t-dots i:nth-child(3) { animation-delay: 0.3s; }
        @keyframes tdot {
            0%, 60%, 100% { opacity: 0.25; transform: translateY(0); }
            30% { opacity: 1; transform: translateY(-2px); }
        }
.oa-bonus-announcement {
            position: relative;
            z-index: 60;
            width: 100%;
            height: 42px;
            background: linear-gradient(90deg, #13072e 0%, #280a1e 50%, #13072e 100%);
            border-bottom: 1px solid rgba(139, 92, 246, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
        }

        /* LIGHT MODE: Duyuru cubugu - sicak acik ton */
        html:not(.dark) .oa-bonus-announcement {
            background: linear-gradient(90deg, #fef8ee 0%, #fef1f7 50%, #fef8ee 100%);
            border-bottom: 1px solid rgba(249, 115, 22, 0.20);
        }

        html:not(.dark) .oa-bonus-message {
            color: #451a03;
        }

        html:not(.dark) .oa-bonus-message strong {
            color: #c2410c;
        }

        html:not(.dark) .oa-bonus-close {
            background: rgba(0, 0, 0, 0.05);
            color: #64748b;
        }

        html:not(.dark) .oa-bonus-close:hover {
            background: rgba(0, 0, 0, 0.10);
            color: #1e293b;
        }

        .oa-bonus-inner {
            width: 100%;
            max-width: 1250px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 0 52px 0 16px;
            box-sizing: border-box;
        }

        .oa-bonus-message {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            line-height: 1;
            text-align: center;
            letter-spacing: .1px;
        }

        .oa-bonus-message strong {
            color: #c084fc;
            font-weight: 800;
        }

        .oa-bonus-icon {
            font-size: 17px;
            line-height: 1;
        }

        .oa-bonus-close {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            width: 28px;
            height: 28px;
            border: 0;
            border-radius: 8px;
            background: rgba(255,255,255,.07);
            color: #94a3b8;
            font-size: 20px;
            line-height: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .2s ease;
        }

        .oa-bonus-close:hover {
            background: rgba(255,255,255,.14);
            color: #fff;
        }

        /* Duyuru acikken hero, sabit navbarin altindan baslamasin */
        #home {
            padding-top: 122px !important;
        }
    

/* ===== STYLE BLOK 2/5 : SAHTE BILDIRIM (FAKE TOAST) ===== */

        .fake-toast {
            position: fixed;
            bottom: -150px;
            left: 24px;
            z-index: 9999;
            transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            opacity: 0;
            pointer-events: none;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 40px -10px rgba(0,0,0,0.2);
        }
        .fake-toast.show {
            bottom: 24px;
            opacity: 1;
        }
        html.dark .fake-toast {
            background: rgba(24, 24, 27, 0.85);
            border-color: rgba(255, 255, 255, 0.08);
        }
        html:not(.dark) .fake-toast {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(0, 0, 0, 0.05);
        }
    

/* ===== STYLE BLOK 3/5 : fadeSlideIn (YUKARI RAHAT ANIMASYON) ===== */

    @keyframes fadeSlideIn{from{opacity:0;transform:translateY(8px) scale(0.95)}to{opacity:1;transform:translateY(0) scale(1)}}
    

/* ===== STYLE BLOK 4/5 : CEREZ IZNI (COOKIE CONSENT) ===== */

        #cookieConsent {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 10000;
            width: calc(100% - 48px);
            max-width: 380px;
            border-radius: 1.25rem;
            padding: 1.5rem;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: 0 10px 40px -10px rgba(0,0,0,0.25);
            opacity: 0;
            transform: translateY(24px);
            pointer-events: none;
            transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
        }
        #cookieConsent.show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        html.dark #cookieConsent {
            background: rgba(24, 24, 27, 0.92);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        html:not(.dark) #cookieConsent {
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(0, 0, 0, 0.06);
        }
        @media (max-width: 480px) {
            #cookieConsent {
                right: 16px;
                left: 16px;
                bottom: 16px;
                width: auto;
                max-width: none;
            }
        }
    

/* ===== GUVENLI ODEME ROZETLERI (Footer) ===== */
.pay-row {
    flex-wrap: nowrap;
}
.pay-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 5px 7px 4px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(13, 16, 45, 0.08);
    box-shadow: 0 6px 18px -8px rgba(2, 6, 23, 0.18);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
    cursor: default;
}
html.dark .pay-card {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.09);
    box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.6);
}
.pay-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 0 14px 26px -10px rgba(2, 6, 23, 0.28);
    background: rgba(255, 255, 255, 0.95);
}
html.dark .pay-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.5);
}

.pay-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    min-width: 40px;
    padding: 0 6px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid rgba(13, 16, 45, 0.07);
    box-shadow: inset 0 1px 2px rgba(13, 16, 45, 0.04);
    transition: height .25s ease;
}
.pay-card:hover .pay-logo {
    height: 27px;
}

/* Godlu SVG ikonlari (Mastercard / Kripto / 3D Secure / SSL) orantili kucultur */
.pay-logo svg {
    height: 20px;
    width: auto;
}

.pay-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #64748b;
    white-space: nowrap;
}
html.dark .pay-label {
    color: #94a3b8;
}
.pay-card:hover .pay-label {
    color: #7c3aed;
}
html.dark .pay-card:hover .pay-label {
    color: #a78bfa;
}

/* Visa logotype */
.visa-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: 15px;
    letter-spacing: -1px;
    color: #1A1F71;
    line-height: 1;
}
html.dark .visa-logo {
    color: #2563eb;
}

/* Troy logotype */
.troy-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .05em;
    color: #05A357;
    line-height: 1;
}
html.dark .troy-logo {
    color: #00C76E;
}

/* ===== GUVENLI ODEME ROZETLERI: MOBIL TEK SATIR ===== */
@media (max-width: 640px) {
    .pay-row {
        gap: 5px;
    }
    .pay-card {
        padding: 4px 4px 3px;
    }
    .pay-logo {
        height: 18px;
        min-width: 30px;
        padding: 0 3px;
    }
    .pay-card:hover .pay-logo {
        height: 20px;
    }
    .pay-logo svg {
        height: 14px;
    }
    .visa-logo {
        font-size: 11px;
    }
    .troy-logo {
        font-size: 10px;
    }
}
@media (max-width: 380px) {
    .pay-card {
        padding: 3px 3px 2px;
        gap: 2px;
    }
    .pay-logo {
        height: 16px;
        min-width: 26px;
    }
    .pay-logo svg {
        height: 12px;
    }
    .visa-logo { font-size: 10px; }
    .troy-logo { font-size: 9px; }
}

/* ===== MOBIL IYILESTIRMELER ===== */
@media (max-width: 640px) {
    /* Duyuru cubugu: kucuk ekranda icerigi siki tut, scroll tasmasini engelle */
    .oa-bonus-announcement {
        overflow: hidden;
    }
    .oa-bonus-inner {
        padding-right: 44px;
    }
    .oa-bonus-message {
        font-size: 12px;
        gap: 6px;
        max-width: 100%;
        overflow: hidden;
    }
    .oa-bonus-icon {
        font-size: 14px;
    }
    .oa-bonus-close {
        right: 8px;
        width: 26px;
        height: 26px;
    }

    /* Platform kartlari cok genis kalmasin */
    .platform-card {
        width: 190px;
        height: 56px;
    }
    .platform-card .platform-card-icon {
        font-size: 18px !important;
    }
}
@media (max-width: 480px) {
    .platform-card {
        width: 168px;
        height: 52px;
        gap: 0.6rem;
        padding: 0 0.9rem;
    }
}

/* ===== NASIL CALISIR (1-2-3) ===== */
.how-step { transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.how-step:hover { transform: translateY(-4px); box-shadow: 0 18px 34px -14px rgba(2,6,23,.25); }
.how-num {
    position: absolute; top: 18px; right: 22px;
    font-size: 56px; font-weight: 800; line-height: 1;
    color: rgba(139,92,246,.08);
    -webkit-text-stroke: 1.5px rgba(139,92,246,.25);
    font-family: 'Outfit', sans-serif;
    user-select: none;
}
.how-icon {
    width: 52px; height: 52px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 16px;
}


/* ===== CANLI KATALOG ===== */
.catalog-card { border-color: rgba(13,16,45,.06); }
html.dark .catalog-card { border-color: rgba(255,255,255,.08); }

/* ===== BOS DURUM (Empty State) ===== */
.empty-state { text-align:center; padding: 46px 20px; }
.empty-icon {
    width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 20px;
    background: rgba(139,92,246,.10); color: #8b5cf6;
    display: flex; align-items:center; justify-content:center; font-size: 26px;
}
.empty-state h3 { margin-bottom: 6px; }
.empty-state p { max-width: 340px; margin: 0 auto; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== NAVBAR AKTIF + SCROLL ===== */
.nav-scrolled { background: rgba(255,255,255,.9); box-shadow: 0 8px 24px -12px rgba(2,6,23,.15); }
html.dark .nav-scrolled { background: rgba(9,9,11,.92); }
.nav-link { position: relative; }
.nav-link.nav-active { color: #8b5cf6; }
html.dark .nav-link.nav-active { color: #ec4899; }
.nav-link.nav-active::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
    border-radius: 2px; background: linear-gradient(90deg,#8b5cf6,#ec4899);
}

/* ===== ERISILEBILIRLIK: FOCUS RING + REDUCED MOTION ===== */
:where(a, button, [role="button"]) { -webkit-tap-highlight-color: transparent; }
:where(a, button):focus { outline: none; }
:where(a, button):focus-visible {
    outline: 3px solid rgba(139,92,246,.55);
    outline-offset: 2px;
    border-radius: 6px;
}
html.dark :where(a, button):focus-visible { outline-color: rgba(236,72,153,.6); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ===== FAQ AKORDIYON (tek acik + animasyon) ===== */
.faq-content { transition: height .35s cubic-bezier(.4,0,.2,1); }
.faq-btn { -webkit-tap-highlight-color: transparent; }

/* ===== MINI KATALOG (Nasil Calisir) ===== */

/* ===== HEADER LOGO PARLAMA (saga dogru kayan isik) ===== */
.logo-box { border-radius: 12px; }
.logo-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    width: 60%;
    height: 100%;
    background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.55) 50%, transparent 80%);
    animation: logoShine 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}
.dark .logo-box::after {
    background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.28) 50%, transparent 80%);
}
@keyframes logoShine {
    0% { left: -130%; }
    17.6% { left: 130%; }
    100% { left: 130%; }
}

/* ===== MOBIL GUVENLIK: herhangi bir yatay tasmayi (blob/marquee) engelle ===== */
html, body { overflow-x: clip; }