:root {
            --primary-green: #4CAF50;
            --dark-green: #2E7D32;
            --zombie-teal: #009688;
            --sun-yellow: #FFC107;
            --blood-red: #D32F2F;
            --dark-gray: #212121;
            --light-gray: #f5f5f5;
            --text-color: #333;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #fafafa;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            color: var(--sun-yellow);
            text-decoration: none;
            text-shadow: 2px 2px 0 var(--blood-red);
            letter-spacing: 1px;
            transition: var(--transition);
        }
        .logo a:hover {
            color: white;
            text-shadow: 3px 3px 0 var(--zombie-teal);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark-green);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background-color: var(--light-gray);
            padding: 0.8rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--dark-green);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .article-content h1 {
            color: var(--dark-green);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: #666;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--light-gray);
        }
        .article-meta i {
            margin-right: 0.5rem;
            color: var(--primary-green);
        }
        .article-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        .article-content h2 {
            color: var(--zombie-teal);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--sun-yellow);
        }
        .article-content h3 {
            color: var(--blood-red);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight-box {
            background: linear-gradient(to right, #E8F5E9, #F1F8E9);
            border-left: 5px solid var(--primary-green);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box strong {
            color: var(--dark-green);
            font-size: 1.2rem;
        }
        .strategy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .strategy-card {
            background: var(--light-gray);
            padding: 1.5rem;
            border-radius: 8px;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        .strategy-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-green);
            box-shadow: var(--shadow);
        }
        .strategy-card h4 {
            color: var(--dark-green);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--dark-green);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--sun-yellow);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem;
            border: 2px solid var(--primary-green);
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary-green);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--dark-green);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ddd;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars .active {
            color: var(--sun-yellow);
        }
        .rating-widget button {
            background: var(--zombie-teal);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            width: 100%;
        }
        .rating-widget button:hover {
            background: #00796B;
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
            margin-bottom: 1rem;
        }
        .comment-form button {
            background: var(--blood-red);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            width: 100%;
        }
        .comment-form button:hover {
            background: #B71C1C;
        }
        .internal-links {
            background: white;
            padding: 2.5rem;
            margin: 2rem 0;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .internal-links h2 {
            color: var(--dark-green);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: var(--light-gray);
            padding: 1rem;
            border-radius: 6px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: #E0F2F1;
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--zombie-teal);
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .site-footer {
            background: var(--dark-gray);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--sun-yellow);
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            line-height: 2.2;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary-green);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .strategy-grid {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content, .sidebar-widget {
            animation: fadeIn 0.8s ease-out;
        }
        .text-bold {
            font-weight: 800;
            color: var(--dark-green);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .tag {
            display: inline-block;
            background: #E3F2FD;
            color: #1565C0;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
