        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #1a5276;
            --secondary-color: #e74c3c;
            --accent-color: #f39c12;
            --dark-bg: #2c3e50;
            --light-bg: #ecf0f1;
            --text-dark: #2c3e50;
            --text-light: #f8f9fa;
            --border-radius: 8px;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--primary-color);
            color: white;
            border-radius: var(--border-radius);
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .section-title {
            font-size: 2.2rem;
            margin-bottom: 2rem;
            color: var(--dark-bg);
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            border-radius: 2px;
        }
        .site-header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-color);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-color);
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: white;
            padding: 20px;
            box-shadow: var(--shadow);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }
        .breadcrumb {
            background-color: var(--light-bg);
            padding: 15px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #666;
        }
        .breadcrumb span {
            color: #999;
        }
        .search-section {
            background: linear-gradient(135deg, var(--primary-color), #2e86c1);
            padding: 40px 20px;
            text-align: center;
            color: white;
        }
        .search-form {
            max-width: 600px;
            margin: 20px auto 0;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-form input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .search-form button:hover {
            background-color: #e67e22;
        }
        .article-content {
            background-color: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: 30px auto;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
            color: #666;
            font-size: 0.95rem;
        }
        .article-meta .author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .article-body {
            font-size: 1.1rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-body h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1.2rem;
            color: var(--dark-bg);
        }
        .article-body h3 {
            font-size: 1.4rem;
            margin: 2rem 0 1rem;
            color: var(--primary-color);
        }
        .article-body emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .article-body strong {
            color: var(--secondary-color);
            font-weight: 700;
        }
        .highlight-box {
            background-color: #fff9e6;
            border-left: 5px solid var(--accent-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .tier-list-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        .tier-list-table th {
            background-color: var(--primary-color);
            color: white;
            padding: 18px;
            text-align: left;
        }
        .tier-list-table td {
            padding: 15px 18px;
            border-bottom: 1px solid #eee;
        }
        .tier-list-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .tier-list-table tr:hover {
            background-color: #e3f2fd;
        }
        .tier-s {
            color: #ff4757;
            font-weight: 800;
        }
        .tier-a {
            color: #2ed573;
            font-weight: 800;
        }
        .tier-b {
            color: #1e90ff;
            font-weight: 800;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image figcaption {
            text-align: center;
            padding: 10px;
            font-style: italic;
            color: #666;
            background-color: #f8f9fa;
        }
        .interactive-widgets {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .widget {
            background-color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #ffd43b;
        }
        .rating-stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea,
        .score-form select {
            width: 100%;
            padding: 15px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            resize: vertical;
        }
        .comment-form button,
        .score-form button {
            width: 100%;
        }
        .comments-list {
            margin-top: 20px;
        }
        .comment {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: bold;
            color: var(--primary-color);
        }
        .comment-date {
            font-size: 0.85rem;
            color: #999;
        }
        .footer-links-section {
            background-color: var(--light-bg);
            padding: 40px 20px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: white;
            padding: 20px;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .web-link a {
            font-weight: 600;
            color: var(--dark-bg);
            display: block;
            margin-bottom: 8px;
        }
        .web-link p {
            font-size: 0.9rem;
            color: #666;
        }
        .site-footer {
            background-color: var(--dark-bg);
            color: var(--text-light);
            padding: 40px 20px 20px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-about {
            flex: 1;
            min-width: 300px;
        }
        .footer-links {
            flex: 1;
            min-width: 200px;
        }
        .footer-links h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--accent-color);
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #bdc3c7;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #3a506b;
            font-size: 0.9rem;
            color: #95a5a6;
        }
        @media (max-width: 992px) {
            .section-title {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 30px;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 12px 20px;
            }
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .interactive-widgets {
                grid-template-columns: 1fr;
            }
            .footer-container {
                flex-direction: column;
            }
        }
        @media (max-width: 576px) {
            .article-content {
                padding: 20px;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: var(--border-radius);
            }
            .search-form input,
            .search-form button {
                width: 100%;
                border-radius: 0;
                padding: 15px;
            }
        }
