        * { 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: #f8f9fa;
            background-image: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        :root {
            --primary: #2a4365;
            --secondary: #dd6b20;
            --accent: #4caf50;
            --light: #ffffff;
            --dark: #1a202c;
            --gray: #718096;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --radius: 12px;
        }
        .site-header {
            background: var(--primary);
            color: var(--light);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, #fbd786, #dd6b20);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i { color: #fbd786; }
        .nav-desktop { display: flex; gap: 1.8rem; }
        .nav-desktop a {
            padding: 0.5rem 0;
            font-weight: 600;
            position: relative;
        }
        .nav-desktop a:hover { color: #fbd786; }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #fbd786;
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--primary);
            flex-direction: column;
            padding: 1rem 2rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .nav-mobile a:hover { color: #fbd786; padding-left: 10px; }
        .breadcrumb {
            background: #e9ecef;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a { color: var(--secondary); }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { margin: 0 8px; }
        .main-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        @media (max-width: 992px) {
            .main-container { grid-template-columns: 1fr; }
        }
        article {
            background: var(--light);
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--primary);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-left: 10px;
            border-left: 5px solid var(--accent);
        }
        h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
            padding: 1.5rem;
            border-radius: var(--radius);
            border-left: 5px solid var(--secondary);
            margin: 2rem 0;
            font-weight: 600;
        }
        .key-term {
            color: var(--secondary);
            font-weight: 800;
            font-style: italic;
        }
        .inline-link {
            color: var(--secondary);
            font-weight: 600;
            border-bottom: 2px dotted var(--secondary);
        }
        .inline-link:hover {
            color: #dd6b20;
            border-bottom-style: solid;
        }
        .hero-img {
            width: 100%;
            border-radius: var(--radius);
            margin: 2.5rem auto;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .hero-img:hover { transform: scale(1.01); }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: var(--light);
            padding: 1.8rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--primary);
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i { color: var(--secondary); }
        .search-form { display: flex; }
        .search-form input {
            flex: 1;
            padding: 0.9rem;
            border: 2px solid #e2e8f0;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
            outline: none;
        }
        .search-form input:focus { border-color: var(--secondary); }
        .search-form button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #c05621; }
        .rating-form, .comment-form { display: flex; flex-direction: column; gap: 1rem; }
        .stars { display: flex; gap: 5px; font-size: 1.8rem; color: #e2e8f0; }
        .stars i { cursor: pointer; transition: color 0.2s; }
        .stars i:hover, .stars i.active { color: #f6ad55; }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #e2e8f0;
            border-radius: var(--radius);
            font-size: 1rem;
            font-family: inherit;
        }
        textarea { min-height: 120px; resize: vertical; }
        .form-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .form-btn:hover { background: #1a365d; }
        .internal-links {
            background: var(--light);
            padding: 2.5rem;
            margin: 2rem auto;
            max-width: 1400px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .internal-links h2 {
            text-align: center;
            border: none;
            padding-left: 0;
            margin-bottom: 2rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.2rem;
        }
        .web-link {
            background: #f1f8ff;
            padding: 1.2rem;
            border-radius: 10px;
            border: 1px solid #c3dafe;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: #ebf8ff;
            border-color: var(--secondary);
            transform: translateY(-3px);
        }
        .web-link a {
            color: var(--primary);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link a i { color: var(--secondary); }
        footer {
            background: var(--dark);
            color: #cbd5e0;
            padding: 3rem 2rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-col h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-col h4 i { color: var(--secondary); }
        .footer-col a {
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .footer-col a:hover { color: white; padding-left: 8px; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #a0aec0;
        }
        @media (max-width: 768px) {
            .header-container { padding: 0 1rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .main-container, article { padding: 1.5rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            .internal-links { padding: 1.5rem; }
            .web-links-grid { grid-template-columns: 1fr; }
        }
