:root {
            --primary-dark: #1a1a2e;
            --primary-accent: #dc2626;
            --secondary-accent: #3b82f6;
            --text-light: #f8fafc;
            --text-muted: #cbd5e1;
            --bg-card: #22223d;
            --border-color: #37376e;
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-accent);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, var(--primary-dark), #16213e);
            border-bottom: 2px solid var(--primary-accent);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #dc2626, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-accent);
            transition: var(--transition);
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--bg-card);
            flex-direction: column;
            padding: 1rem;
            border-top: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 0.8rem 0;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--text-light);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-area {
            background: var(--bg-card);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .widget {
            background: var(--bg-card);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--text-light);
            line-height: 1.2;
            border-left: 5px solid var(--primary-accent);
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem 0;
            color: var(--text-light);
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 1.6rem;
            margin: 2rem 0 1rem 0;
            color: var(--text-muted);
        }
        h4 {
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem 0;
            color: var(--secondary-accent);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }
        .highlight {
            background: rgba(220, 38, 38, 0.1);
            border-left: 4px solid var(--primary-accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 2rem 0;
            border: 3px solid var(--border-color);
        }
        .related-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .link-card {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 1rem;
            transition: var(--transition);
        }
        .link-card:hover {
            transform: translateY(-5px);
            border-color: var(--secondary-accent);
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: rgba(255,255,255,0.05);
            color: var(--text-light);
            font-size: 1rem;
        }
        button, .btn {
            background: linear-gradient(to right, var(--primary-accent), #ef4444);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #b91c1c, var(--primary-accent));
            transform: scale(1.03);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #fbbf24;
            cursor: pointer;
        }
        .update-time {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-align: right;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed var(--border-color);
        }
        .site-footer {
            background: #0f172a;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 2px solid var(--primary-accent);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
            padding: 0.5rem;
            background: rgba(255,255,255,0.03);
            border-radius: 6px;
        }
        .copyright {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .article-area { padding: 1.5rem; }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            .related-links { grid-template-columns: 1fr; }
        }
