        * { 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: linear-gradient(135deg, #fdf6e3 0%, #fffbf0 100%);
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #f1c40f; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #e74c3c; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; border-radius: 10px; }
        header {
            background: linear-gradient(90deg, #2c3e50, #34495e);
            color: white;
            padding: 1.5rem 1rem;
            border-radius: 0 0 15px 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(45deg, #f1c40f, #e67e22);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover { transform: scale(1.05); }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
            flex-wrap: wrap;
        }
        nav a {
            color: #ecf0f1;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
        }
        nav a:hover {
            background-color: rgba(241, 196, 15, 0.2);
            color: #f1c40f;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem;
            background: #ecf0f1;
            border-radius: 8px;
            margin: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #3498db; }
        .breadcrumb a:hover { color: #e74c3c; }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 768px) {
            main { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        h1 {
            color: #2c3e50;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            border-left: 6px solid #f1c40f;
            padding-left: 1rem;
        }
        h2 {
            color: #34495e;
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px dashed #f1c40f;
        }
        h3 {
            color: #16a085;
            font-size: 1.6rem;
            margin: 1.8rem 0 1rem;
        }
        h4 {
            color: #8e44ad;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background: linear-gradient(120deg, #fef9e7 0%, #fcf3cf 100%);
            padding: 1.5rem;
            border-left: 5px solid #f1c40f;
            border-radius: 0 10px 10px 0;
            margin: 1.5rem 0;
        }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        strong { color: #c0392b; }
        aside {
            background: #2c3e50;
            color: white;
            padding: 1.8rem;
            border-radius: 15px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .search-box, .comment-box, .rating-box {
            margin-bottom: 2rem;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            margin: 0.5rem 0 1rem;
            border: 2px solid #7f8c8d;
            border-radius: 8px;
            font-family: inherit;
            background: #ecf0f1;
        }
        button {
            background: linear-gradient(45deg, #f1c40f, #e67e22);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }
        button:hover {
            background: linear-gradient(45deg, #e67e22, #d35400);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #f1c40f;
        }
        .stars i { cursor: pointer; transition: transform 0.2s; }
        .stars i:hover { transform: scale(1.3); }
        .links-box {
            background: #34495e;
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 2rem;
        }
        .links-box h3 { color: #f1c40f; border-bottom: none; }
        .links-box ul { list-style: none; padding-left: 0; }
        .links-box li { margin-bottom: 0.8rem; padding-left: 1.5rem; position: relative; }
        .links-box li::before {
            content: '➤';
            position: absolute;
            left: 0;
            color: #f1c40f;
        }
        footer {
            background: #2c3e50;
            color: #bdc3c7;
            padding: 2.5rem 1rem;
            border-radius: 15px 15px 0 0;
            margin-top: 3rem;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 1.5rem 0;
            font-size: 1.1rem;
        }
        friend-link a {
            color: #1abc9c;
            font-weight: bold;
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #7f8c8d;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            nav.active ul { display: flex; }
            .hamburger { display: block; }
            h1 { font-size: 2.2rem; }
            article { padding: 1.5rem; }
        }
