        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary-blue: #2a3b8f;
            --secondary-gold: #f5b041;
            --accent-red: #e74c3c;
            --dark-bg: #0f1419;
            --light-bg: #f8f9fa;
            --text-dark: #333;
            --text-light: #ecf0f1;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --container-max: 1200px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: var(--primary-blue); text-decoration: none; transition: var(--transition); }
        a:hover { color: var(--accent-red); }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 20px; }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { background: linear-gradient(120deg, var(--secondary-gold) 0%, transparent 100%); padding: 0 4px; }
        .section-padding { padding: 4rem 0; }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary-blue), #4a5fc1);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(42, 59, 143, 0.3);
            background: linear-gradient(to right, #4a5fc1, var(--primary-blue));
            color: white;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .site-header {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(45deg, var(--secondary-gold), #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover { transform: scale(1.05); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-gold);
            transition: width 0.3s;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #555; }
        .breadcrumb a:hover { color: var(--primary-blue); }
        .breadcrumb .separator { margin: 0 10px; color: #999; }
        .hero {
            background: linear-gradient(rgba(15, 20, 25, 0.85), rgba(15, 20, 25, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 5rem 0;
            text-align: center;
            border-bottom: 5px solid var(--secondary-gold);
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #ddd;
        }
        .main-content {
            flex: 1;
            padding: 2rem 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            align-items: start;
        }
        article {
            background: white;
            border-radius: var(--border-radius);
            padding: 3rem;
            box-shadow: var(--shadow);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid #eee;
            padding-bottom: 1rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
            color: #666;
        }
        .update-time { color: var(--accent-red); font-weight: 600; }
        h1, h2, h3, h4 {
            color: var(--primary-blue);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 { font-size: 2.8rem; border-left: 6px solid var(--secondary-gold); padding-left: 1rem; }
        h2 { font-size: 2.2rem; border-bottom: 3px solid #eee; padding-bottom: 0.5rem; }
        h3 { font-size: 1.8rem; }
        h4 { font-size: 1.4rem; color: #555; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        .intro-para { font-size: 1.2rem; font-weight: 500; color: #444; }
        ul, ol { margin-left: 2rem; margin-bottom: 1.5rem; }
        blockquote {
            border-left: 5px solid var(--secondary-gold);
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            background: #fcf8e3;
            font-style: italic;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .featured-img {
            width: 100%;
            border-radius: var(--border-radius);
            margin: 2rem auto;
            border: 5px solid #ddd;
            box-shadow: var(--shadow);
        }
        .content-link {
            color: var(--accent-red);
            border-bottom: 1px dashed var(--accent-red);
            font-weight: 600;
        }
        .content-link:hover { border-bottom-style: solid; }
        aside {
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.8rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: var(--dark-bg);
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #eee;
        }
        .search-form { display: flex; }
        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-btn {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover { background: #1a2a7a; }
        .quick-links ul { list-style: none; margin: 0; padding: 0; }
        .quick-links li { margin-bottom: 0.8rem; }
        .quick-links a {
            display: block;
            padding: 0.8rem 1rem;
            background: #f8f9fa;
            border-radius: 5px;
            border-left: 4px solid var(--primary-blue);
        }
        .quick-links a:hover {
            background: #e9ecef;
            border-left-color: var(--accent-red);
            transform: translateX(5px);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffd700;
        }
        .star { cursor: pointer; transition: var(--transition); }
        .star:hover { transform: scale(1.2); }
        .score-form input, .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-family: inherit;
        }
        .score-form button, .comment-form button {
            width: 100%;
        }
        .comments-section { margin-top: 4rem; }
        .comment {
            background: #f9f9f9;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 1.5rem;
            border-left: 4px solid #ccc;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            color: #666;
        }
        .comment-author { font-weight: bold; color: var(--primary-blue); }
        .site-footer {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-widget h4 {
            color: var(--secondary-gold);
            margin-top: 0;
            font-size: 1.3rem;
            border-bottom: 2px solid #333;
            padding-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            background: #1a1f2e;
            padding: 1rem;
            margin: 0.8rem 0;
            border-radius: 5px;
            text-align: center;
            font-weight: 600;
            transition: var(--transition);
        }
        friend-link:hover {
            background: var(--primary-blue);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
            aside { position: static; }
            .hero h1 { font-size: 2.5rem; }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.9rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--dark-bg);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
                padding: 0;
                z-index: 999;
            }
            .main-nav.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
            .main-nav ul {
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
            }
            .main-nav a { display: block; padding: 1rem; }
            .hero { padding: 3rem 0; }
            .hero h1 { font-size: 2rem; }
            article { padding: 2rem; }
            .section-padding { padding: 2.5rem 0; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            .hero h1 { font-size: 1.8rem; }
            .hero p { font-size: 1.1rem; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
        }
