:root {
            --primary: #FF4655;
            --secondary: #1E1F25;
            --accent: #00C8FF;
            --light: #F5F5F5;
            --dark: #0F111A;
            --gray: #8A8D9B;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --radius: 8px;
        }
        * {
            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: #333;
            background-color: var(--light);
            max-width: 100vw;
            overflow-x: hidden;
        }
        .header {
            background-color: var(--secondary);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--accent);
        }
        .nav-desktop {
            display: flex;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .nav-desktop a:hover {
            color: var(--accent);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 80px;
            right: -100%;
            background-color: var(--dark);
            width: 280px;
            height: calc(100vh - 80px);
            padding: 2rem;
            transition: right 0.4s ease;
            z-index: 999;
            box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            right: 0;
        }
        .nav-mobile a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 1rem 0;
            border-bottom: 1px solid #333;
            font-weight: 600;
            transition: var(--transition);
        }
        .nav-mobile a:hover {
            color: var(--accent);
            padding-left: 10px;
        }
        .breadcrumb {
            background-color: #f0f0f0;
            padding: 1rem 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            color: var(--gray);
            margin: 0 8px;
        }
        .search-container {
            padding: 3rem 2rem;
            background: linear-gradient(135deg, var(--secondary) 0%, #2A2C38 100%);
            text-align: center;
            border-radius: var(--radius);
            margin: 2rem auto;
            max-width: 1200px;
            box-shadow: var(--shadow);
        }
        .search-title {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
            max-width: 700px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
            outline: none;
        }
        .search-button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-button:hover {
            background-color: #e03e4c;
        }
        .main-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        @media (max-width: 992px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 3rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .article-title {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: var(--gray);
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }
        .article-meta i {
            margin-right: 8px;
            color: var(--primary);
        }
        .intro {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 2.5rem;
            padding: 1.5rem;
            background-color: #f9f9ff;
            border-left: 4px solid var(--accent);
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        h2 {
            font-size: 2rem;
            color: var(--secondary);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 2rem 0;
            border-left: 4px solid #FFC107;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 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 #eee;
        }
        .data-table th {
            background-color: var(--secondary);
            color: white;
            font-weight: 600;
        }
        .data-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .data-table tr:hover {
            background-color: #f0f7ff;
        }
        .legend-card {
            display: flex;
            gap: 1.5rem;
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 2rem 0;
            border: 1px solid #eaeaea;
            transition: var(--transition);
        }
        .legend-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .legend-image {
            flex-shrink: 0;
            width: 120px;
            height: 120px;
            border-radius: var(--radius);
            overflow: hidden;
        }
        .legend-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .legend-card:hover .legend-image img {
            transform: scale(1.1);
        }
        .legend-info h4 {
            color: var(--secondary);
            margin-bottom: 0.5rem;
            font-size: 1.4rem;
        }
        .play-rate {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-weight: 600;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .sidebar {
            background-color: white;
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-title {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        .sidebar-list {
            list-style: none;
        }
        .sidebar-list li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed #eee;
        }
        .sidebar-list a {
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }
        .sidebar-list a:hover {
            color: var(--primary);
            padding-left: 8px;
        }
        .sidebar-list i {
            margin-right: 10px;
            color: var(--accent);
        }
        .interactive-section {
            background-color: white;
            padding: 3rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 3rem auto;
            max-width: 1400px;
        }
        .rating-container, .comment-container {
            margin-bottom: 3rem;
        }
        .rating-title, .comment-title {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-title i, .comment-title i {
            color: #FFC107;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 1.5rem;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active, .star:hover {
            color: #FFC107;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 800px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: var(--dark);
        }
        .form-input, .form-textarea {
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.1);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            align-self: flex-start;
        }
        .submit-button:hover {
            background-color: #e03e4c;
            transform: translateY(-3px);
        }
        .footer-links {
            background-color: #2A2C38;
            padding: 3rem 2rem;
            margin-top: 3rem;
        }
        .footer-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
            line-height: 1.5;
        }
        .web-link a:hover {
            color: var(--accent);
        }
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 2rem;
            text-align: center;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary);
        }
        .copyright {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .header {
                padding: 1rem;
            }
            .main-container, .interactive-section {
                padding: 0 1rem;
            }
            .article-content {
                padding: 2rem 1.5rem;
            }
            .article-title {
                font-size: 2rem;
            }
            .intro {
                font-size: 1.1rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .search-container {
                padding: 2rem 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: var(--radius);
                margin-bottom: 10px;
            }
            .search-button {
                border-radius: var(--radius);
                padding: 1rem;
            }
            .legend-card {
                flex-direction: column;
            }
            .legend-image {
                width: 100%;
                height: 200px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .trend-up {
            color: #4CAF50;
            font-weight: bold;
        }
        .trend-down {
            color: #F44336;
            font-weight: bold;
        }
