        * { 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: #2d3436;
            background-color: #f9f7f7;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #6c5ce7; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #a29bfe; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
            color: white;
            padding: 1.5rem 0;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 5px 20px rgba(108, 92, 231, 0.2);
            margin-bottom: 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1.5rem;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            font-family: 'Arial Black', sans-serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: -1px;
        }
        .my-logo a { color: white; }
        .my-logo a:hover { text-decoration: none; color: #dfe6e9; }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            background-color: rgba(255,255,255,0.1);
        }
        .nav-desktop a:hover {
            background-color: rgba(255,255,255,0.25);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #6c5ce7;
            padding: 1rem;
            border-radius: 10px;
            margin-top: 1rem;
            position: absolute;
            width: 95%;
            z-index: 999;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            color: white;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 1rem 1.5rem;
            background-color: #dfe6e9;
            border-radius: 10px;
            margin: 1rem 1.5rem;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #636e72; }
        .breadcrumb span { color: #2d3436; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 1024px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.8rem;
            color: #2d3436;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 8px solid #6c5ce7;
            padding-left: 1.5rem;
        }
        h2 { font-size: 2rem; color: #6c5ce7; margin: 2.5rem 0 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px dashed #a29bfe; }
        h3 { font-size: 1.6rem; color: #2d3436; margin: 2rem 0 1rem; }
        h4 { font-size: 1.3rem; color: #636e72; margin: 1.5rem 0 0.8rem; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        .lead {
            font-size: 1.3rem;
            color: #6c5ce7;
            font-weight: 600;
            padding: 1.2rem;
            background-color: #f8f6ff;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 5px solid #a29bfe;
        }
        .highlight {
            background-color: #fffacd;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .featured-img {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 25px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .featured-img:hover { transform: scale(1.01); }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #636e72;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.3rem;
            color: #6c5ce7;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #dfe6e9;
        }
        .search-form { display: flex; }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #a29bfe;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
        }
        .search-form button {
            background: #6c5ce7;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #5a4bd1; }
        .comment-form, .rating-form {
            background-color: #f8f6ff;
            padding: 1.5rem;
            border-radius: 15px;
            margin-top: 1.5rem;
        }
        .form-group { margin-bottom: 1.2rem; }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2d3436;
        }
        input[type="text"],
        input[type="email"],
        textarea,
        select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #b2bec3;
            border-radius: 8px;
            font-size: 1rem;
        }
        textarea { min-height: 120px; resize: vertical; }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #fdcb6e;
            cursor: pointer;
        }
        .star-rating span:hover,
        .star-rating span.active { color: #e17055; }
        .btn-submit {
            background: linear-gradient(to right, #00b09b, #96c93d);
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .site-footer {
            background: #2d3436;
            color: #dfe6e9;
            padding: 3rem 0 1.5rem;
            border-radius: 20px 20px 0 0;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            padding: 0 2rem;
        }
        .footer-widget h3 {
            color: #a29bfe;
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            color: #74b9ff;
        }
        friend-link:hover { color: white; text-decoration: underline; }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #636e72;
            color: #b2bec3;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            .nav-desktop { display: none; }
            .hamburger { display: block; position: absolute; right: 1.5rem; top: 1.5rem; }
            .breadcrumb { margin: 1rem 0; }
            article, .sidebar { padding: 1.5rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
        }
