        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #f9f3ff 0%, #fff0f9 100%);
            color: #333;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #ff6b9d;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #d43f8d;
            text-shadow: 0 0 8px rgba(255, 107, 157, 0.3);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 1.2rem 0;
            box-shadow: 0 5px 20px rgba(106, 17, 203, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            text-shadow: 2px 2px 0 #ff6b9d;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-shadow: 2px 2px 0 #ffdd40;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 30px;
        }
        .desktop-nav a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #6a11cb;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #f0e6ff;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #6a11cb;
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
        }
        h1 {
            font-size: 2.8rem;
            color: #2575fc;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #ff6b9d;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #6a11cb;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px dashed #ffdd40;
        }
        h3 {
            font-size: 1.5rem;
            color: #ff6b9d;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        strong {
            color: #2575fc;
            font-weight: 800;
        }
        em {
            background: linear-gradient(90deg, #ffdd40, #ff6b9d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-style: normal;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(120deg, #e3f2ff, #ffeef8);
            border-left: 5px solid #2575fc;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .image-wrapper {
            margin: 2.5rem auto;
            text-align: center;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(106, 17, 203, 0.2);
            max-width: 800px;
        }
        .image-wrapper img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .image-wrapper img:hover {
            transform: scale(1.03);
        }
        figcaption {
            font-style: italic;
            padding: 1rem;
            color: #666;
        }
        aside {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-widget {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: #6a11cb;
            text-align: center;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #6a11cb;
        }
        button {
            background: linear-gradient(90deg, #6a11cb, #2575fc);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(106, 17, 203, 0.4);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffdd40;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
        }
        .footer-links {
            background: #2d1b69;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 10px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ffdd40;
            font-weight: 600;
        }
        footer {
            background: #1a103c;
            color: #aaa;
            text-align: center;
            padding: 2rem 0;
        }
        .copyright {
            margin-top: 1rem;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            .article-content { padding: 2rem; }
        }
