        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #3a6ea5; 
            --secondary: #c84c0c; 
            --dark: #1a1a2e;
            --light: #f5f7fa;
            --gray: #6c757d;
            --success: #28a745;
            --warning: #ffc107;
            --danger: #dc3545;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light);
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        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;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            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: 800;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(to right, #4cc9f0, var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav.desktop-nav a {
            color: #ddd;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        nav.desktop-nav a:hover {
            color: white;
        }
        nav.desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: width 0.3s;
        }
        nav.desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 1rem;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: transform 0.4s ease, opacity 0.4s;
            z-index: 999;
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 1rem;
        }
        .mobile-nav a {
            color: #ddd;
            font-size: 1.2rem;
            display: block;
            padding: 0.8rem;
            border-radius: var(--border-radius);
        }
        .mobile-nav a:hover {
            background-color: rgba(255,255,255,0.05);
            color: white;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem 0;
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: var(--gray);
        }
        .search-container {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
            text-align: center;
        }
        .search-container h2 {
            margin-bottom: 1rem;
            color: var(--dark);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-form input:focus {
            border-color: var(--primary);
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #2a5685;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 3rem;
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--secondary);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #555;
            margin: 2rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 2rem;
            padding-left: 1rem;
            border-left: 5px solid var(--secondary);
        }
        strong {
            color: var(--dark);
            font-weight: 700;
        }
        em {
            color: var(--secondary);
            font-style: italic;
        }
        .boss-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
        }
        .boss-table th, .boss-table td {
            border: 1px solid #dee2e6;
            padding: 1.2rem;
            text-align: left;
            vertical-align: top;
        }
        .boss-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 700;
        }
        .boss-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .boss-table tr:hover {
            background-color: #e9f7fe;
        }
        .tip-box {
            background: #e7f5ff;
            border-left: 5px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .warning-box {
            background: #fff3cd;
            border-left: 5px solid var(--warning);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .pro-tip {
            background: #d4edda;
            border-left: 5px solid var(--success);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .content-image {
            border-radius: var(--border-radius);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 2.5rem auto;
            border: 5px solid white;
            outline: 1px solid #eee;
            max-width: 800px;
        }
        .user-interaction {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }
        .rating-section, .comment-section {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .rating-section h3, .comment-section h3 {
            margin-top: 0;
            color: var(--primary);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: var(--warning);
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            transform: scale(1.2);
            color: #ff9800;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .rating-form button, .comment-form button {
            align-self: flex-start;
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .rating-form button:hover, .comment-form button:hover {
            background: #2a5685;
        }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
        }
        .comment-form textarea:focus, .comment-form input:focus {
            outline: none;
            border-color: var(--primary);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 4rem 0 2rem;
            padding: 2rem 0;
            border-top: 2px solid #eee;
            border-bottom: 2px solid #eee;
        }
        .web-link {
            background: #f8f9fa;
            padding: 1.2rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background: #e9ecef;
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .web-link a {
            color: var(--dark);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .web-link a::before {
            content: '▶';
            color: var(--secondary);
            font-size: 0.9rem;
        }
        footer {
            background-color: var(--dark);
            color: #aaa;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            width: 100%;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            nav.desktop-nav { display: none; }
            .hamburger { display: block; }
            .user-interaction { grid-template-columns: 1fr; }
            .search-form { flex-direction: column; }
            .search-form input {
                border-radius: var(--border-radius);
                margin-bottom: 0.5rem;
            }
            .search-form button {
                border-radius: var(--border-radius);
                padding: 0.9rem;
            }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            article { padding: 1.5rem; }
            .web-links { grid-template-columns: 1fr; }
        }
        @media print {
            header, nav, .search-container, .user-interaction, .web-links, footer {
                display: none;
            }
            body { background: white; color: black; }
            article { box-shadow: none; padding: 0; }
        }
