:root {
            --primary-dark: #0a1428;
            --primary-blue: #005a82;
            --accent-gold: #c8aa6e;
            --accent-red: #c6423a;
            --light-bg: #f0f2f5;
            --text-primary: #1a1a1a;
            --text-secondary: #4a5568;
            --border-color: #e2e8f0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 8px;
            --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(--light-bg);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--primary-blue);
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-red);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2b4d 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo span {
            color: var(--accent-gold);
            font-style: italic;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .main-nav {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: white;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--primary-blue);
        }
        .breadcrumb span {
            margin: 0 5px;
            color: #aaa;
        }
        .search-section {
            background: white;
            padding: 2rem;
            margin: 2rem 0;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--border-color);
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--primary-blue);
        }
        .search-btn {
            background: linear-gradient(to right, var(--primary-blue), #0086b3);
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: linear-gradient(to right, #004a6d, #006992);
        }
        .main-article {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        .article-content {
            background: white;
            padding: 3rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: var(--text-secondary);
            font-size: 0.95rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .update-time {
            color: var(--accent-red);
            font-weight: 600;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-dark);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary-blue);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--text-primary);
        }
        .emphasis {
            background-color: #f8f9fa;
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            font-weight: 500;
        }
        .img-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.01);
        }
        .img-caption {
            margin-top: 0.8rem;
            font-size: 0.95rem;
            color: var(--text-secondary);
            font-style: italic;
        }
        .link-highlight {
            background-color: rgba(0, 90, 130, 0.08);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .link-highlight:hover {
            background-color: rgba(0, 90, 130, 0.15);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--primary-dark);
            margin-bottom: 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid var(--accent-gold);
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.9rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .related-links li::before {
            content: '➤';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
        }
        .status-indicator {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            background-color: #e8f4fc;
            border-radius: var(--radius);
            margin-bottom: 1rem;
        }
        .status-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #2ecc71;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        .interactive-section {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 3rem 0;
        }
        .section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            color: var(--primary-dark);
            margin-bottom: 2rem;
        }
        .section-title i {
            color: var(--accent-gold);
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffc107;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-input, .form-textarea {
            padding: 0.9rem;
            border: 2px solid var(--border-color);
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            border-color: var(--primary-blue);
            outline: none;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-blue), #0086b3);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--radius);
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            justify-self: start;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #004a6d, #006992);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 90, 130, 0.2);
        }
        .site-footer {
            background: var(--primary-dark);
            color: white;
            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-section h3 {
            color: var(--accent-gold);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            padding: 1.2rem;
            border-radius: var(--radius);
            margin: 1rem 0;
            border-left: 4px solid var(--accent-gold);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .main-article {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--primary-dark);
                padding: 1.5rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .article-content {
                padding: 2rem;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: var(--radius);
                margin-bottom: 10px;
            }
            .search-btn {
                border-radius: var(--radius);
                padding: 0.9rem;
            }
        }
