* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a1a2e;
            --secondary-color: #16213e;
            --accent-color: #0f3460;
            --text-color: #e6e6e6;
            --highlight-color: #e94560;
            --border-color: #2d4059;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--secondary-color);
            border-bottom: 3px solid var(--highlight-color);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--highlight-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo:hover {
            color: var(--text-color);
            transition: color 0.3s ease;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            padding: 10px 15px;
            border: 2px solid var(--border-color);
            border-radius: 25px;
            background: var(--primary-color);
            color: var(--text-color);
            width: 300px;
        }
        .search-btn {
            padding: 10px 20px;
            background: var(--highlight-color);
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-btn:hover {
            background: #d13453;
        }
        .main-nav {
            background: var(--accent-color);
            padding: 1rem 0;
        }
        .nav-list {
            display: flex;
            list-style: none;
            justify-content: center;
            gap: 2rem;
        }
        .nav-link {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            background: var(--highlight-color);
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: var(--primary-color);
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb-list {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb-item {
            color: var(--text-color);
        }
        .breadcrumb-item:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
        }
        .breadcrumb-link {
            color: var(--highlight-color);
            text-decoration: none;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 2rem 0;
        }
        .article-content {
            background: var(--secondary-color);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .article-header {
            margin-bottom: 2rem;
        }
        .article-title {
            font-size: 2.5rem;
            color: var(--highlight-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1rem;
            color: #888;
            font-size: 0.9rem;
        }
        .article-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            border: 3px solid var(--border-color);
        }
        h1, h2, h3 {
            color: var(--highlight-color);
            margin: 2rem 0 1rem 0;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 4px solid var(--highlight-color);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            color: var(--text-color);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: var(--accent-color);
            padding: 1.5rem;
            border-left: 4px solid var(--highlight-color);
            margin: 2rem 0;
            border-radius: 0 5px 5px 0;
        }
        .key-point {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin: 1rem 0;
        }
        .key-point i {
            color: var(--highlight-color);
            margin-top: 0.2rem;
        }
        .sidebar {
            background: var(--secondary-color);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            height: fit-content;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .widget-title {
            color: var(--highlight-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        .rating-system {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.5rem;
            color: #666;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .rating-form {
            margin-top: 1rem;
        }
        .rating-btn {
            width: 100%;
            padding: 10px;
            background: var(--highlight-color);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .rating-btn:hover {
            background: #d13453;
        }
        .comment-system {
            margin-top: 3rem;
        }
        .comment-form {
            background: var(--primary-color);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 10px;
            background: var(--secondary-color);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-color);
        }
        .form-textarea {
            height: 100px;
            resize: vertical;
        }
        .submit-btn {
            background: var(--highlight-color);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .submit-btn:hover {
            background: #d13453;
        }
        .footer-links {
            background: var(--primary-color);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: var(--secondary-color);
            padding: 1rem;
            border-radius: 5px;
            border-left: 3px solid var(--highlight-color);
        }
        .web-link a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .web-link a:hover {
            color: var(--highlight-color);
        }
        footer {
            background: var(--accent-color);
            padding: 2rem 0;
            text-align: center;
            border-top: 3px solid var(--highlight-color);
        }
        .copyright {
            color: var(--text-color);
            opacity: 0.8;
        }
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .search-input {
                width: 200px;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--accent-color);
                padding: 1rem;
            }
            .nav-list.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .article-title {
                font-size: 2rem;
            }
        }
        @media (max-width: 480px) {
            .header-top {
                flex-direction: column;
                gap: 1rem;
            }
            .search-form {
                width: 100%;
            }
            .search-input {
                width: 100%;
            }
            .article-title {
                font-size: 1.8rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content, .sidebar {
            animation: fadeIn 0.6s ease-out;
        }
        .text-center { text-align: center; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .emoji { font-size: 1.2em; }
