        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        :root {
            --bg: #070711;
            --surface: rgba(255, 255, 255, .03);
            --card: rgba(15, 15, 30, .85);
            --border: rgba(255, 255, 255, .06);
            --accent: #FF8C00;
            --accent2: #5B9BD5;
            --text: #e2e8f0;
            --muted: #7a8599;
            --gradient: linear-gradient(135deg, #FF8C00, #5B9BD5)
        }

        body {
            background: var(--bg);
            font-family: 'Inter', system-ui, sans-serif;
            color: var(--text);
            min-height: 100vh
        }

        /* Header */
        .site-header {
            background: rgba(7, 7, 17, .95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 50
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between
        }

                .logo {
            text-decoration: none;
            color: var(--text);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 10px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(10,14,26,.74), rgba(15,23,42,.56));
            border: 1px solid rgba(245,158,11,.14);
            box-shadow: 0 12px 30px rgba(2,6,23,.22);
            backdrop-filter: blur(14px);
            max-width: 100%;
        }

        .brand-mark-shell {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(10, 20, 36, .96), rgba(16, 34, 52, .8));
            border: 1px solid rgba(56, 189, 248, .24);
            box-shadow: 0 12px 26px rgba(2, 6, 23, .28);
            flex-shrink: 0;
        }

        .blog-brand-mark {
            width: 24px;
            height: 24px;
            display: block;
        }

        .blog-brand-logotype {
            display: inline-flex;
            align-items: baseline;
            font-size: 1.26rem;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.03em;
            gap: 0;
        }

        .brand-surface-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 26px;
            padding: 0 9px;
            border-radius: 999px;
            background: rgba(245, 158, 11, .12);
            border: 1px solid rgba(245, 158, 11, .18);
            color: #fde68a;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .logo .risk {
            color: #f8fafc
        }

        .logo .asistan {
            color: #22d3ee
        }

        .header-nav {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 8px;
            flex-wrap: wrap
        }

        .header-nav a {
            color: var(--muted);
            text-decoration: none;
            margin-left: 0;
            font-size: .85rem;
            transition: color .2s;
            display: inline-flex;
            align-items: center;
            min-height: 44px;
            padding: 0 12px;
            border-radius: 10px;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent
        }

        .header-nav a:hover {
            color: var(--accent)
        }

        .header-nav .back-link {
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, .03)
        }

        @media (max-width: 768px) {
            .header-inner {
                gap: 12px;
            }

                    .logo {
            text-decoration: none;
            color: var(--text);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 10px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(10,14,26,.74), rgba(15,23,42,.56));
            border: 1px solid rgba(245,158,11,.14);
            box-shadow: 0 12px 30px rgba(2,6,23,.22);
            backdrop-filter: blur(14px);
            max-width: 100%;
        }

            .blog-wordmark {
                height: 31px;
                max-width: 150px;
            }

            .brand-surface-badge {
                min-height: 22px;
                padding: 0 7px;
                font-size: 9px;
            }

            .header-nav a {
                font-size: .92rem;
                padding: 0 10px;
                min-height: 44px;
            }
        }

        /* Hero */
        .blog-hero {
            position: relative;
            min-height: 430px;
            display: flex;
            align-items: end;
            padding: 84px 0 38px;
            overflow: hidden;
            border-bottom: 1px solid rgba(91,155,213,.18);
            background: linear-gradient(180deg, rgba(7,7,17,.58), #070711 92%);
        }

        .blog-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: var(--hero-cover);
            background-size: cover;
            background-position: center;
            opacity: .34;
            filter: saturate(1.08) contrast(1.06);
            transform: scale(1.02);
        }

        .blog-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(7,7,17,.94), rgba(7,7,17,.55) 48%, rgba(7,7,17,.9)),
                linear-gradient(0deg, #070711 0%, rgba(7,7,17,.12) 50%, rgba(7,7,17,.82) 100%);
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 330px;
            gap: 34px;
            align-items: end;
            width: 100%;
        }

        .hero-kicker {
            color: var(--accent);
            font-size: .76rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .12em;
            margin-bottom: 12px;
        }

        .blog-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #fff;
            max-width: 760px;
        }

        .blog-hero p {
            color: rgba(226,232,240,.86);
            font-size: 1.04rem;
            max-width: 720px;
            line-height: 1.75;
            margin: 0
        }

        .hero-panel {
            border: 1px solid rgba(255,255,255,.1);
            background: rgba(7,7,17,.7);
            backdrop-filter: blur(16px);
            border-radius: 8px;
            padding: 18px;
            box-shadow: 0 22px 58px rgba(0,0,0,.34);
        }

        .hero-panel b {
            color: #fff;
            display: block;
            font-size: 1rem;
            margin-bottom: 8px;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 16px;
        }

        .hero-stats span {
            border: 1px solid rgba(255,255,255,.1);
            border-radius: 8px;
            padding: 10px;
            color: rgba(226,232,240,.72);
            font-size: .78rem;
        }

        .hero-stats strong {
            display: block;
            color: var(--accent2);
            font-size: 1.15rem;
            margin-bottom: 2px;
        }

        @media (max-width: 820px) {
            .blog-hero {
                min-height: 520px;
                padding: 72px 0 28px;
            }

            .hero-inner {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            .blog-hero h1 {
                font-size: 2.45rem;
            }

            .hero-panel {
                padding: 14px;
            }

            .hero-stats {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        /* Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 24px;
            padding: 34px 0 56px
        }

        /* Card */
        .blog-card {
            background: linear-gradient(180deg, rgba(15,15,30,.92), rgba(10,14,26,.9));
            border: 1px solid rgba(255,255,255,.08);
            border-radius: 8px;
            overflow: hidden;
            transition: all .3s;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column
        }

        .blog-card:hover {
            border-color: rgba(255,140,0,.55);
            transform: translateY(-4px);
            box-shadow: 0 18px 52px rgba(255, 140, 0, .13), 0 1px 0 rgba(255,255,255,.08) inset
        }

        .blog-card .cover {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            background: rgba(255,255,255,.04)
        }

        .blog-card .body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column
        }

        .blog-card .category {
            font-size: .7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            margin-bottom: 8px
        }

        .blog-card .title {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 8px
        }

        .blog-card .excerpt {
            color: var(--muted);
            font-size: .85rem;
            line-height: 1.6;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden
        }

        .blog-card .meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 16px;
            padding-top: 12px;
            border-top: 1px solid var(--border);
            font-size: .75rem;
            color: var(--muted)
        }

        .blog-card .meta .read-time {
            margin-left: auto;
            color: var(--accent2)
        }

        .medya-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
        .medya-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 3px 8px;
            border-radius: 6px;
            font-size: .72rem;
            font-weight: 600;
            background: rgba(91,155,213,.1);
            border: 1px solid rgba(91,155,213,.18);
            color: #93c5fd;
        }

        .load-more-wrap {
            display: flex;
            justify-content: center;
            padding: 0 0 64px;
        }

        .load-more-btn {
            appearance: none;
            border: 1px solid rgba(255, 140, 0, .42);
            background: linear-gradient(135deg, rgba(255,140,0,.14), rgba(91,155,213,.12));
            color: var(--text);
            border-radius: 8px;
            padding: 12px 18px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 14px 36px rgba(0,0,0,.24);
        }

        .load-more-btn:hover {
            border-color: rgba(255, 140, 0, .7);
            transform: translateY(-1px);
        }

        /* Footer */
        .blog-footer {
            border-top: 1px solid var(--border);
            padding: 40px 0;
            text-align: center;
            color: var(--muted);
            font-size: .8rem;
            margin-top: 40px
        }

        /* Loading */
        .skeleton {
            background: linear-gradient(90deg, rgba(255, 255, 255, .02) 25%, rgba(255, 255, 255, .06) 50%, rgba(255, 255, 255, .02) 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            border-radius: 8px
        }

        @keyframes shimmer {
            0% {
                background-position: 200% 0
            }

            100% {
                background-position: -200% 0
            }
        }

        .empty-state {
            text-align: center;
            padding: 80px 20px;
            color: var(--muted)
        }

        .empty-state .icon {
            font-size: 3rem;
            margin-bottom: 16px
        }
