        :root {
            --bg-main: #ffffff;
            --bg-card: #ffffff;
            --text-main: #111827;
            --text-muted: #6b7280;
            --border-color: #f3f4f6;
            --header-bg: #ffffff;
            --text-color: #111827;
            --female-color: #db2777;
            --female-bg: #fff1f2;
            --female-border: #fecdd3;
            --male-color: #2563eb;
            --male-bg: #eff6ff;
            --male-border: #bfdbfe;
            --brand-purple: #7c3aed;
            --brand-purple-dark: #6d28d9;
            --topbar-fg: #ffffff;
        }

        body.dark-mode,
        [data-theme="dark"] {
            --bg-main: #0f1419;
            --bg-card: #15181c;
            --text-main: #e7e9ea;
            --text-muted: #71767b;
            --border-color: #2f3336;
            --header-bg: #15181c;
            --text-color: #e7e9ea;
            --female-color: #f43f5e;
            --female-bg: #201319;
            --female-border: #4c1d24;
            --male-color: #1d9bf0;
            --male-bg: #0e1924;
            --male-border: #1d354b;
            --brand-purple: #6d28d9;
            --brand-purple-dark: #5b21b6;
            --topbar-fg: #ffffff;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-main);
            color: var(--text-main);
            line-height: 1.6;
            padding: 0 0 40px;
            transition: background-color 0.3s, color 0.3s;
        }

        .ss-watermark {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-30deg);
            font-size: 54px;
            font-weight: 900;
            color: rgba(0, 0, 0, 0.15);
            z-index: 9999;
            pointer-events: none;
            opacity: 0;
            white-space: nowrap;
        }

        @media print {
            .ss-watermark { opacity: 0.12; }
        }

        main {
            max-width: 500px;
            margin: 0 auto;
            padding: 0 12px 12px;
        }

        .page-topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin: 0 -12px 10px;
            padding: 10px 12px;
            min-height: 52px;
            position: sticky;
            top: 0;
            z-index: 300;
            color: var(--topbar-fg);
            background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-purple-dark) 100%);
            border: none;
            border-bottom: 1px solid rgba(0, 0, 0, 0.12);
            border-radius: 0 0 10px 10px;
            box-shadow: 0 8px 24px rgba(91, 33, 182, 0.22);
        }

        .page-topbar-sol {
            flex-shrink: 0;
        }

        .page-topbar-sol[hidden] {
            display: none !important;
        }

        .page-topbar .header-menu-wrap {
            position: relative;
        }

        .topbar-menu-btn {
            width: 44px;
            height: 44px;
            padding: 0;
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.14);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        }

        .topbar-menu-btn:hover {
            background: rgba(255, 255, 255, 0.22);
        }

        .topbar-menu-bar {
            display: block;
            width: 18px;
            height: 2px;
            background: var(--topbar-fg);
            border-radius: 1px;
        }

        .page-topbar .header-menu-panel {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            min-width: 176px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 14px;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
            padding: 8px;
            z-index: 220;
        }

        .page-topbar .header-menu-nav {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .page-topbar .header-menu-link {
            display: block;
            padding: 10px 12px;
            border-radius: 10px;
            color: var(--text-main);
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
        }

        .page-topbar .header-menu-link:hover {
            background: #f3f4f6;
        }

        body.dark-mode .page-topbar .header-menu-link:hover,
        [data-theme="dark"] .page-topbar .header-menu-link:hover {
            background: #2f3336;
        }

        .page-topbar .header-menu-link--master {
            color: #f59e0b;
            font-weight: 800;
        }

        .page-topbar .brand {
            flex: 1;
            min-width: 0;
            color: var(--topbar-fg);
        }

        .page-topbar .brand-five {
            color: #fecaca;
        }

        #indexSiteHeader[hidden] {
            display: none !important;
        }

        #indexSiteHeader {
            background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-purple-dark) 100%);
            color: #ffffff;
            padding: 16px;
            text-align: center;
            font-size: 24px;
            font-weight: 900;
            letter-spacing: -1px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.12);
            box-shadow: 0 8px 24px rgba(91, 33, 182, 0.22);
            position: sticky;
            top: 0;
            z-index: 200;
        }

        #indexSiteHeader .header-brand {
            color: #ffffff;
            text-decoration: none;
        }

        #indexSiteHeader .header-brand:hover { opacity: 0.92; }
        #indexSiteHeader .header-brand-red { color: #ef4444; }

        #indexSiteHeader .header-sol {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 210;
        }

        #indexSiteHeader .header-sag {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 210;
        }

        #indexSiteHeader .header-menu-btn {
            width: 38px;
            height: 38px;
            border: 1px solid rgba(255, 255, 255, 0.45);
            background: rgba(255, 255, 255, 0.18);
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            padding: 0;
        }

        #indexSiteHeader .header-menu-bar {
            display: block;
            width: 18px;
            height: 2px;
            background: #ffffff;
            border-radius: 1px;
        }

        #indexSiteHeader .header-menu-panel {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            min-width: 168px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 14px;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
            padding: 8px;
            z-index: 300;
        }

        body.dark-mode #indexSiteHeader .header-menu-panel,
        [data-theme="dark"] #indexSiteHeader .header-menu-panel {
            background: var(--bg-card);
            border-color: var(--border-color);
        }

        #indexSiteHeader .header-menu-nav {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        #indexSiteHeader .header-menu-link {
            display: block;
            padding: 10px 12px;
            border-radius: 10px;
            color: #111827;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            text-align: left;
        }

        body.dark-mode #indexSiteHeader .header-menu-link,
        [data-theme="dark"] #indexSiteHeader .header-menu-link {
            color: var(--text-main);
        }

        #indexSiteHeader .header-menu-link:hover { background: #f3f4f6; }

        body.dark-mode #indexSiteHeader .header-menu-link:hover,
        [data-theme="dark"] #indexSiteHeader .header-menu-link:hover {
            background: #2f3336;
        }

        #indexSiteHeader .header-auth-btns {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        #indexSiteHeader .header-auth-btns[hidden] { display: none !important; }

        #indexSiteHeader .header-auth-btn {
            border: 1px solid rgba(255, 255, 255, 0.45);
            background: rgba(255, 255, 255, 0.18);
            color: #ffffff;
            padding: 8px 12px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            font-family: inherit;
        }

        #indexSiteHeader .header-profil-link {
            display: none;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            text-decoration: none;
        }

        #indexSiteHeader .header-profil-avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #fff;
            overflow: hidden;
        }

        #indexSiteHeader .header-profil-link.cins-female .header-profil-avatar:not(.has-foto) {
            background-color: var(--female-color);
        }

        #indexSiteHeader .header-profil-link.cins-male .header-profil-avatar:not(.has-foto) {
            background-color: var(--male-color);
        }

        #indexSiteHeader .header-profil-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .index-tagline {
            max-width: 90%;
            margin: 5px auto 18px;
            padding: 0;
            text-align: center;
            font-size: 16px;
            font-weight: 800;
            line-height: 1.35;
            color: #111827;
            letter-spacing: -0.01em;
        }

        body.dark-mode .index-tagline,
        [data-theme="dark"] .index-tagline {
            color: var(--text-main);
        }

        .page-topbar .brand {
            font-size: 26px;
            font-weight: 800;
            letter-spacing: -1px;
            text-decoration: none;
            line-height: 1;
        }

        .theme-fab {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.35);
            background: rgba(255, 255, 255, 0.14);
            color: var(--topbar-fg);
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
            display: grid;
            place-items: center;
        }

        .page-topbar .theme-fab:hover {
            background: rgba(255, 255, 255, 0.22);
        }

        .brand-five {
            color: #ef4444;
        }

        .page-topbar .brand-five {
            color: #fecaca;
        }

        .story-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 18px;
            margin-bottom: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
            isolation: isolate;
            transition: box-shadow 0.3s ease;
        }

        .story-card .card-header,
        .story-card .card-body,
        .story-card .card-footer,
        .story-card .card-header-actions {
            position: relative;
            z-index: 1;
        }

        .story-card.female {
            background-color: var(--female-bg);
            border-color: var(--female-border);
        }

        .story-card.male {
            background-color: var(--male-bg);
            border-color: var(--male-border);
        }

        .story-card.focused {
            border-width: 2px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.01); }
            100% { transform: scale(1); }
        }

        .story-card .card-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 12px;
        }

        .story-card .card-header-actions {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: center;
            gap: 4px;
            flex-shrink: 0;
            margin-left: 8px;
            max-width: min(52%, 11.5rem);
        }

        .story-card .card-header-etiket {
            display: flex;
            justify-content: flex-end;
            max-width: 100%;
            line-height: 0;
        }

        .story-card .user-block {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
            min-width: 0;
        }

        .story-card .avatar {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
            color: #fff;
            flex-shrink: 0;
            overflow: hidden;
        }

        .story-card .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .story-card .avatar.has-foto {
            background: var(--border-color) !important;
        }

        .story-card.female .avatar:not(.has-foto) {
            background-color: var(--female-color);
        }

        .story-card.male .avatar:not(.has-foto) {
            background-color: var(--male-color);
        }

        .story-card .user-details {
            display: flex;
            flex-direction: column;
            gap: 2px;
            min-width: 0;
        }

        .story-card .username {
            font-size: 16px;
            font-weight: 800;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .story-card.female .username {
            color: var(--female-color);
        }

        .story-card.male .username {
            color: var(--male-color);
        }

        .story-card .user-meta {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
        }

        .story-card .kart-marka {
            font-size: 14px;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--text-muted);
            opacity: 0.88;
            white-space: nowrap;
            user-select: none;
            line-height: 1;
        }

        body.dark-mode .story-card .kart-marka,
        [data-theme="dark"] .story-card .kart-marka {
            opacity: 0.72;
        }

        .story-card .card-body {
            position: relative;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-main);
            font-weight: 500;
            text-align: justify;
            text-justify: inter-word;
            margin-bottom: 14px;
        }

        .story-card .card-body::before {
            content: "gunde5.com";
            position: absolute;
            inset: 0;
            display: grid;
            place-items: center;
            transform: rotate(-32deg);
            font-size: clamp(1.9rem, 9vw, 2.75rem);
            font-weight: 900;
            letter-spacing: -0.04em;
            line-height: 1;
            color: #111827;
            opacity: 0.08;
            pointer-events: none;
            z-index: 0;
            user-select: none;
            white-space: nowrap;
        }

        body.dark-mode .story-card .card-body::before,
        [data-theme="dark"] .story-card .card-body::before {
            color: #e7e9ea;
            opacity: 0.09;
        }

        .story-card .card-body > * {
            position: relative;
            z-index: 1;
        }

        .story-card .kart-baslik,
        .card .kart-baslik {
            display: block;
            font-size: 17px;
            font-weight: 800;
            line-height: 1.35;
            margin-bottom: 8px;
            color: var(--text-main);
        }

        .story-card.female .kart-baslik { color: var(--female-color); }
        .story-card.male .kart-baslik { color: var(--male-color); }
        .card.female .kart-baslik { color: var(--female-color); }
        .card.male .kart-baslik { color: var(--male-color); }

        .story-card .card-body .short-text {
            white-space: pre-line;
        }

        body.dark-mode .story-card .card-body {
            color: #e7e9ea;
        }

        .story-card .card-footer {
            margin-top: 0;
            margin-left: -6px;
            margin-right: -6px;
            width: calc(100% + 12px);
            padding-top: 12px;
            border-top: 1px solid rgba(0, 0, 0, 0.04);
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 0;
            min-width: 0;
        }

        .story-card .card-footer-paylas {
            display: flex;
            justify-content: center;
            width: 100%;
            margin-top: 14px;
            padding-top: 4px;
        }

        body.dark-mode .story-card .card-footer,
        [data-theme="dark"] .story-card .card-footer {
            border-top-color: rgba(255, 255, 255, 0.06);
        }

        .story-card .vote-box {
            display: flex;
            flex: 1 1 auto;
            min-width: 0;
            gap: 12px;
            flex-wrap: nowrap;
        }

        .story-card .vote-btn {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            color: var(--text-main);
            padding: 9px 14px;
            border-radius: 30px;
            font-size: clamp(13px, 3.6vw, 16px);
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            flex: 1 1 0;
            min-width: 0;
            white-space: nowrap;
            line-height: 1.2;
            transition: all 0.2s;
        }

        .story-card .vote-btn .count,
        .story-card .vote-btn .count-down {
            display: inline-block;
            min-width: 2.4em;
            font-size: 0.92em;
            font-weight: 800;
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.02em;
            text-align: center;
            flex-shrink: 0;
        }

        body.dark-mode .vote-btn,
        [data-theme="dark"] .vote-btn {
            background-color: var(--bg-card);
            border-color: var(--border-color);
        }

        .vote-btn:active {
            transform: scale(0.95);
        }

        .vote-btn.applauded,
        body.dark-mode .vote-btn.applauded,
        [data-theme="dark"] .vote-btn.applauded {
            background-color: #22c55e !important;
            color: #fff !important;
            border-color: #22c55e !important;
        }

        .vote-btn.disliked,
        body.dark-mode .vote-btn.disliked,
        [data-theme="dark"] .vote-btn.disliked {
            background-color: #f97316 !important;
            color: #fff !important;
            border-color: #f97316 !important;
        }

        .vote-btn:disabled.applauded,
        .vote-btn:disabled.disliked {
            opacity: 1;
            cursor: default;
        }

        .story-card .share-btn {
            background-color: var(--bg-card);
            color: var(--text-main);
            border: 1px solid var(--border-color);
            padding: 9px 18px;
            border-radius: 30px;
            font-size: clamp(12px, 3.4vw, 15px);
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
            line-height: 1.2;
            transition: all 0.2s;
        }

        body.dark-mode .story-card .share-btn,
        [data-theme="dark"] .story-card .share-btn {
            background-color: var(--bg-card);
            border-color: var(--border-color);
            color: var(--text-main);
        }

        .story-card .share-btn:active {
            transform: scale(0.95);
        }

        @media (max-width: 480px) {
            .story-card .card-footer {
                margin-left: -8px;
                margin-right: -8px;
                width: calc(100% + 16px);
                gap: 4px;
            }

            .story-card .vote-box {
                gap: 10px;
            }

            .story-card .card-footer-paylas {
                margin-top: 12px;
            }

            .story-card .vote-btn {
                padding: 8px 12px;
                font-size: 13px;
                gap: 5px;
            }

            .story-card .share-btn {
                padding: 8px 14px;
                font-size: 12px;
            }
        }

        .page-tail {
            margin-top: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            text-align: center;
        }

        .page-tail-satir {
            margin: 0;
            font-size: 15px;
            color: var(--text-muted);
            font-weight: 600;
            line-height: 1.45;
        }

        .page-tail-satir--kucuk {
            font-size: 13px;
            font-weight: 500;
        }

        .page-tail-satir a {
            color: var(--text-muted);
            text-decoration: none;
            border-bottom: 1px dashed var(--text-muted);
        }

        .load-more-btn {
            background-color: transparent;
            border: 2px solid var(--text-main);
            color: var(--text-main);
            padding: 12px 32px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            width: 100%;
            margin-bottom: 20px;
        }

        .index-yayin-etiket {
            display: block;
            max-width: 100%;
            margin: 0;
            padding: 3px 8px;
            border-radius: 999px;
            font-size: clamp(9px, 2.5vw, 11px);
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .index-yayin-etiket--bugun {
            background: #dcfce7;
            color: #166534;
            border: 1px solid #86efac;
        }

        .index-yayin-etiket--dun {
            background: #ffedd5;
            color: #9a3412;
            border: 1px solid #fdba74;
        }

        .index-yayin-etiket--hafta {
            background: #dbeafe;
            color: #1e40af;
            border: 1px solid #93c5fd;
        }

        .index-yayin-etiket--eski {
            background: #f3f4f6;
            color: #4b5563;
            border: 1px solid #e5e7eb;
        }

        body.dark-mode .index-yayin-etiket--bugun,
        [data-theme="dark"] .index-yayin-etiket--bugun {
            background: rgba(34, 197, 94, 0.18);
            color: #86efac;
            border-color: rgba(34, 197, 94, 0.35);
        }

        body.dark-mode .index-yayin-etiket--dun,
        [data-theme="dark"] .index-yayin-etiket--dun {
            background: rgba(249, 115, 22, 0.18);
            color: #fdba74;
            border-color: rgba(249, 115, 22, 0.35);
        }

        body.dark-mode .index-yayin-etiket--hafta,
        [data-theme="dark"] .index-yayin-etiket--hafta {
            background: rgba(59, 130, 246, 0.18);
            color: #93c5fd;
            border-color: rgba(59, 130, 246, 0.35);
        }

        body.dark-mode .index-yayin-etiket--eski,
        [data-theme="dark"] .index-yayin-etiket--eski {
            background: rgba(255, 255, 255, 0.06);
            color: #9ca3af;
            border-color: rgba(255, 255, 255, 0.12);
        }

        .index-bugun-bilgi {
            margin: 4px 0 14px;
            padding: 12px 14px;
            border-radius: 14px;
            text-align: center;
            background: #FFF8E1;
            border: 1px solid #FFD54F;
        }

        body.dark-mode .index-bugun-bilgi,
        [data-theme="dark"] .index-bugun-bilgi {
            background: rgba(255, 248, 225, 0.1);
            border-color: rgba(255, 213, 79, 0.45);
        }

        .index-bugun-bilgi-satir {
            margin: 0;
            font-size: 14px;
            font-weight: 700;
            line-height: 1.45;
            color: #5D4037;
        }

        .index-bugun-bilgi-satir--alt {
            margin-top: 4px;
            font-size: 12px;
            font-weight: 400;
            color: #6D5C4D;
        }

        .story-card.focused {
            scroll-margin-top: 12px;
            scroll-margin-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
        }

        .index-dun-bolum-baslik {
            margin: 16px 0 10px;
            padding: 10px 14px;
            border-radius: 12px;
            text-align: center;
            font-size: 14px;
            font-weight: 800;
            color: #c2410c;
            background: rgba(251, 146, 60, 0.12);
            border: 1px solid rgba(251, 146, 60, 0.28);
        }

        body.dark-mode .index-dun-bolum-baslik,
        [data-theme="dark"] .index-dun-bolum-baslik {
            color: #fb923c;
            background: rgba(251, 146, 60, 0.1);
            border-color: rgba(251, 146, 60, 0.35);
        }

        body.dark-mode .index-bugun-bilgi-satir,
        [data-theme="dark"] .index-bugun-bilgi-satir {
            color: #FFE082;
        }

        body.dark-mode .index-bugun-bilgi-satir--alt,
        [data-theme="dark"] .index-bugun-bilgi-satir--alt {
            color: #BCAAA4;
        }

        .load-more-btn.index-load-more--onceki {
            background: #4f46e5;
            border: none;
            color: #ffffff;
            padding: 14px 20px;
            font-size: 15px;
            box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
        }

        .load-more-btn.index-load-more--onceki:hover {
            background: #4338ca;
        }

        .load-more-btn.index-load-more--onceki:active {
            transform: scale(0.98);
        }

        body.dark-mode .load-more-btn.index-load-more--onceki,
        [data-theme="dark"] .load-more-btn.index-load-more--onceki {
            background: #4f46e5;
            color: #fff;
            box-shadow: 0 4px 16px rgba(79, 70, 229, 0.45);
        }

        body.dark-mode .load-more-btn.index-load-more--onceki:hover,
        [data-theme="dark"] .load-more-btn.index-load-more--onceki:hover {
            background: #4338ca;
        }

        .mail-link {
            color: var(--text-main);
            text-decoration: none;
            border-bottom: 1px dashed var(--text-main);
        }

        button.mail-link {
            background: none;
            border: none;
            border-bottom: 1px dashed var(--text-main);
            padding: 0;
            font: inherit;
            font-weight: 600;
            cursor: pointer;
        }

        .modal-content--faq {
            max-width: 440px;
            max-height: min(85vh, 640px);
            overflow-y: auto;
            padding: 22px 18px 20px;
        }

        .faq-modal-baslik {
            color: #2563eb;
            margin-bottom: 16px;
            padding-right: 28px;
        }

        body.dark-mode .faq-modal-baslik,
        [data-theme="dark"] .faq-modal-baslik {
            color: #60a5fa;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
            text-align: left;
        }

        .faq-item {
            border: 1px solid rgba(37, 99, 235, 0.16);
            border-radius: 14px;
            overflow: hidden;
            background: rgba(239, 246, 255, 0.45);
        }

        body.dark-mode .faq-item,
        [data-theme="dark"] .faq-item {
            border-color: rgba(96, 165, 250, 0.22);
            background: rgba(14, 25, 36, 0.65);
        }

        .faq-soru {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            width: 100%;
            padding: 12px 14px;
            border: none;
            background: transparent;
            font: inherit;
            font-size: 14px;
            font-weight: 700;
            line-height: 1.4;
            color: #1d4ed8;
            text-align: left;
            cursor: pointer;
        }

        body.dark-mode .faq-soru,
        [data-theme="dark"] .faq-soru {
            color: #93c5fd;
        }

        .faq-soru::after {
            content: '+';
            flex-shrink: 0;
            font-size: 18px;
            font-weight: 800;
            color: #2563eb;
            line-height: 1;
        }

        body.dark-mode .faq-soru::after,
        [data-theme="dark"] .faq-soru::after {
            color: #60a5fa;
        }

        .faq-item.acik .faq-soru {
            background: rgba(37, 99, 235, 0.08);
        }

        body.dark-mode .faq-item.acik .faq-soru,
        [data-theme="dark"] .faq-item.acik .faq-soru {
            background: rgba(29, 155, 240, 0.12);
        }

        .faq-item.acik .faq-soru::after {
            content: '−';
        }

        .faq-cevap-wrap {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.28s ease;
        }

        .faq-item.acik .faq-cevap-wrap {
            max-height: 160px;
        }

        .faq-cevap {
            margin: 0;
            padding: 0 14px 12px;
            font-size: 13px;
            font-weight: 500;
            line-height: 1.55;
            color: #047857;
        }

        body.dark-mode .faq-cevap,
        [data-theme="dark"] .faq-cevap {
            color: #6ee7b7;
        }

        .faq-cevap .mail-link {
            color: #047857;
            border-bottom-color: #047857;
        }

        body.dark-mode .faq-cevap .mail-link,
        [data-theme="dark"] .faq-cevap .mail-link {
            color: #6ee7b7;
            border-bottom-color: #6ee7b7;
        }

        .modal {
            display: none;
            position: fixed;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .modal-content {
            background-color: var(--bg-main);
            border: 1px solid rgba(0, 0, 0, 0.1);
            padding: 24px;
            border-radius: 20px;
            max-width: 400px;
            width: 100%;
            position: relative;
        }

        [data-theme="dark"] .modal-content {
            border-color: rgba(255, 255, 255, 0.1);
        }

        .modal-body {
            font-size: 14px;
            color: var(--text-main);
            line-height: 1.55;
            margin: 0;
            text-align: center;
        }

        .modal-body + .modal-body {
            margin-top: 14px;
        }

        .modal-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            text-align: center;
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: var(--text-main);
        }

        .toast {
            position: fixed;
            top: 50%;
            left: 50%;
            bottom: auto;
            transform: translate(-50%, -50%) scale(0.94);
            opacity: 0;
            visibility: hidden;
            background-color: #ef4444;
            color: #ffffff;
            padding: 14px 22px;
            border-radius: 16px;
            font-size: 15px;
            font-weight: 600;
            line-height: 1.4;
            box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.35);
            transition: transform 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.2),
                opacity 0.28s ease, visibility 0.28s ease;
            z-index: 2000;
            max-width: min(340px, calc(100% - 32px));
            text-align: center;
            pointer-events: none;
        }

        .toast.show {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
            visibility: visible;
        }

        .index-share-backdrop {
            position: fixed;
            inset: 0;
            z-index: 2100;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: rgba(15, 23, 42, 0.55);
            backdrop-filter: blur(4px);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }

        .index-share-backdrop.is-open {
            opacity: 1;
            visibility: visible;
        }

        .index-share-sheet {
            position: relative;
            width: min(360px, 100%);
            padding: 22px 18px 18px;
            border-radius: 20px;
            background: var(--bg-card);
            color: var(--text-main);
            box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.35);
            transform: scale(0.94);
            transition: transform 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.2);
        }

        .index-share-backdrop.is-open .index-share-sheet {
            transform: scale(1);
        }

        .index-share-close {
            position: absolute;
            top: 10px;
            right: 12px;
            border: none;
            background: transparent;
            font-size: 20px;
            line-height: 1;
            cursor: pointer;
            color: var(--text-muted);
            padding: 4px 8px;
        }

        .index-share-title {
            margin: 0 0 16px;
            text-align: center;
            font-size: 17px;
            font-weight: 700;
        }

        .index-share-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px 8px;
        }

        .index-share-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 4px 2px;
            border: none;
            background: transparent;
            color: var(--text-main);
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
        }

        .index-share-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

        .index-share-icon svg {
            width: 26px;
            height: 26px;
            fill: currentColor;
        }

        .index-share-icon--x { background: #000; }
        .index-share-icon--wa { background: #25d366; }
        .index-share-icon--tg { background: #229ed9; }
        .index-share-icon--fb { background: #1877f2; }
        .index-share-icon--ig {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }
        .index-share-icon--copy { background: #64748b; }

        .index-durum {
            text-align: center;
            padding: 32px 16px;
            color: var(--text-muted);
            font-weight: 600;
            font-size: 15px;
        }

        .index-durum--hata {
            color: #dc2626;
        }

        [data-theme="dark"] .index-durum--hata {
            color: #f87171;
        }

        .index-load-more-wrap {
            margin-bottom: 20px;
        }

        .index-toolbar {
            margin-bottom: 14px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 0;
            border: none;
            background: none;
            box-shadow: none;
        }

        .index-arama-kutu {
            position: relative;
            display: flex;
            align-items: center;
        }

        .index-arama-input {
            width: 100%;
            padding: 13px 48px 13px 16px;
            border: 2px solid #38bdf8;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 600;
            font-family: inherit;
            color: #0c4a6e;
            background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
            box-shadow: 0 2px 12px rgba(14, 165, 233, 0.2), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .index-arama-input::placeholder {
            color: #64748b;
            opacity: 1;
            font-weight: 500;
        }

        .index-arama-input:focus {
            outline: none;
            border-color: #0284c7;
            box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.35), 0 4px 14px rgba(14, 165, 233, 0.25);
        }

        body.dark-mode .index-arama-input,
        [data-theme="dark"] .index-arama-input {
            color: #e0f2fe;
            border-color: #1d9bf0;
            background: linear-gradient(180deg, #15202b 0%, #0e1924 100%);
            box-shadow: 0 2px 14px rgba(29, 155, 240, 0.15), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
        }

        body.dark-mode .index-arama-input::placeholder,
        [data-theme="dark"] .index-arama-input::placeholder {
            color: #71767b;
        }

        .index-arama-ikon {
            position: absolute;
            right: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 10px;
            pointer-events: none;
            color: #fff;
            background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
            box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
        }

        body.dark-mode .index-arama-ikon,
        [data-theme="dark"] .index-arama-ikon {
            background: linear-gradient(135deg, #1d9bf0 0%, #1e40af 100%);
        }

        .index-arama-ikon svg {
            display: block;
            width: 18px;
            height: 18px;
        }

        .index-siralama {
            width: 100%;
            padding: 12px 40px 12px 14px;
            border: 2px solid #fbbf24;
            border-radius: 14px;
            font-size: 14px;
            font-weight: 700;
            font-family: inherit;
            color: #78350f;
            cursor: pointer;
            appearance: none;
            background-color: #fffbeb;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23b45309' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            box-shadow: 0 2px 10px rgba(245, 158, 11, 0.18), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .index-siralama:focus {
            outline: none;
            border-color: #f59e0b;
            box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.35), 0 2px 12px rgba(245, 158, 11, 0.22);
        }

        body.dark-mode .index-siralama,
        [data-theme="dark"] .index-siralama {
            color: #fde68a;
            border-color: #d97706;
            background-color: #1c1408;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23fbbf24' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
        }

        .index-arama-durum {
            margin: 0;
            padding: 6px 10px;
            font-size: 11px;
            font-weight: 700;
            color: #0369a1;
            min-height: 0;
            line-height: 1.3;
            border-radius: 8px;
            background: rgba(224, 242, 254, 0.85);
        }

        body.dark-mode .index-arama-durum,
        [data-theme="dark"] .index-arama-durum {
            color: #7dd3fc;
            background: rgba(14, 25, 36, 0.85);
        }

        .index-arama-durum:empty {
            display: none;
        }

        .index-arama-durum--hata {
            color: #b91c1c;
            background: rgba(254, 226, 226, 0.9);
        }

        body.dark-mode .index-arama-durum--hata,
        [data-theme="dark"] .index-arama-durum--hata {
            color: #fca5a5;
            background: rgba(69, 10, 10, 0.65);
        }

        /* Mobilde Günaydın kartı yok; tagline eski düzen */
        @media (max-width: 1023px) {
        .pc-hero {
            display: none !important;
        }
        .index-tagline {
            margin: 4px auto 14px;
        }
        #pcPills { display: none !important; }
        .pc-only { display: none !important; }

        body {
            padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
        }

        /* Arama: alt bardaki Ara ile açılır */
        .index-toolbar .index-arama-kutu,
        .index-toolbar > .index-arama-durum {
            display: none;
        }

        .index-toolbar.index-toolbar--arama-acik .index-arama-kutu {
            display: flex;
            position: fixed;
            left: 50%;
            transform: translateX(-50%);
            bottom: calc(70px + env(safe-area-inset-bottom, 0px));
            width: calc(100% - 24px);
            max-width: 476px;
            z-index: 290;
        }

        .index-toolbar.index-toolbar--arama-acik > .index-arama-durum:not(:empty) {
            display: block;
            position: fixed;
            left: 50%;
            transform: translateX(-50%);
            bottom: calc(130px + env(safe-area-inset-bottom, 0px));
            width: calc(100% - 24px);
            max-width: 476px;
            z-index: 290;
            margin: 0;
        }
        }

        .mobile-only { display: block; }

        @media (min-width: 1024px) {
            .mobile-only { display: none !important; }
        }

        /* Mobil alt bar — gri panel, parlatılmış butonlar (sistem nav’dan ayrılsın) */
        .index-altbar {
            position: fixed;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 100%;
            max-width: 500px;
            z-index: 280;
            display: grid;
            grid-template-columns: 1fr 1.15fr 1fr;
            align-items: end;
            gap: 8px;
            padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
            background: linear-gradient(180deg, #eceef2 0%, #e4e7ec 100%);
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 16px 16px 0 0;
            box-shadow:
                0 -1px 0 rgba(255, 255, 255, 0.85) inset,
                0 -8px 28px rgba(15, 23, 42, 0.1);
        }

        body.dark-mode .index-altbar,
        [data-theme="dark"] .index-altbar {
            background: linear-gradient(180deg, #1c2128 0%, #151a20 100%);
            border-top-color: rgba(255, 255, 255, 0.08);
            box-shadow:
                0 -1px 0 rgba(255, 255, 255, 0.06) inset,
                0 -8px 32px rgba(0, 0, 0, 0.45);
        }

        .index-altbar-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
            min-height: 0;
            padding: 6px 4px 4px;
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
            color: #4b5563;
            font-family: inherit;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.02em;
            cursor: pointer;
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 1) inset,
                0 2px 8px rgba(15, 23, 42, 0.08),
                0 1px 2px rgba(15, 23, 42, 0.06);
            -webkit-tap-highlight-color: transparent;
        }

        body.dark-mode .index-altbar-item,
        [data-theme="dark"] .index-altbar-item {
            background: linear-gradient(180deg, #2a3038 0%, #222830 100%);
            border-color: rgba(255, 255, 255, 0.1);
            color: #9ca3af;
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.08) inset,
                0 2px 10px rgba(0, 0, 0, 0.35);
        }

        .index-altbar-item:active {
            transform: scale(0.97);
            box-shadow: 0 1px 4px rgba(15, 23, 42, 0.1);
        }

        .index-altbar-ikon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 8px;
            color: inherit;
            background: transparent;
        }

        body.dark-mode .index-altbar-ikon,
        [data-theme="dark"] .index-altbar-ikon {
            background: transparent;
            color: inherit;
        }

        .index-altbar-ikon svg {
            display: block;
            width: 17px;
            height: 17px;
        }

        .index-altbar-ikon--emoji {
            font-size: 20px;
            line-height: 1;
        }

        .index-altbar-metin {
            line-height: 1.1;
            white-space: nowrap;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        #indexAltbarDun .index-altbar-metin {
            font-size: 9px;
            letter-spacing: 0;
        }

        .index-altbar-item--orta {
            padding: 6px 4px 5px;
            border-color: rgba(124, 58, 237, 0.35);
            background: linear-gradient(180deg, #faf5ff 0%, #f3e8ff 100%);
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 1) inset,
                0 3px 12px rgba(91, 33, 182, 0.18),
                0 2px 6px rgba(15, 23, 42, 0.06);
        }

        body.dark-mode .index-altbar-item--orta,
        [data-theme="dark"] .index-altbar-item--orta {
            background: linear-gradient(180deg, #2d2640 0%, #252038 100%);
            border-color: rgba(167, 139, 250, 0.35);
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.1) inset,
                0 3px 14px rgba(91, 33, 182, 0.35);
        }

        .index-altbar-item--orta .index-altbar-metin {
            color: var(--brand-purple-dark);
            font-size: 10px;
            font-weight: 900;
        }

        body.dark-mode .index-altbar-item--orta .index-altbar-metin,
        [data-theme="dark"] .index-altbar-item--orta .index-altbar-metin {
            color: #c4b5fd;
        }

        .index-altbar-ikon--orta {
            width: 32px;
            height: 32px;
            margin-top: 0;
            border-radius: 10px;
            color: #fff;
            background: linear-gradient(145deg, #8b5cf6 0%, #6d28d9 100%);
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.35) inset,
                0 2px 8px rgba(91, 33, 182, 0.45);
        }

        body.dark-mode .index-altbar-ikon--orta,
        [data-theme="dark"] .index-altbar-ikon--orta {
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.2) inset,
                0 2px 10px rgba(0, 0, 0, 0.4);
        }

        .index-altbar-ikon--orta svg {
            width: 18px;
            height: 18px;
        }

        .index-altbar-item--orta:active {
            transform: scale(0.97);
        }

        .index-altbar-item--orta:active .index-altbar-ikon--orta {
            transform: none;
        }
