        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            color: #333;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #6a5acd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff69b4;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b9d, #6a5acd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        .my-logo:hover {
            transform: scale(1.03);
            transition: transform 0.3s ease;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 20px;
        }
        .desktop-nav a:hover {
            background: #f0f0ff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #6a5acd;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: white;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            padding: 20px;
            border-radius: 0 0 15px 15px;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 15px 0;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            font-weight: 600;
            display: block;
            padding: 10px;
            border-radius: 10px;
        }
        .mobile-nav a:hover {
            background: #f0f0ff;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #666;
        }
        .breadcrumb a {
            color: #666;
        }
        .breadcrumb a:hover {
            color: #6a5acd;
        }
        .search-section {
            background: linear-gradient(90deg, #a18cd1, #fbc2eb);
            padding: 30px 0;
            text-align: center;
            border-radius: 15px;
            margin: 25px 0;
            color: white;
        }
        .search-section h2 {
            margin-bottom: 20px;
            font-size: 2rem;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        .search-form input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-form button {
            background: #6a5acd;
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #5a4ab8;
        }
        main {
            flex-grow: 1;
            padding: 30px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 25px;
            color: #2d2d5a;
            line-height: 1.2;
            border-left: 8px solid #ff6b9d;
            padding-left: 20px;
        }
        h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            color: #3a3a7a;
            padding-bottom: 10px;
            border-bottom: 3px dashed #c3cfe2;
        }
        h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #5a5a9a;
        }
        h4 {
            font-size: 1.5rem;
            margin: 25px 0 12px;
            color: #6a5acd;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: 600;
            color: #444;
            background: #f9f9ff;
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #6a5acd;
            margin-bottom: 30px;
        }
        .highlight {
            background: linear-gradient(120deg, #ffef78 0%, #ffef78 100%);
            padding: 3px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .feature-img {
            margin: 35px auto;
            box-shadow: 0 15px 35px rgba(106, 90, 205, 0.2);
            border: 5px solid white;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #777;
            margin-top: 10px;
            font-size: 1rem;
        }
        .quote {
            border-left: 5px solid #ff69b4;
            background: #fff5f9;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 15px 15px 0;
            font-style: italic;
            font-size: 1.3rem;
            color: #555;
        }
        .link-list {
            background: #f0f8ff;
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
        }
        .link-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .link-list li {
            padding: 12px;
            background: white;
            border-radius: 10px;
            transition: transform 0.3s;
        }
        .link-list li:hover {
            transform: translateY(-5px);
            box-shadow: 0 7px 15px rgba(0,0,0,0.1);
        }
        .link-list a {
            font-weight: 600;
            display: block;
        }
        aside {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            color: #ff6b9d;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffd700;
            cursor: pointer;
            margin: 10px 0;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffb400;
            transform: scale(1.2);
        }
        input, textarea, select {
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #6a5acd;
            outline: none;
        }
        button[type="submit"] {
            background: linear-gradient(90deg, #6a5acd, #ff6b9d);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        button[type="submit"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(106, 90, 205, 0.4);
        }
        .update-time {
            font-size: 0.95rem;
            color: #888;
            text-align: center;
            padding: 15px;
            background: #f9f9f9;
            border-radius: 10px;
            margin-top: 20px;
        }
        footer {
            background: #2d2d5a;
            color: #ccc;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #fff;
            font-size: 1.4rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #6a5acd;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 15px 0;
        }
        .friend-links a {
            background: rgba(255,255,255,0.1);
            padding: 10px 20px;
            border-radius: 20px;
            color: #ddd;
            transition: all 0.3s;
        }
        .friend-links a:hover {
            background: #6a5acd;
            color: white;
            transform: scale(1.05);
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            article, aside {
                padding: 25px;
            }
            .search-form input {
                padding: 15px 20px;
            }
        }
