        * { 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.8;
            color: #222;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: #1a5fb4; transition: color 0.3s; }
        a:hover { color: #e45c00; }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 2rem; margin: 1rem 0; }
        li { margin-bottom: 0.5rem; }
        h1, h2, h3, h4 { color: #1a365d; margin-bottom: 1rem; line-height: 1.3; font-weight: 700; }
        h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-top: 1.5rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); border-left: 5px solid #e45c00; padding-left: 1rem; margin-top: 3rem; }
        h3 { font-size: 1.6rem; color: #2d3748; margin-top: 2rem; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        strong { color: #1a365d; }
        .lead { font-size: 1.3rem; color: #4a5568; font-weight: 500; }
        .highlight { background-color: #fffacd; padding: 0.2rem 0.5rem; border-radius: 3px; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a365d 0%, #2d4a7a 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 {
            color: white;
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -1px;
            text-transform: uppercase;
            font-family: 'Trebuchet MS', sans-serif;
        }
        .logo span { color: #ff9a3d; }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #e2e8f0;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: #ff9a3d;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ff9a3d;
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: #1a365d;
            padding: 2rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            z-index: 999;
        }
        .mobile-nav.active { display: block; }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .mobile-nav a {
            color: #e2e8f0;
            font-size: 1.2rem;
            font-weight: 600;
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px solid #2d4a7a;
        }
        .breadcrumb {
            background-color: #edf2f7;
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 0;
            padding: 0;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            margin: 0;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: #718096;
        }
        .breadcrumb a { color: #4a5568; }
        .breadcrumb a:hover { color: #1a5fb4; }
        .main-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-wrapper { grid-template-columns: 1fr; }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-meta {
            color: #718096;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .article-img {
            width: 100%;
            border-radius: 10px;
            margin: 2rem auto;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #718096;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .strategy-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .strategy-table th,
        .strategy-table td {
            padding: 1rem;
            text-align: left;
            border: 1px solid #e2e8f0;
        }
        .strategy-table th {
            background-color: #1a365d;
            color: white;
            font-weight: 600;
        }
        .strategy-table tr:nth-child(even) {
            background-color: #f7fafc;
        }
        aside {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e45c00;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group { display: flex; flex-direction: column; }
        label { font-weight: 600; margin-bottom: 0.5rem; color: #2d3748; }
        input, select, textarea {
            padding: 0.8rem 1rem;
            border: 1px solid #cbd5e0;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
        }
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #1a5fb4;
            box-shadow: 0 0 0 3px rgba(26, 95, 180, 0.2);
        }
        button, .btn {
            background: linear-gradient(to right, #e45c00, #ff7b2c);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
            text-align: center;
            display: inline-block;
        }
        button:hover, .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(228, 92, 0, 0.3);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
        }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 1.8rem;
            color: #cbd5e0;
            cursor: pointer;
            margin: 0;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: #ffc107; }
        .comment-list { margin-top: 2rem; }
        .comment-item {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            border-left: 4px solid #1a5fb4;
        }
        .comment-author {
            font-weight: 700;
            color: #1a365d;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-date {
            color: #718096;
            font-size: 0.9rem;
            margin-left: auto;
        }
        .web-links-section {
            background: #edf2f7;
            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: white;
            padding: 1.2rem;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
        }
        .web-link a {
            color: #2d3748;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .web-link a::before {
            content: '🔗';
            font-size: 1.2rem;
        }
        footer {
            background: #1a365d;
            color: #e2e8f0;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-col h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col li { margin-bottom: 0.8rem; }
        .footer-col a { color: #cbd5e0; }
        .footer-col a:hover { color: #ff9a3d; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2d4a7a;
            color: #a0aec0;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 0 15px; }
            article, aside { padding: 1.5rem; }
            .main-wrapper { gap: 2rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
        }
