        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #fcf8f3;
            color: #1e1e1e;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #a93226;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        :root {
            --liverpool-red: #c0392b;
            --red-dark: #a93226;
            --gold: #d4a017;
            --gold-light: #f0d58c;
            --cream: #fcf8f3;
            --charcoal: #1e1e1e;
            --gray-soft: #f0ebe4;
            --gray-mid: #7f8c8d;
            --white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
            --radius: 14px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .site-header {
            background: linear-gradient(135deg, #a93226 0%, #c0392b 50%, #d4a017 100%);
            color: #fff;
            padding: 14px 0;
            box-shadow: 0 4px 16px rgba(192, 57, 43, 0.25);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            background: rgba(255, 255, 255, 0.12);
            padding: 6px 18px;
            border-radius: 40px;
            backdrop-filter: blur(2px);
            border: 2px solid rgba(255, 255, 255, 0.25);
            transition: var(--transition);
            display: inline-block;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        .my-logo:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: var(--gold-light);
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            margin-right: 8px;
            color: var(--gold-light);
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-bar a {
            color: #fff;
            padding: 6px 14px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            background: rgba(255, 255, 255, 0.08);
            transition: var(--transition);
            white-space: nowrap;
        }
        .nav-bar a:hover,
        .nav-bar a:focus {
            background: rgba(255, 255, 255, 0.22);
            text-decoration: none;
            transform: translateY(-1px);
        }
        .nav-bar .active-nav {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .breadcrumb-wrap {
            background: var(--gray-soft);
            padding: 10px 0;
            border-bottom: 1px solid #e0d6cc;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 10px;
            font-size: 0.85rem;
            color: var(--gray-mid);
        }
        .breadcrumb a {
            color: var(--liverpool-red);
            font-weight: 500;
        }
        .breadcrumb i {
            font-size: 0.7rem;
            color: var(--gray-mid);
        }
        .breadcrumb .current {
            color: var(--charcoal);
            font-weight: 600;
        }
        main {
            flex: 1;
            padding: 30px 0 50px;
        }
        .page-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        @media (max-width: 960px) {
            .page-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        .article-content h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--red-dark);
            margin-bottom: 0.5rem;
            letter-spacing: -0.5px;
        }
        .article-content h1 i {
            color: var(--gold);
            margin-right: 12px;
        }
        .article-content h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--liverpool-red);
            margin: 2.2rem 0 0.8rem;
            padding-bottom: 6px;
            border-bottom: 3px solid var(--gold-light);
            display: inline-block;
        }
        .article-content h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 1.8rem 0 0.5rem;
        }
        .article-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #34495e;
            margin: 1.4rem 0 0.4rem;
        }
        .article-content p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #2d2d2d;
        }
        .article-content .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #444;
            background: var(--gray-soft);
            padding: 18px 22px;
            border-radius: var(--radius);
            border-left: 5px solid var(--gold);
            margin-bottom: 2rem;
        }
        .article-content strong {
            color: var(--red-dark);
            font-weight: 700;
        }
        .article-content em {
            font-style: italic;
            color: #555;
        }
        .article-content ul,
        .article-content ol {
            margin-bottom: 1.4rem;
        }
        .article-content li {
            margin-bottom: 0.4rem;
        }
        .article-content .highlight-box {
            background: linear-gradient(135deg, #fff9f0, #fff3e0);
            border: 1px solid #f0d58c;
            border-radius: var(--radius);
            padding: 20px 24px;
            margin: 1.8rem 0;
            box-shadow: var(--shadow-sm);
        }
        .article-content .highlight-box i {
            color: var(--gold);
            margin-right: 8px;
        }
        .feature-image {
            margin: 2rem 0 1.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
            background: var(--gray-soft);
            padding: 8px;
        }
        .feature-image img {
            border-radius: 10px;
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .feature-image figcaption {
            font-size: 0.85rem;
            color: var(--gray-mid);
            text-align: center;
            padding: 10px 0 4px;
            font-style: italic;
        }
        .last-updated {
            display: inline-block;
            background: var(--gray-soft);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: var(--gray-mid);
            margin-bottom: 1.4rem;
            font-weight: 500;
        }
        .last-updated i {
            margin-right: 6px;
            color: var(--gold);
        }
        .sidebar {
            position: sticky;
            top: 110px;
            align-self: start;
        }
        .sidebar-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 20px 18px;
            margin-bottom: 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid #e8e0d6;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--red-dark);
            margin-bottom: 12px;
            border-bottom: 2px solid var(--gold-light);
            padding-bottom: 6px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            padding: 5px 0;
            border-bottom: 1px solid #f0ebe4;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card a {
            font-weight: 500;
            display: block;
            padding: 4px 0;
        }
        .sidebar-card a i {
            margin-right: 8px;
            color: var(--gold);
            font-size: 0.8rem;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin-top: 6px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 14px;
            border: 2px solid #ddd;
            border-radius: 30px;
            font-size: 0.9rem;
            outline: none;
            transition: var(--transition);
            background: var(--white);
        }
        .search-form input:focus {
            border-color: var(--liverpool-red);
            box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
        }
        .search-form button {
            background: var(--liverpool-red);
            color: #fff;
            border: none;
            padding: 0 18px;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--red-dark);
            transform: scale(1.03);
        }
        .comment-section,
        .rating-section {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px;
            margin-top: 30px;
            box-shadow: var(--shadow-sm);
            border: 1px solid #e8e0d6;
        }
        .comment-section h3,
        .rating-section h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--red-dark);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-section h3 i,
        .rating-section h3 i {
            color: var(--gold);
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #ddd;
            border-radius: 12px;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            font-family: inherit;
            transition: var(--transition);
        }
        .comment-form textarea:focus {
            border-color: var(--liverpool-red);
            box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
            outline: none;
        }
        .comment-form .form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin: 12px 0;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 10px 14px;
            border: 2px solid #ddd;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .comment-form .form-row input:focus {
            border-color: var(--liverpool-red);
            outline: none;
            box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
        }
        .comment-form .btn-submit {
            background: var(--liverpool-red);
            color: #fff;
            border: none;
            padding: 10px 32px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form .btn-submit:hover {
            background: var(--red-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(192, 57, 43, 0.25);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 2rem;
            margin: 10px 0 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ddd;
            transition: color 0.2s ease;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
        }
        .rating-form .btn-submit {
            background: var(--gold);
            color: #1e1e1e;
            border: none;
            padding: 10px 32px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form .btn-submit:hover {
            background: #c9a010;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(212, 160, 23, 0.3);
        }
        friend-link {
            display: block;
            background: var(--gray-soft);
            padding: 18px 22px;
            border-radius: var(--radius);
            margin: 20px 0 10px;
            border: 1px solid #e0d6cc;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            font-weight: 500;
            color: var(--liverpool-red);
            background: rgba(192, 57, 43, 0.06);
            padding: 4px 14px;
            border-radius: 20px;
            transition: var(--transition);
        }
        friend-link a:hover {
            background: rgba(192, 57, 43, 0.15);
            text-decoration: none;
        }
        friend-link::before {
            content: "🤝 Friends & Partners";
            display: block;
            font-weight: 700;
            font-size: 1rem;
            color: var(--charcoal);
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }
        .site-footer {
            background: var(--charcoal);
            color: #ccc;
            padding: 28px 0 20px;
            margin-top: 40px;
            border-top: 4px solid var(--gold);
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        .site-footer .copyright {
            font-size: 0.85rem;
            opacity: 0.8;
        }
        .site-footer .copyright strong {
            color: var(--gold-light);
        }
        .site-footer a {
            color: var(--gold-light);
        }
        .site-footer a:hover {
            color: #fff;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-bar {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(0, 0, 0, 0.25);
                padding: 12px 8px;
                border-radius: 16px;
                margin-top: 6px;
            }
            .nav-bar.open {
                display: flex;
            }
            .nav-bar a {
                width: 100%;
                text-align: center;
                padding: 8px 12px;
            }
            .hamburger {
                display: block;
            }
            .article-content h1 {
                font-size: 1.9rem;
            }
            .article-content h2 {
                font-size: 1.4rem;
            }
            .article-content h3 {
                font-size: 1.15rem;
            }
            .article-content p {
                font-size: 0.98rem;
            }
            .sidebar {
                position: static;
            }
            .page-grid {
                gap: 20px;
            }
            .comment-form .form-row input {
                min-width: 100%;
            }
            .site-footer .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.25rem;
                padding: 4px 12px;
            }
            .container {
                padding: 0 12px;
            }
            .article-content h1 {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--red-dark);
            color: #fff;
            padding: 8px 20px;
            border-radius: 0 0 12px 12px;
            z-index: 999;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 0;
        }
        :focus-visible {
            outline: 3px solid var(--gold);
            outline-offset: 2px;
        }
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-in {
            animation: fadeUp 0.6s ease forwards;
        }
        .delay-1 {
            animation-delay: 0.1s;
        }
        .delay-2 {
            animation-delay: 0.2s;
        }
        .delay-3 {
            animation-delay: 0.3s;
        }
