        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #fef9f3;
            background-image: radial-gradient(#ffd8b1 1px, transparent 1px);
            background-size: 20px 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-header {
            background: linear-gradient(135deg, #ff6b6b, #ff8e53);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            color: white;
            font-family: 'Arial Black', sans-serif;
            text-shadow: 2px 2px 0 #d45d3e;
            letter-spacing: 1px;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .my-logo span {
            color: #fffacd;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background-color: rgba(255, 255, 255, 0.2);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            max-width: 1200px;
            margin: 1rem auto;
            padding: 0 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #ff6b6b;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-content {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 16px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            font-size: 2.8rem;
            color: #d35400;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid #ffa726;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            color: #e67e22;
            margin: 2.5rem 0 1rem;
            padding-left: 0.5rem;
            border-left: 5px solid #ffa726;
        }
        h3 {
            font-size: 1.6rem;
            color: #f39c12;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #f1c40f;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        strong {
            color: #d35400;
            font-weight: 700;
        }
        .lead {
            font-size: 1.3rem;
            color: #555;
            background: #fff9e6;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2.5rem;
            border-left: 5px solid #ffa726;
        }
        .search-form,
        .comment-form,
        .rating-form {
            margin-bottom: 2.5rem;
            padding: 1.5rem;
            background: #f9f9f9;
            border-radius: 10px;
            border: 1px solid #eee;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
        }
        button {
            background: linear-gradient(to right, #ff8a00, #da1b60);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(255, 106, 58, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: #ffc107; }
        .content-links {
            background: #e8f4fd;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .content-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .content-links a {
            color: #2980b9;
            text-decoration: none;
            padding: 0.5rem;
            display: block;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .content-links a:hover {
            background: #d1e7ff;
            text-decoration: underline;
        }
        article a {
            color: #e74c3c;
            text-decoration: none;
            border-bottom: 1px dashed #e74c3c;
            transition: all 0.3s;
        }
        article a:hover {
            color: #c0392b;
            border-bottom-style: solid;
            background-color: #fff0ee;
        }
        .featured-img {
            margin: 2rem auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
        }
        .site-footer {
            background: linear-gradient(135deg, #2c3e50, #1a2530);
            color: #ecf0f1;
            padding: 3rem 20px 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h3 {
            color: #ffa726;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 1rem;
        }
        friend-link a {
            color: #1abc9c;
            text-decoration: none;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #ff6b6b;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .main-nav.active ul { display: flex; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .article-content { padding: 1.5rem; }
            .header-container { flex-wrap: wrap; }
        }
        @media (max-width: 480px) {
            .my-logo { font-size: 1.8rem; }
            .lead { font-size: 1.1rem; }
            p { font-size: 1rem; }
        }
