        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #6C63FF;
            --secondary: #FF6584;
            --accent: #36D1DC;
            --dark: #2A2D43;
            --light: #F8F9FA;
            --gray: #6C757D;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0,0,0,0.08);
            --radius: 12px;
            --container-max: 1200px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 2rem; }
        .mb-4 { margin-bottom: 3rem; }
        .mt-4 { margin-top: 3rem; }
        .p-3 { padding: 1.5rem; }
        .d-flex { display: flex; }
        .flex-column { flex-direction: column; }
        .align-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .grid {
            display: grid;
            gap: 2rem;
        }
        .site-header {
            background: var(--dark);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: var(--transition);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background: rgba(255,255,255,0.9);
            padding: 1rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid #eee;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--gray);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem auto;
        }
        .article-content {
            background: white;
            border-radius: var(--radius);
            padding: 3rem;
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 3.2rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--dark);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--secondary);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--dark);
            background: rgba(108, 99, 255, 0.05);
            padding: 1.5rem;
            border-left: 4px solid var(--primary);
            border-radius: 0 var(--radius) var(--radius) 0;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255,101,132,0.1) 0%, rgba(54,209,220,0.1) 100%);
            padding: 2rem;
            border-radius: var(--radius);
            margin: 2rem 0;
            border: 1px dashed var(--primary);
        }
        .featured-img {
            width: 100%;
            border-radius: var(--radius);
            overflow: hidden;
            margin: 2.5rem auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .featured-img img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-img:hover img {
            transform: scale(1.03);
        }
        .figcaption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            padding: 0.8rem;
            background: #f8f9fa;
            font-size: 0.95rem;
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            color: white;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(108, 99, 255, 0.3);
            color: white;
        }
        .btn-secondary {
            background: linear-gradient(90deg, var(--secondary), #FF9A9E);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-control {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e1e5eb;
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
        }
        .sidebar {
            background: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 1rem;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 8px;
            transition: var(--transition);
        }
        .link-list li:hover {
            background: rgba(108, 99, 255, 0.1);
            transform: translateX(5px);
        }
        .comment-section, .rating-section, .search-section {
            background: white;
            border-radius: var(--radius);
            padding: 2.5rem;
            margin-top: 3rem;
            box-shadow: var(--shadow);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #FFD700;
        }
        .star-rating i {
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .site-footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 1.5rem 0;
            text-align: center;
        }
        friend-link a {
            color: var(--accent);
            font-weight: 600;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active {
                max-height: 300px;
                margin-top: 1rem;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .main-nav a {
                display: block;
                padding: 1rem 0;
            }
            .article-content {
                padding: 2rem;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 576px) {
            .article-content, .sidebar, .comment-section {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            .lead {
                font-size: 1.1rem;
            }
        }
        @media print {
            .site-header, .sidebar, .comment-section, .rating-section, .site-footer {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
