:root {
            --primary-dark: #1a2a3a;
            --primary-accent: #0c6;
            --secondary-accent: #ff9a00;
            --text-light: #f0f8ff;
            --text-gray: #b0bec5;
            --bg-section: #0d1b2a;
            --bg-card: #16293d;
            --border-color: #2a3f5f;
            --shadow: 0 8px 24px rgba(0, 50, 100, 0.3);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0a1929 0%, #152642 100%);
            color: var(--text-light);
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-accent);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--secondary-accent);
            text-shadow: 0 0 8px rgba(255, 154, 0, 0.4);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 25, 41, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Palatino Linotype', 'Book Antiqua', serif;
            font-size: 2.4rem;
            font-weight: 700;
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 6px;
        }
        .nav-desktop a:hover {
            background: rgba(12, 102, 102, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-light);
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--bg-card);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 20px;
            border-top: 1px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb {
            padding: 15px 0;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .main-content {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 40px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            line-height: 1.2;
            background: linear-gradient(90deg, #fff, var(--primary-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        h2 {
            font-size: 2.2rem;
            margin: 45px 0 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--primary-accent);
            color: #e3f2fd;
        }
        h3 {
            font-size: 1.7rem;
            margin: 35px 0 15px;
            color: #bbdefb;
        }
        h4 {
            font-size: 1.3rem;
            margin: 25px 0 12px;
            color: #90caf9;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--text-gray);
            border-left: 4px solid var(--secondary-accent);
            padding-left: 20px;
            margin-bottom: 30px;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(12,102,102,0.2), transparent);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--secondary-accent);
            margin: 25px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-accent);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--primary-accent);
            margin-bottom: 15px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 30px auto;
            display: block;
            border: 2px solid var(--border-color);
            box-shadow: var(--shadow);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            margin-top: -20px;
            margin-bottom: 30px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: var(--bg-card);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid var(--border-color);
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 14px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: rgba(255,255,255,0.08);
            color: var(--text-light);
            font-size: 1rem;
            width: 100%;
        }
        button {
            background: linear-gradient(90deg, var(--primary-accent), #00a86b);
            color: white;
            border: none;
            padding: 16px 24px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        button:hover {
            background: linear-gradient(90deg, #00a86b, var(--primary-accent));
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(12, 102, 102, 0.4);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffd700;
            margin: 10px 0;
        }
        .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.3);
        }
        .site-footer {
            background: var(--primary-dark);
            border-top: 1px solid var(--border-color);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        friend-link {
            display: block;
            padding: 12px 0;
            border-bottom: 1px dashed var(--border-color);
            color: var(--text-gray);
        }
        friend-link a {
            color: var(--text-gray);
        }
        friend-link a:hover {
            color: var(--primary-accent);
            padding-left: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .update-time {
            background: rgba(255, 154, 0, 0.1);
            padding: 12px 20px;
            border-radius: 8px;
            margin: 30px 0;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--secondary-accent);
            font-weight: 600;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .main-content, .footer-content {
                grid-template-columns: 1fr;
            }
            article {
                padding: 25px;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .widget {
            animation: fadeIn 0.8s ease-out;
        }
