﻿:root {
            --primary: rgb(189,147,249);
            --primary-hover: rgba(189,147,249, 0.8);
            --bg-dark: #0c0a14;
            --bg-card: #161224;
            --bg-light: #f7f6fb;
            --text-light: #f8f8f2;
            --text-dark: #2d2a3a;
            --text-muted: #8b869c;
            --border: rgba(189,147,249, 0.15);
            --glass: rgba(22, 18, 36, 0.7);
            --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: var(--glass);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        .logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        .logo img {
            display: block;
            height: 40px;
            width: auto;
            max-width: 160px;
            object-fit: contain;
            flex-shrink: 0;
        }
        .logo span {
            display: inline-block;
            font-size: 18px;
            font-weight: 800;
            line-height: 1;
            color: var(--primary);
            white-space: nowrap;
        }
        .nav-menu {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .nav-menu a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-muted);
        }
        .nav-menu a:hover, .nav-menu a.active {
            color: var(--primary);
        }
        .btn-cta {
            background: var(--primary);
            color: var(--bg-dark) !important;
            font-weight: bold;
            padding: 10px 20px;
            border-radius: 4px;
            box-shadow: 0 4px 15px rgba(189,147,249, 0.4);
        }
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(189,147,249, 0.6);
        }
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 110;
        }
        .menu-toggle span {
            display: block;
            width: 25px;
            height: 2px;
            background-color: var(--text-light);
            transition: all 0.3s ease;
        }
        
        .drawer {
            position: fixed;
            top: 0;
            left: -100%;
            width: 300px;
            height: 100vh;
            background: var(--bg-card);
            z-index: 150;
            transition: all 0.4s cubic-bezier(0.77,0.2,0.05,1);
            padding: 40px 30px;
            border-right: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        .drawer.active {
            left: 0;
        }
        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0,0,0,0.6);
            z-index: 140;
            display: none;
            backdrop-filter: blur(4px);
        }
        .drawer-overlay.active {
            display: block;
        }
        .drawer-close {
            align-self: flex-end;
            cursor: pointer;
            color: var(--primary);
            font-size: 24px;
        }
        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .drawer-nav a {
            font-size: 18px;
            font-weight: 500;
            color: var(--text-light);
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        
        .inner-header {
            padding: 140px 0 60px;
            background: linear-gradient(180deg, rgba(22, 18, 36, 0.8) 0%, var(--bg-dark) 100%);
            border-bottom: 1px solid var(--border);
        }
        .breadcrumbs {
            display: flex;
            gap: 10px;
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 15px;
        }
        .breadcrumbs a:hover {
            color: var(--primary);
        }
        .inner-title h1 {
            font-size: 32px;
            font-weight: 800;
        }
        
        .list-wrapper {
            padding: 80px 0;
        }
        .grid-layout {
            display: grid;
            grid-template-columns: 8fr 4fr;
            gap: 40px;
        }
        .articles-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .list-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 4fr 8fr;
            gap: 20px;
            transition: all 0.3s ease;
        }
        .list-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.25);
        }
        .list-card-img {
            height: 100%;
            min-height: 200px;
            overflow: hidden;
        }
        .list-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .list-card-body {
            padding: 25px 25px 25px 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .list-card-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }
        .list-card-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .list-card-title:hover {
            color: var(--primary);
        }
        .list-card-desc {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .list-card-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        .sidebar-widget {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 25px;
        }
        .widget-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border);
            color: var(--primary);
        }
        
        .pagination-container {
            margin-top: 50px;
            display: flex;
            justify-content: center;
        }
        .pagination {
            display: flex;
            gap: 10px;
            list-style: none;
        }
        .pagination a, .pagination span {
            padding: 10px 18px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
        }
        .pagination a:hover, .pagination .active {
            background: var(--primary);
            color: var(--bg-dark);
            border-color: var(--primary);
        }
        
        footer {
            background: var(--bg-dark);
            border-top: 1px solid var(--border);
            padding: 80px 0 30px;
            font-size: 14px;
            color: var(--text-muted);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        .footer-brand .logo {
            margin-bottom: 20px;
        }
        .footer-brand p {
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .footer-title {
            color: var(--text-light);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        @media (max-width: 992px) {
            .grid-layout {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            .menu-toggle {
                display: flex;
            }
            .list-card {
                grid-template-columns: 1fr;
            }
            .list-card-body {
                padding: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }