        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #333;
            background: #f8f9fa;
            max-width: 100%;
            overflow-x: hidden;
        }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { background-color: #ffeaa7; padding: 2px 5px; border-radius: 3px; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .site-header {
            background: linear-gradient(135deg, #58cc02 0%, #1cb0f6 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-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i { font-size: 2rem; }
        .my-logo:hover { color: #ffde59; }
        .main-nav { display: flex; align-items: center; }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover, .nav-links a.active {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #58cc02; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .search-container {
            background: #1cb0f6;
            padding: 1.5rem 0;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            font-size: 1rem;
        }
        .search-btn {
            background: #ffde59;
            color: #333;
            border: none;
            padding: 0 25px;
            cursor: pointer;
            font-weight: 700;
            transition: background 0.3s;
        }
        .search-btn:hover { background: #f9c846; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1 {
            font-size: 2.8rem;
            color: #2d3436;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #1cb0f6;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #ffeaa7;
        }
        h3 {
            font-size: 1.5rem;
            color: #58cc02;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #ff7675;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            color: #555;
            font-weight: 500;
        }
        .article-img {
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .caption { font-size: 0.9rem; color: #666; text-align: center; margin-top: 10px; }
        .content-link {
            color: #1cb0f6;
            text-decoration: none;
            border-bottom: 1px dashed #1cb0f6;
            transition: all 0.2s;
        }
        .content-link:hover {
            color: #58cc02;
            border-bottom: 1px solid #58cc02;
        }
        ul, ol { margin-left: 1.5rem; margin-bottom: 1.2rem; }
        li { margin-bottom: 0.5rem; }
        .rating-section, .comments-section {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            margin-top: 3rem;
            border: 1px solid #e9ecef;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .star-rating .star:hover,
        .star-rating .star.active { color: #ffde59; }
        .form-group { margin-bottom: 1rem; }
        label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ced4da;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #1cb0f6;
            box-shadow: 0 0 0 3px rgba(28, 176, 246, 0.2);
        }
        .submit-btn {
            background: linear-gradient(to right, #58cc02, #1cb0f6);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(88, 204, 2, 0.3);
        }
        .site-footer {
            background: #2d3436;
            color: #dfe6e9;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #ffde59;
            margin-bottom: 1.5rem;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a {
            color: #b2bec3;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: #ffde59; }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border-left: 4px solid #58cc02;
        }
        friend-link a {
            color: #ffde59;
            text-decoration: none;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #b2bec3;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            .header-content { justify-content: center; }
            .main-nav { width: 100%; margin-top: 1rem; }
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(0,0,0,0.9);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-radius: 0 0 10px 10px;
            }
            .nav-links.active { display: flex; }
            .hamburger { display: block; }
            .article-content { padding: 1.5rem; }
            .sidebar { position: static; }
        }
