:root {
            --primary: #ff2d6f;
            --primary-dark: #c61d58;
            --accent: #4dd0e1;
            --neutral: #f3f5f7;
            --ink: #1f1f29;
            --muted: #5a5a6d;
            --border: #e2e4ec;
            --shadow: rgba(26, 24, 36, 0.08);
            --card-shadow: rgba(26, 24, 36, 0.14);
        }

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

        body {
            font-family: "Inter", "Segoe UI", Roboto, sans-serif;
            background: var(--neutral);
            color: var(--ink);
            line-height: 1.6;
            min-height: 100vh;
        }

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

        /* Header */
        header {
            background: #ffffff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px var(--shadow);
        }

        .nav {
            max-width: 1440px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary);
            letter-spacing: -0.02em;
        }

        .brand i {
            font-size: 1.2rem;
            color: var(--ink);
            margin: 0 0.2rem;
        }

        .brand span {
            color: var(--ink);
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--ink);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }

        .nav-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: var(--muted);
        }

        /* Page Container */
        .page {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem 4rem;
        }

        /* Page Header */
        .page-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .page-header h1 {
            font-size: 2.5rem;
            color: var(--ink);
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .page-header p {
            font-size: 1.1rem;
            color: var(--muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Articles Grid */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        /* Article Card */
        .article-card {
            background: #ffffff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 22px 40px var(--shadow);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 28px 50px var(--card-shadow);
        }

        .article-thumbnail {
            height: 200px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            opacity: 0.9;
        }

        .article-body {
            padding: 1.8rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .article-date {
            color: var(--muted);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.8rem;
        }

        .article-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .article-card:hover .article-title {
            color: var(--primary);
        }

        .article-excerpt {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex: 1;
        }

        .article-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
            transition: gap 0.2s ease;
        }

        .article-link:hover {
            gap: 0.8rem;
        }

        /* Single Article */
        .article-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--border);
        }

        .article-header h1 {
            font-size: 2.8rem;
            color: var(--ink);
            margin-bottom: 1rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .article-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            color: var(--muted);
            font-size: 0.95rem;
        }

        .article-content {
            background: #ffffff;
            border-radius: 18px;
            padding: 3rem;
            box-shadow: 0 22px 40px var(--shadow);
            margin-bottom: 2rem;
        }

        .article-content h2 {
            font-size: 1.8rem;
            color: var(--ink);
            margin: 2rem 0 1rem;
            font-weight: 700;
        }

        .article-content h3 {
            font-size: 1.4rem;
            color: var(--ink);
            margin: 1.5rem 0 0.8rem;
            font-weight: 600;
        }

        .article-content p {
            margin-bottom: 1.2rem;
            line-height: 1.8;
            color: #3a3a4a;
        }

        .article-content ul,
        .article-content ol {
            margin: 1rem 0 1.5rem 2rem;
            line-height: 1.8;
        }

        .article-content a {
            color: var(--primary);
            text-decoration: underline;
        }

        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 1.5rem 0;
        }

        .article-content blockquote {
            border-left: 4px solid var(--primary);
            padding-left: 1.5rem;
            margin: 1.5rem 0;
            font-style: italic;
            color: var(--muted);
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 2rem;
            transition: gap 0.2s ease;
        }

        .back-link:hover {
            gap: 0.8rem;
        }

        /* Pagination */
        .pagination {
            margin-top: 3rem;
            display: flex;
            justify-content: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }

        .pagination a,
        .pagination span {
            padding: 0.65rem 1.1rem;
            border-radius: 10px;
            border: 1px solid var(--border);
            background: #fff;
            color: var(--muted);
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.2s ease;
        }

        .pagination a:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .pagination .current {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

        .pagination .disabled {
            color: #c7c7d3;
            cursor: not-allowed;
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
            background: #ffffff;
            border-radius: 18px;
            box-shadow: 0 22px 40px var(--shadow);
        }

        .empty-state i {
            font-size: 3rem;
            color: var(--muted);
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        .empty-state h3 {
            color: var(--ink);
            margin-bottom: 0.5rem;
        }

        /* Footer */
        footer {
            background: #0f0f17;
            color: rgba(255,255,255,0.68);
            padding: 3.5rem 2rem 3rem;
            margin-top: 4rem;
        }

        .footer__inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            gap: 1.5rem;
        }

        .footer__top {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: space-between;
            align-items: center;
            color: rgba(255,255,255,0.78);
        }

        .footer__meta {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            font-size: 0.9rem;
        }

        .footer__meta a {
            color: rgba(77,208,225,0.9);
        }

        .footer__meta a:hover {
            text-decoration: underline;
        }

        .legal {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.45);
            line-height: 1.5;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .articles-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .article-header h1 {
                font-size: 2rem;
            }

            .article-content {
                padding: 2rem 1.5rem;
            }

            .nav {
                justify-content: center;
                text-align: center;
            }

            .nav-left {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }

            .nav-meta {
                width: 100%;
                justify-content: center;
            }

            .page {
                padding: 2rem 1rem 3rem;
            }
        }.white {
                color: white!important;
            }