        :root {
            --primary: #FF6B00; 
            --primary-dark: #CC5500;
            --secondary: #1A1A2E; 
            --accent: #00B4D8; 
            --light: #F8F9FA;
            --dark: #212529;
            --gray: #6C757D;
            --success: #28A745;
            --warning: #FFC107;
            --danger: #DC3545;
            --radius: 8px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: #f5f5f5;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul {
            list-style: none;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            border-left: 5px solid var(--primary);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: clamp(1.5rem, 3vw, 1.9rem);
            color: var(--primary-dark);
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--accent);
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--gray);
        }
        .highlight {
            background-color: rgba(255, 107, 0, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .site-header {
            background-color: var(--secondary);
            color: var(--light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
        }
        .logo span {
            color: var(--accent);
        }
        .main-nav ul {
            display: flex;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--primary);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--light);
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--light);
            padding: 1rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid #dee2e6;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .search-widget {
            background: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
            outline: none;
        }
        .search-form input:focus {
            border-color: var(--primary);
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--primary-dark);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
            color: var(--gray);
            font-size: 0.9rem;
        }
        .author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .author img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }
        .article-image {
            margin: 2rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .article-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.5rem;
            color: var(--gray);
            background-color: #f9f9f9;
        }
        .content-section {
            margin-bottom: 2.5rem;
        }
        .info-box {
            background-color: #e7f4ff;
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .info-box.warning {
            background-color: #fff3cd;
            border-left-color: var(--warning);
        }
        .tip-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .tip-list li::before {
            content: '🎯';
            position: absolute;
            left: 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
        }
        .data-table th, .data-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .data-table th {
            background-color: var(--secondary);
            color: white;
            font-weight: 600;
        }
        .data-table tr:hover {
            background-color: #f9f9f9;
        }
        .data-table .tier-S { background-color: rgba(40, 167, 69, 0.1); }
        .data-table .tier-A { background-color: rgba(0, 180, 216, 0.1); }
        .data-table .tier-B { background-color: rgba(255, 193, 7, 0.1); }
        .rating-section, .comments-section {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-top: 2rem;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            direction: rtl; 
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--warning);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
        }
        .form-control {
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            align-self: flex-start;
        }
        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }
        .btn i {
            margin-right: 8px;
        }
        .user-comment {
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: var(--radius);
            margin-top: 1.5rem;
            border-left: 4px solid var(--accent);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .comment-author {
            font-weight: 700;
            color: var(--secondary);
        }
        .site-footer {
            background-color: var(--secondary);
            color: var(--light);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: var(--accent);
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 1.5rem 0;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }
        .friend-links a {
            background-color: var(--primary);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .friend-links a:hover {
            background-color: var(--accent);
            transform: scale(1.05);
        }
        .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: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--secondary);
                padding: 1rem;
                transform: translateY(-150%);
                transition: transform 0.4s ease;
                box-shadow: var(--shadow);
                z-index: 999;
            }
            .main-nav.active {
                transform: translateY(0);
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .main-nav a {
                display: block;
                padding: 0.8rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .main-content, .sidebar-widget, .rating-section, .comments-section {
                padding: 1.5rem;
            }
            .content-wrapper {
                gap: 1.5rem;
            }
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .friend-links {
                justify-content: center;
            }
        }
        .text-center { text-align: center; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .emoji { font-size: 1.2em; }
