*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #c0392b;
            --primary-dark: #96281b;
            --secondary: #f39c12;
            --accent: #2c3e50;
            --bg: #fdf6ec;
            --bg-card: #ffffff;
            --text: #2d2d2d;
            --text-light: #6b6b6b;
            --border: #e0d6c8;
            --shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
            --radius: 16px;
            --font: 'Segoe UI', system-ui, -apple-system, Roboto, 'Helvetica Neue', sans-serif;
            --max-width: 1120px;
            --header-bg: linear-gradient(145deg, #1a1a2e, #16213e);
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--header-bg);
            color: #fff;
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.75rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            color: var(--secondary);
            font-size: 1.8rem;
        }
        .my-logo:hover {
            color: var(--secondary);
            text-decoration: none;
        }
        .my-logo span {
            background: var(--secondary);
            color: #1a1a2e;
            padding: 0 10px;
            border-radius: 40px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #eee;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background: rgba(255, 255, 255, 0.12);
            color: var(--secondary);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 10px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            border-color: var(--secondary);
            color: var(--secondary);
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.06);
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            display: inline-flex;
            flex-wrap: wrap;
            gap: 4px 8px;
            margin-top: 6px;
        }
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
        }
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        .breadcrumb .sep {
            opacity: 0.5;
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: clamp(2rem, 5.5vw, 3.6rem);
            font-weight: 900;
            line-height: 1.2;
            background: linear-gradient(135deg, #c0392b, #e74c3c, #f39c12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }
        .hero .subtitle {
            font-size: 1.15rem;
            color: var(--text-light);
            max-width: 720px;
            margin: 0 auto 20px;
        }
        .hero .meta-badge {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px 24px;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .hero .meta-badge i {
            color: var(--primary);
            margin-right: 6px;
        }
        .last-updated {
            background: var(--secondary);
            color: #1a1a2e;
            padding: 2px 16px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.8rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px 0 50px;
        }
        .main-article {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 36px 32px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px 20px;
            box-shadow: var(--shadow);
            margin-bottom: 24px;
        }
        .sidebar-card h4 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            border-left: 4px solid var(--primary);
            padding-left: 12px;
            color: var(--accent);
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card li {
            padding: 6px 0;
            border-bottom: 1px solid var(--border);
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card a {
            font-size: 0.9rem;
        }
        .main-article h2 {
            font-size: 1.9rem;
            font-weight: 800;
            margin: 48px 0 18px;
            color: var(--accent);
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 8px;
        }
        .main-article h2:first-child {
            margin-top: 0;
        }
        .main-article h3 {
            font-size: 1.45rem;
            font-weight: 700;
            margin: 32px 0 12px;
            color: var(--primary-dark);
        }
        .main-article h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: var(--accent);
        }
        .main-article p {
            margin-bottom: 16px;
            font-size: 1.02rem;
        }
        .main-article ul,
        .main-article ol {
            margin: 12px 0 20px 24px;
        }
        .main-article li {
            margin-bottom: 6px;
        }
        .main-article .highlight-box {
            background: #fef9e7;
            border-left: 6px solid var(--secondary);
            padding: 20px 24px;
            border-radius: 12px;
            margin: 24px 0;
        }
        .main-article .highlight-box strong {
            color: var(--primary);
        }
        .main-article .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .main-article .stat-card {
            background: var(--bg);
            padding: 18px 14px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border);
        }
        .main-article .stat-card .num {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary);
        }
        .main-article .stat-card .label {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-top: 2px;
        }
        .feature-image {
            margin: 28px 0;
            border-radius: var(--radius);
            overflow: hidden;
            background: #eae0d2;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 240px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="400" viewBox="0 0 800 400"><rect fill="%23d4c5b2" width="800" height="400"/><text x="400" y="200" font-family="system-ui" font-size="28" fill="%23907b6a" text-anchor="middle" dominant-baseline="middle">🎯 Kick The Buddy But With Wenda — Hero Image</text></svg>');
            background-size: cover;
            background-position: center;
        }
        .feature-image img {
            width: 100%;
            display: block;
        }
        .search-section {
            margin: 32px 0 20px;
        }
        .search-form {
            display: flex;
            gap: 8px;
            max-width: 540px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid var(--border);
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
            background: var(--bg);
        }
        .search-form input:focus {
            border-color: var(--primary);
        }
        .search-form button {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
        }
        .rating-area {
            background: var(--bg);
            padding: 24px 28px;
            border-radius: var(--radius);
            margin: 36px 0 20px;
            border: 1px solid var(--border);
        }
        .rating-area h4 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.15s;
            color: #ddd;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--secondary);
        }
        .rating-form button {
            margin-top: 12px;
            background: var(--accent);
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .rating-form button:hover {
            background: #1a2a3a;
            transform: scale(1.02);
        }
        .comment-section {
            margin: 32px 0 10px;
        }
        .comment-section textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-size: 1rem;
            font-family: var(--font);
            resize: vertical;
            min-height: 90px;
            outline: none;
            transition: 0.2s;
            background: var(--bg);
        }
        .comment-section textarea:focus {
            border-color: var(--primary);
        }
        .comment-section .comment-btn {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 10px 32px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 8px;
        }
        .comment-section .comment-btn:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
        }
        .site-footer {
            background: var(--header-bg);
            color: rgba(255, 255, 255, 0.85);
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        .site-footer h5 {
            color: var(--secondary);
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .site-footer a {
            color: rgba(255, 255, 255, 0.75);
        }
        .site-footer a:hover {
            color: var(--secondary);
        }
        friend-link {
            display: block;
            padding: 10px 0;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 14px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 40px;
            font-size: 0.9rem;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 18px;
            margin-top: 24px;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .sidebar-card {
                margin-bottom: 0;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(0, 0, 0, 0.3);
                padding: 12px 0;
                border-radius: 16px;
                margin-top: 6px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 20px;
                width: 100%;
                text-align: center;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .main-article {
                padding: 24px 16px;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .search-form {
                flex-wrap: wrap;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .rating-area {
                padding: 16px;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.7rem;
                padding: 4px 12px;
            }
        }
        .text-small {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .mt-1 {
            margin-top: 8px;
        }
        .mb-1 {
            margin-bottom: 8px;
        }
        .fw-700 {
            font-weight: 700;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .gap-4 {
            gap: 4px;
        }
        .emoji-lg {
            font-size: 1.6rem;
        }
        .img-placeholder {
            background: linear-gradient(145deg, #d4c5b2, #eae0d2);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 220px;
            border-radius: var(--radius);
            color: #907b6a;
            font-weight: 600;
            font-size: 1.1rem;
            gap: 12px;
            flex-wrap: wrap;
            padding: 20px;
            text-align: center;
        }
        .img-placeholder i {
            font-size: 2.4rem;
            opacity: 0.6;
        }
