        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #00B2FF; 
            --secondary: #FF4655; 
            --dark: #1A1A2E;
            --light: #F5F7FA;
            --gray: #6C757D;
            --success: #28a745;
            --warning: #ffc107;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        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: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background: linear-gradient(135deg, var(--primary), #0095cc);
            color: white;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        .btn:hover {
            background: linear-gradient(135deg, var(--secondary), #e03543);
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(255, 70, 85, 0.3);
        }
        .section-title {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
            position: relative;
            padding-bottom: 10px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        header {
            background-color: var(--dark);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
        }
        .logo i {
            color: var(--primary);
            margin-right: 10px;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
        }
        .desktop-nav li {
            margin-left: 1.8rem;
        }
        .desktop-nav a {
            color: #ddd;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: white;
        }
        .desktop-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        .desktop-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            border-radius: 2px;
            transition: var(--transition);
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--dark);
            padding: 80px 30px 30px;
            transition: right 0.4s ease;
            z-index: 999;
            box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 1.5rem;
        }
        .mobile-nav a {
            color: #ddd;
            font-size: 1.2rem;
            display: block;
            padding: 8px 0;
            border-bottom: 1px solid #333;
        }
        .mobile-nav a:hover {
            color: var(--primary);
        }
        .close-nav {
            position: absolute;
            top: 20px;
            right: 25px;
            color: white;
            font-size: 1.8rem;
            background: none;
            border: none;
            cursor: pointer;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 12px 0;
            margin-bottom: 2rem;
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb i {
            margin: 0 10px;
            color: var(--gray);
            font-size: 0.8rem;
        }
        main {
            padding: 2rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        article {
            background: white;
            border-radius: var(--radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        article h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
            line-height: 1.2;
        }
        article .meta {
            color: var(--gray);
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        .meta i {
            margin-right: 8px;
        }
        .meta span {
            margin-right: 20px;
            display: inline-flex;
            align-items: center;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        article h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1.2rem;
            color: var(--dark);
            padding-left: 15px;
            border-left: 5px solid var(--primary);
        }
        article h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: #444;
        }
        article ul, article ol {
            margin-left: 1.8rem;
            margin-bottom: 1.5rem;
        }
        article li {
            margin-bottom: 0.7rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-left: 5px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .featured-image figcaption {
            text-align: center;
            padding: 10px;
            font-style: italic;
            color: var(--gray);
            background: #f8f9fa;
        }
        .link-in-text {
            font-weight: 600;
            color: var(--secondary);
            border-bottom: 2px dotted var(--secondary);
        }
        .link-in-text:hover {
            border-bottom-style: solid;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--radius);
            padding: 1.8rem;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            color: var(--dark);
            display: flex;
            align-items: center;
        }
        .widget-title i {
            margin-right: 10px;
            color: var(--primary);
        }
        .search-form input {
            width: 100%;
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: var(--radius);
            font-size: 1rem;
            margin-bottom: 10px;
        }
        .search-form button {
            width: 100%;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .rating-stars .star {
            margin: 0 5px;
        }
        .rating-stars .star.active, .rating-stars .star:hover {
            color: var(--warning);
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 12px;
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .footer-links {
            background: var(--dark);
            padding: 3rem 0 2rem;
            color: #ddd;
        }
        .web-link {
            display: inline-block;
            margin: 0 15px 15px 0;
            padding: 8px 16px;
            background: rgba(255,255,255,0.08);
            border-radius: 30px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        .web-link a {
            color: white;
        }
        footer {
            background: #111;
            color: #aaa;
            padding: 2.5rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 1.5rem;
            border-top: 1px solid #333;
            padding-top: 1.5rem;
            width: 100%;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 1.9rem;
            }
            article h1 {
                font-size: 2.3rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .header-container {
                padding: 0 15px;
            }
            .breadcrumb .container {
                padding: 0 15px;
            }
            article {
                padding: 1.8rem;
            }
            .section-title {
                font-size: 1.7rem;
            }
            article h1 {
                font-size: 2rem;
            }
            article h2 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            article {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 1.8rem;
            }
            .meta span {
                margin-right: 15px;
                margin-bottom: 5px;
            }
        }
