        * { 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: #2c3e50;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .site-header {
            background: linear-gradient(135deg, #1a5276 0%, #2e86c1 100%);
            color: white;
            padding: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            letter-spacing: -1px;
            text-transform: uppercase;
            font-family: Georgia, serif;
        }
        .logo span { color: #f1c40f; }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0;
            transition: color 0.3s, border-bottom 0.3s;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover, .desktop-nav a.active {
            color: #f1c40f;
            border-bottom: 2px solid #f1c40f;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: #154360;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem 0;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-nav.active { display: block; }
        .mobile-nav ul { list-style: none; }
        .mobile-nav li { margin: 0; }
        .mobile-nav a {
            display: block;
            padding: 1rem 2rem;
            color: white;
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-nav a:hover { background: #1a5276; }
        .breadcrumb {
            background: #e8f4fc;
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin: 0 10px;
            color: #7f8c8d;
        }
        .breadcrumb a {
            color: #2980b9;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .main-content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2.5rem auto;
        }
        @media (max-width: 992px) {
            .main-content-area { grid-template-columns: 1fr; }
        }
        .article-content {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        .article-header { margin-bottom: 2rem; }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1a5276;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .article-meta {
            color: #7f8c8d;
            font-size: 0.95rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
        }
        .article-meta i { margin-right: 5px; }
        .article-body h2 {
            color: #2c3e50;
            margin: 2.5rem 0 1.2rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f1c40f;
            font-size: 1.8rem;
        }
        .article-body h3 {
            color: #2c3e50;
            margin: 2rem 0 1rem 0;
            font-size: 1.5rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .article-body strong { color: #1a5276; }
        .article-body em { color: #27ae60; }
        .highlight-box {
            background: linear-gradient(to right, #e8f4fc, #f9f9f9);
            border-left: 5px solid #3498db;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border: 1px solid #ddd;
        }
        .img-caption {
            font-style: italic;
            color: #7f8c8d;
            margin-top: 0.8rem;
            font-size: 0.9rem;
        }
        .strategy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .strategy-card {
            background: white;
            border: 1px solid #e3e3e3;
            padding: 1.5rem;
            border-radius: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .strategy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget-title {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f1c40f;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group { display: flex; flex-direction: column; }
        .form-label { margin-bottom: 0.5rem; font-weight: 600; color: #34495e; }
        .form-input, .form-textarea {
            padding: 0.8rem 1rem;
            border: 1px solid #bdc3c7;
            border-radius: 6px;
            font-family: inherit;
            transition: border 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        .form-textarea { min-height: 120px; resize: vertical; }
        .btn {
            background: #3498db;
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            align-self: flex-start;
        }
        .btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }
        .btn-secondary { background: #2ecc71; }
        .btn-secondary:hover { background: #27ae60; }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            gap: 5px;
        }
        .star-rating input { display: none; }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label { color: #f1c40f; }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin: 3rem 0 2rem 0;
        }
        .web-link {
            background: #e8f4fc;
            border-radius: 6px;
            padding: 1rem;
            text-align: center;
        }
        .web-link a {
            color: #1a5276;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }
        .web-link a:hover { color: #f39c12; text-decoration: underline; }
        .site-footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h3 {
            color: #f1c40f;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: #f1c40f; }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #4a6572;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .article-header h1 { font-size: 2rem; }
            .article-content { padding: 1.5rem; }
            .main-content-area { gap: 1.5rem; }
            .header-content, .breadcrumb .container { padding: 0 15px; }
        }
