        * {
            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.8;
            color: #2d3436;
            background-color: #f9f9f9;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #0984e3;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #74b9ff;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mb-4 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 1rem; }
        .mt-4 { margin-top: 2rem; }
        .py-2 { padding-top: 1rem; padding-bottom: 1rem; }
        .py-4 { padding-top: 2rem; padding-bottom: 2rem; }
        .bold { font-weight: 700; }
        .highlight {
            background-color: #fffacd;
            padding: 2px 6px;
            border-radius: 3px;
        }
        .site-header {
            background: linear-gradient(135deg, #6c5ce7 0%, #0984e3 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
        }
        .my-logo i {
            color: #ffeaa7;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .breadcrumb {
            background-color: #dfe6e9;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: #636e72;
        }
        .breadcrumb a {
            color: #0984e3;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: #ffeaa7;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffeaa7;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #6c5ce7;
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            z-index: 999;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-header {
            border-bottom: 2px solid #f1f2f6;
            padding-bottom: 1.5rem;
            margin-bottom: 2rem;
        }
        .article-title {
            font-size: 2.5rem;
            color: #2d3436;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            color: #636e72;
            font-size: 0.9rem;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .article-body h2 {
            font-size: 1.8rem;
            color: #6c5ce7;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #dfe6e9;
        }
        .article-body h3 {
            font-size: 1.5rem;
            color: #0984e3;
            margin: 2rem 0 1rem;
        }
        .article-body h4 {
            font-size: 1.2rem;
            color: #00b894;
            margin: 1.5rem 0 0.8rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-body blockquote {
            border-left: 4px solid #74b9ff;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #636e72;
            background-color: #f9f9f9;
            padding-top: 1rem;
            padding-bottom: 1rem;
            border-radius: 0 8px 8px 0;
        }
        .article-body ul, .article-body ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .article-body li {
            margin-bottom: 0.5rem;
        }
        .img-container {
            margin: 2rem 0;
            text-align: center;
        }
        .img-caption {
            font-size: 0.9rem;
            color: #636e72;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget-title {
            font-size: 1.3rem;
            color: #6c5ce7;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #f1f2f6;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem;
            border: 2px solid #dfe6e9;
            border-right: none;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            outline: none;
            border-color: #74b9ff;
        }
        .search-btn {
            background-color: #0984e3;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-btn:hover {
            background-color: #6c5ce7;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffd700;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i {
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea,
        .score-form select,
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 2px solid #dfe6e9;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .comment-form textarea:focus,
        .score-form select:focus,
        .comment-form input[type="text"]:focus,
        .comment-form input[type="email"]:focus {
            outline: none;
            border-color: #74b9ff;
        }
        .submit-btn {
            background: linear-gradient(to right, #6c5ce7, #0984e3);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.3s;
            width: 100%;
        }
        .submit-btn:hover {
            opacity: 0.9;
        }
        .site-footer {
            background-color: #2d3436;
            color: #dfe6e9;
            padding: 3rem 20px 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: white;
            margin-bottom: 1rem;
            display: inline-block;
        }
        .footer-links h3,
        .footer-legal h3 {
            color: #74b9ff;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        .footer-links a {
            color: #dfe6e9;
        }
        .footer-links a:hover {
            color: #74b9ff;
        }
        friend-link {
            display: block;
            margin-bottom: 0.5rem;
        }
        friend-link a {
            color: #00b894;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #636e72;
            color: #b2bec3;
            font-size: 0.9rem;
        }
