        * { 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: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            padding: 0;
            margin: 0;
        }
        img { max-width: 100%; height: auto; display: block; }
        header {
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
            padding: 1.5rem 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.8rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            text-shadow: 3px 3px 0 #ff4757, 6px 6px 0 rgba(0,0,0,0.2);
            transition: transform 0.3s ease, text-shadow 0.3s ease;
            font-family: 'Comic Sans MS', cursive, sans-serif;
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-shadow: 4px 4px 0 #ff4757, 8px 8px 0 rgba(0,0,0,0.2);
        }
        .main-nav { position: relative; }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }
        .nav-list li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.7rem 1.2rem;
            border-radius: 30px;
            background: rgba(255,255,255,0.15);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-list li a:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .search-form {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 30px;
            padding: 0.3rem;
        }
        .search-form input {
            border: none;
            padding: 0.7rem 1rem;
            border-radius: 30px;
            width: 200px;
            outline: none;
            font-size: 1rem;
        }
        .search-form button {
            background: #4ecdc4;
            border: none;
            color: white;
            padding: 0.7rem 1.2rem;
            border-radius: 30px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #3db4ac; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            margin-top: 1.5rem;
            padding: 1rem;
            background: rgba(255,255,255,0.9);
            border-radius: 10px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: #ff6b6b;
            text-decoration: none;
            font-weight: 500;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.8rem;
            color: #888;
        }
        main {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        h1 {
            font-size: 3.5rem;
            color: #ff6b6b;
            margin-bottom: 2rem;
            text-align: center;
            text-shadow: 2px 2px 0 #feca57;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.5rem;
            color: #4ecdc4;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px dashed #96ceb4;
        }
        h3 {
            font-size: 2rem;
            color: #45b7d1;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #feca57;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            color: #555;
            font-weight: 500;
            background: #f8f9fa;
            padding: 1.5rem;
            border-left: 5px solid #4ecdc4;
            border-radius: 10px;
            margin-bottom: 2.5rem;
        }
        emoji { font-size: 1.2em; margin-right: 0.3rem; }
        b, strong { color: #ff6b6b; font-weight: 800; }
        a.content-link {
            color: #45b7d1;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px dotted #45b7d1;
            padding-bottom: 2px;
            transition: color 0.3s, border-bottom 0.3s;
        }
        a.content-link:hover {
            color: #ff6b6b;
            border-bottom: 2px solid #ff6b6b;
        }
        .highlight-box {
            background: linear-gradient(120deg, #ffefba, #ffffff);
            border: 2px solid #feca57;
            border-radius: 15px;
            padding: 2rem;
            margin: 2.5rem 0;
            box-shadow: 0 5px 15px rgba(254, 202, 87, 0.3);
        }
        figure {
            margin: 3rem auto;
            text-align: center;
            max-width: 800px;
        }
        figure img {
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            transition: transform 0.5s ease;
        }
        figure img:hover { transform: scale(1.02); }
        figcaption {
            margin-top: 1rem;
            font-style: italic;
            color: #666;
        }
        aside {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .sidebar-section {
            margin-bottom: 2.5rem;
        }
        .sidebar-section h3 {
            font-size: 1.5rem;
            color: #ff6b6b;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #feca57;
        }
        .related-links a {
            display: block;
            padding: 0.8rem 1rem;
            margin-bottom: 0.8rem;
            background: #f8f9fa;
            border-radius: 10px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s;
            border-left: 4px solid #4ecdc4;
        }
        .related-links a:hover {
            background: #e9ecef;
            transform: translateX(5px);
            border-left-color: #ff6b6b;
        }
        .comments, .rating {
            background: #f8f9fa;
            padding: 2.5rem;
            border-radius: 15px;
            margin-top: 3rem;
            border: 2px solid #e9ecef;
        }
        .comments h3, .rating h3 { color: #333; margin-top: 0; }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        textarea {
            width: 100%;
            padding: 1.2rem;
            border: 2px solid #ccc;
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
            min-height: 150px;
            transition: border-color 0.3s;
        }
        textarea:focus { border-color: #4ecdc4; outline: none; }
        .stars {
            display: flex;
            gap: 0.5rem;
            direction: rtl; 
        }
        .stars input { display: none; }
        .stars label {
            font-size: 2.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label { color: #feca57; }
        button[type="submit"] {
            background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            align-self: flex-start;
        }
        button[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 107, 107, 0.4);
        }
        footer {
            background: linear-gradient(90deg, #2d3436, #636e72);
            color: white;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        friend-link {
            display: block;
            margin: 1.5rem 0;
            font-size: 1.2rem;
        }
        friend-link a {
            color: #feca57;
            text-decoration: none;
            font-weight: 700;
            padding: 0.8rem 1.5rem;
            background: rgba(255,255,255,0.1);
            border-radius: 30px;
            transition: all 0.3s;
            display: inline-block;
        }
        friend-link a:hover {
            background: rgba(255,255,255,0.2);
            transform: scale(1.05);
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            color: #b2bec3;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            main { grid-template-columns: 1fr; }
            aside { position: static; }
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
            .nav-list {
                flex-direction: column;
                width: 100%;
                display: none;
                background: rgba(0,0,0,0.9);
                padding: 2rem;
                border-radius: 15px;
                margin-top: 1rem;
            }
            .nav-list.show { display: flex; }
            .hamburger { display: block; }
            .search-form input { width: 100%; }
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            article, aside { padding: 2rem; }
        }
        @media (max-width: 480px) {
            body { font-size: 1rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .my-logo { font-size: 2.2rem; }
            .breadcrumb { padding: 0.8rem; }
        }
