        * { 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: #f8f9fa;
            background-image: linear-gradient(to bottom, #f1f3f4 0%, #e9ecef 100%);
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { color: #2c3e50; font-weight: 700; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); border-bottom: 4px solid #e74c3c; padding-bottom: 0.5rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: #34495e; margin-top: 2.5rem; padding-left: 0.5rem; border-left: 5px solid #3498db; }
        h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); color: #2c3e50; margin-top: 2rem; }
        h4 { font-size: 1.3rem; color: #7f8c8d; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; text-align: justify; hyphens: auto; }
        .lead { font-size: 1.2rem; font-weight: 500; color: #555; }
        .highlight { background-color: #fffacd; padding: 0.2rem 0.4rem; border-radius: 3px; }
        .bold { font-weight: 800; color: #2c3e50; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .last-updated { font-size: 0.9rem; color: #95a5a6; font-style: italic; margin-bottom: 2rem; text-align: right; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        @media (min-width: 992px) {
            .main-grid { grid-template-columns: 3fr 1fr; }
        }
        .site-header {
            background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
            color: white;
            padding: 1.2rem 0;
            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;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.5rem;
            color: #e74c3c;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            transition: all 0.3s ease;
        }
        .my-logo:hover {
            color: #fff;
            text-shadow: 0 0 10px #e74c3c;
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background-color: #e74c3c;
            color: white;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background: #2c3e50;
                transition: left 0.4s ease;
                padding: 2rem;
                box-shadow: 5px 0 15px rgba(0,0,0,0.2);
                overflow-y: auto;
            }
            .main-nav.active { left: 0; }
            .main-nav ul { flex-direction: column; gap: 0; }
            .main-nav li { margin-bottom: 1.5rem; }
            .main-nav a { display: block; padding: 1rem; border-bottom: 1px solid #34495e; }
            .hamburger { display: block; }
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #ecf0f1;
            border-bottom: 1px solid #bdc3c7;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #7f8c8d;
        }
        .breadcrumb a {
            color: #3498db;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem auto;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 5px solid #fff;
            outline: 1px solid #ddd;
        }
        .sidebar {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .widget { margin-bottom: 2.5rem; }
        .widget-title {
            font-size: 1.3rem;
            color: #e74c3c;
            border-bottom: 2px solid #f1f1f1;
            padding-bottom: 0.7rem;
            margin-bottom: 1.2rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group { display: flex; flex-direction: column; }
        label { margin-bottom: 0.4rem; font-weight: 600; color: #555; }
        input, textarea, select {
            padding: 0.9rem;
            border: 1px solid #bdc3c7;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        textarea { min-height: 120px; resize: vertical; }
        .btn {
            background: linear-gradient(to right, #3498db, #2980b9);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            display: inline-block;
        }
        .btn:hover {
            background: linear-gradient(to right, #2980b9, #1c5a7a);
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(41, 128, 185, 0.4);
        }
        .btn-danger { background: linear-gradient(to right, #e74c3c, #c0392b); }
        .btn-danger:hover { background: linear-gradient(to right, #c0392b, #a93226); }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
        }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating input:hover ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: #f1c40f; }
        .site-footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            font-size: 1.1rem;
        }
        friend-link a {
            color: #3498db;
            text-decoration: none;
            margin: 0 0.8rem;
            padding: 0.5rem;
            transition: color 0.3s;
        }
        friend-link a:hover { color: #e74c3c; text-decoration: underline; }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #34495e;
            width: 100%;
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        .text-center { text-align: center; }
        .mt-3 { margin-top: 3rem; }
        .mb-3 { margin-bottom: 3rem; }
        .p-3 { padding: 1.5rem; }
        .bg-light { background-color: #f8f9fa; border-radius: 8px; }
        .internal-link {
            color: #e74c3c;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px dotted #e74c3c;
        }
        .internal-link:hover {
            color: #c0392b;
            border-bottom-style: solid;
        }
