        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #4a148c;
            --secondary: #ff6f00;
            --accent: #00acc1;
            --dark: #1a237e;
            --light: #f3e5f5;
            --text: #333;
            --text-light: #666;
            --bg: #f9f9f9;
            --card-bg: #fff;
            --shadow: rgba(0, 0, 0, 0.08);
            --border: #e0e0e0;
        }
        body {
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .header-search {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            padding: 0.3rem 1rem;
            margin-left: 2rem;
        }
        .header-search input {
            background: transparent;
            border: none;
            color: white;
            padding: 0.5rem;
            width: 200px;
            outline: none;
        }
        .header-search input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        .header-search button {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: var(--light);
            padding: 1rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 5px 15px var(--shadow);
        }
        article h1 {
            color: var(--dark);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 0.5rem;
        }
        article h2 {
            color: var(--primary);
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem 0;
            padding-top: 1rem;
            border-top: 1px dashed var(--border);
        }
        article h3 {
            color: var(--accent);
            font-size: 1.4rem;
            margin: 1.8rem 0 0.8rem 0;
        }
        article p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        article strong {
            color: var(--dark);
            font-weight: 700;
        }
        article em {
            color: var(--secondary);
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(to right, var(--light), #e8f4f8);
            border-left: 5px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .hero-image {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .hero-image figcaption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            padding: 0.5rem;
            font-size: 0.9rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #ddd;
            margin: 1rem 0;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffcc00;
        }
        .rating-widget input,
        .rating-widget textarea,
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
        }
        .rating-widget button,
        .comment-form button {
            background: linear-gradient(to right, var(--primary), var(--dark));
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .rating-widget button:hover,
        .comment-form button:hover {
            background: linear-gradient(to right, var(--secondary), #e65100);
            transform: translateY(-2px);
        }
        .comment-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid var(--border);
        }
        .comment-list .comment {
            padding: 1.2rem;
            border-bottom: 1px solid var(--border);
            margin-bottom: 1rem;
        }
        .comment-author {
            font-weight: bold;
            color: var(--primary);
        }
        .comment-date {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-left: 1rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: var(--light);
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent);
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateX(5px);
            background-color: #e8dff5;
        }
        .site-footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem 0;
            margin-top: 4rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: var(--secondary);
        }
        .copyright {
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
        }
        @media (max-width: 768px) {
            .desktop-nav,
            .header-search {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .mobile-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--dark);
                flex-direction: column;
                padding: 1rem;
                display: none;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                z-index: 999;
            }
            .mobile-nav.active {
                display: flex;
            }
            .mobile-nav ul {
                list-style: none;
                width: 100%;
            }
            .mobile-nav li {
                margin-bottom: 1rem;
            }
            .mobile-nav a {
                color: white;
                font-weight: 600;
                display: block;
                padding: 0.8rem;
                border-radius: 8px;
                transition: background 0.3s;
            }
            .mobile-nav a:hover {
                background: rgba(255, 111, 0, 0.2);
            }
            .mobile-search {
                display: flex;
                margin-top: 1rem;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 50px;
                padding: 0.5rem 1rem;
            }
            .mobile-search input {
                flex: 1;
                background: transparent;
                border: none;
                color: white;
                outline: none;
            }
            article {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 2rem;
            }
            article h2 {
                font-size: 1.6rem;
            }
        }
        @media print {
            .site-header,
            .sidebar,
            .comment-section,
            .site-footer,
            .web-links,
            .breadcrumb {
                display: none;
            }
            article {
                box-shadow: none;
                padding: 0;
            }
            .main-content {
                grid-template-columns: 1fr;
                gap: 0;
            }
        }
