        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            background-attachment: fixed;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Georgia', serif; color: #1a365d; margin-bottom: 1rem; }
        h1 { font-size: 2.8rem; line-height: 1.2; border-left: 6px solid #e53e3e; padding-left: 1rem; }
        h2 { font-size: 2.2rem; padding-bottom: 0.5rem; border-bottom: 3px double #cbd5e0; }
        h3 { font-size: 1.8rem; color: #2d3748; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        .lead { font-size: 1.3rem; color: #4a5568; font-weight: 500; }
        .highlight { background-color: #fffacd; padding: 0.3rem 0.6rem; border-radius: 4px; }
        em { color: #718096; font-style: italic; }
        strong { color: #2d3748; font-weight: 700; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .grid-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .grid-main { grid-template-columns: 1fr; }
        }
        .site-header {
            background: linear-gradient(90deg, #1a202c 0%, #2d3748 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Impact', fantasy;
            font-size: 2.2rem;
            color: #fbd38d;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo a:hover { color: #fff; }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #cbd5e0;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s;
        }
        .nav-desktop a:hover {
            background-color: #4fd1c7;
            color: #1a202c;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            background: #2d3748;
            padding: 1rem;
            margin-top: 1rem;
            border-radius: 8px;
        }
        .nav-mobile.active { display: block; }
        .nav-mobile ul { list-style: none; }
        .nav-mobile a {
            color: #cbd5e0;
            text-decoration: none;
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid #4a5568;
        }
        .nav-mobile a:hover { color: #fbd38d; }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #718096;
        }
        .breadcrumb a {
            color: #4fd1c7;
            text-decoration: none;
        }
        .breadcrumb span { color: #a0aec0; }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }
        .hero-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            border: 5px solid #e2e8f0;
        }
        .section {
            margin: 3rem 0;
            padding: 1.5rem;
            background: #f8f9fa;
            border-radius: 10px;
            border-left: 5px solid #e53e3e;
        }
        .tip-box {
            background: #e6fffa;
            border: 2px dashed #38b2ac;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .team-comparison {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .team-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.1);
        }
        .rating { color: #f6ad55; }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget { margin-bottom: 2rem; }
        .widget-title {
            font-size: 1.3rem;
            color: #2d3748;
            border-bottom: 2px solid #cbd5e0;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #cbd5e0;
            border-radius: 8px;
            font-size: 1rem;
            width: 100%;
        }
        button {
            background: #3182ce;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        button:hover { background: #2c5282; }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .stars span { color: #e2e8f0; }
        .stars span.active { color: #f6ad55; }
        .footer-links {
            background: #2d3748;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: #4a5568;
            padding: 1.2rem;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .web-link:hover { background: #718096; }
        .web-link a {
            color: #fbd38d;
            text-decoration: none;
            font-weight: 500;
        }
        .web-link a:hover { text-decoration: underline; }
        .site-footer {
            background: #1a202c;
            color: #cbd5e0;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright { font-size: 0.9rem; color: #a0aec0; }
        .emoji { font-size: 1.2rem; margin-right: 0.5rem; }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
        .p-3 { padding: 1.5rem; }
        .shadow { box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            article { padding: 1.5rem; }
        }
