        * { 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: linear-gradient(135deg, #f9f9f9 0%, #eef2f3 100%);
            background-attachment: fixed;
            max-width: 100%;
            overflow-x: hidden;
        }
        a { color: #e74c3c; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #c0392b; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(90deg, #2c3e50 0%, #4a6491 100%);
            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 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo a {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2.2rem;
            color: #f1c40f;
            text-shadow: 3px 3px 0 #e74c3c;
            letter-spacing: 1px;
        }
        .my-logo a span { color: #3498db; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: #ecf0f1;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            color: #f1c40f;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: #f1c40f;
            left: 0;
            bottom: 0;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #f8f9fa;
            border-bottom: 1px solid #dee2e6;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #6c757d;
        }
        .breadcrumb a { color: #6c757d; }
        .breadcrumb a:hover { color: #e74c3c; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 2px solid #f1c40f;
            padding-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 0.8rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #7f8c8d;
            font-size: 0.95rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }
        .last-updated { color: #e74c3c; font-weight: 600; }
        h2 {
            font-size: 2rem;
            color: #2980b9;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #bdc3c7;
        }
        h3 {
            font-size: 1.6rem;
            color: #16a085;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #8e44ad;
            margin: 1.8rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .highlight-box {
            background: linear-gradient(120deg, #e3f2fd 0%, #f3e5f5 100%);
            border-left: 5px solid #9b59b6;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box strong { color: #2c3e50; }
        .inline-link-list {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .inline-link-list h4 { margin-top: 0; }
        .inline-link-list ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 0.8rem;
            list-style: none;
        }
        .inline-link-list li:before {
            content: '🎯';
            margin-right: 8px;
        }
        .featured-image {
            width: 80%;
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 5px solid #fff;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.8rem;
            background: #f8f9fa;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            border-radius: 10px;
            padding: 1.8rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget-title {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f1c40f;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            border: 1px solid #bdc3c7;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            width: 100%;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        button, .btn {
            background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
            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;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(90deg, #c0392b 0%, #a93226 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(231, 76, 60, 0.3);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #f1c40f;
            margin: 1rem 0;
        }
        .star-rating i { cursor: pointer; }
        .star-rating i:hover { transform: scale(1.2); }
        .site-footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            color: #f1c40f;
            margin-bottom: 1rem;
        }
        friend-link {
            display: block;
            background: #34495e;
            padding: 1.2rem;
            border-radius: 6px;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: #3d566e;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #4a6572;
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease-out;
            }
            .main-nav.active { max-height: 500px; margin-top: 1rem;}
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li { width: 100%; }
            .main-nav a {
                display: block;
                padding: 0.8rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 1.8rem; }
            .main-content { gap: 1.5rem; padding: 1.5rem 0; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .widget {
            animation: fadeIn 0.6s ease-out;
        }
