        * { 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%, #e4e8f0 100%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            border-left: 1px solid #ddd;
            border-right: 1px solid #ddd;
        }
        .site-header {
            background: linear-gradient(90deg, #ff6b6b, #ff8e53);
            padding: 1.5rem 2rem;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo a {
            font-size: 2.8rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            text-shadow: 3px 3px 0 #d35400, 6px 6px 0 rgba(0,0,0,0.15);
            letter-spacing: -1px;
            transition: all 0.3s ease;
        }
        .my-logo a:hover {
            text-shadow: 3px 3px 0 #a52714, 6px 6px 15px rgba(0,0,0,0.3);
            transform: translateY(-3px);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.7rem 1.2rem;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav a:hover, .main-nav a.active {
            background: rgba(255, 255, 255, 0.35);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1.5rem 2rem;
            background: #fff;
            margin: 1.5rem 0;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.7rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.7rem;
            color: #ff6b6b;
        }
        .breadcrumb a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
        }
        .breadcrumb a:hover {
            color: #ff6b6b;
            text-decoration: underline;
        }
        .search-container {
            background: #fff;
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.06);
            text-align: center;
        }
        .search-box {
            display: flex;
            max-width: 700px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #ddd;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-box input:focus {
            border-color: #ff8e53;
        }
        .search-box button {
            background: linear-gradient(90deg, #ff8e53, #ff6b6b);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #ff6b6b, #ff4757);
            transform: scale(1.05);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        main {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        h1 {
            font-size: 3.2rem;
            color: #d35400;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid #ff8e53;
            padding-bottom: 1rem;
            text-shadow: 2px 2px 0 #ffeaa7;
        }
        h2 {
            font-size: 2.4rem;
            color: #e17055;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px dashed #ffbe76;
        }
        h3 {
            font-size: 1.8rem;
            color: #fdcb6e;
            background: linear-gradient(90deg, rgba(253, 203, 110, 0.15), transparent);
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #74b9ff;
            margin: 2rem 0 1rem;
            padding-left: 1rem;
            border-left: 5px solid #74b9ff;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            color: #555;
            background: #f9f9f9;
            padding: 1.5rem;
            border-left: 5px solid #ff6b6b;
            border-radius: 0 10px 10px 0;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(90deg, #ffeaa7, #fab1a0);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
            border-left: 8px solid #e17055;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 15px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        a.content-link {
            color: #0984e3;
            text-decoration: none;
            border-bottom: 2px dotted #0984e3;
            padding-bottom: 2px;
            transition: all 0.3s;
        }
        a.content-link:hover {
            color: #d63031;
            border-bottom: 2px solid #d63031;
            background: rgba(214, 48, 49, 0.05);
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.8rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        aside {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-section {
            margin-bottom: 2.5rem;
        }
        .sidebar-section h3 {
            font-size: 1.5rem;
            color: #2d3436;
            background: none;
            padding: 0;
            border-bottom: 2px solid #ff6b6b;
            padding-bottom: 0.5rem;
        }
        .related-links a {
            display: block;
            padding: 0.9rem 1.2rem;
            margin-bottom: 0.8rem;
            background: #f9f9f9;
            border-radius: 10px;
            color: #555;
            text-decoration: none;
            transition: all 0.3s;
            border-left: 4px solid #74b9ff;
        }
        .related-links a:hover {
            background: #e3f2fd;
            transform: translateX(5px);
            border-left: 4px solid #0984e3;
        }
        .interaction-section {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            margin: 3rem 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .rating-container {
            text-align: center;
            margin-bottom: 3rem;
        }
        .stars {
            font-size: 2.5rem;
            color: #ddd;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars span {
            transition: color 0.3s;
        }
        .stars span:hover,
        .stars span.active {
            color: #ffd700;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1.5rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #ff8e53;
            outline: none;
        }
        .comment-form button {
            background: linear-gradient(90deg, #00b894, #00a085);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .comment-form button:hover {
            background: linear-gradient(90deg, #00a085, #008672);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0, 184, 148, 0.4);
        }
        footer {
            background: linear-gradient(90deg, #2d3436, #636e72);
            color: white;
            padding: 3rem 2rem;
            border-radius: 20px 20px 0 0;
            margin-top: 4rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            margin: 2rem 0;
        }
        friend-link {
            display: inline-block;
        }
        friend-link a {
            color: #74b9ff;
            text-decoration: none;
            padding: 0.7rem 1.5rem;
            border: 1px solid #74b9ff;
            border-radius: 50px;
            transition: all 0.3s;
        }
        friend-link a:hover {
            background: #74b9ff;
            color: #2d3436;
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #636e72;
            font-size: 0.9rem;
            color: #b2bec3;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .site-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .main-nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1.5rem;
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 2rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            main, .interaction-section {
                padding: 2rem;
            }
        }
