        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #faf6f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding: 0 1rem;
        }
        a {
            color: #b23b2c;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #8a2b1e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            background: #ffffff;
            border-radius: 32px;
            box-shadow: 0 2px 40px rgba(0, 0, 0, 0.04);
        }
        :root {
            --primary-red: #c0392b;
            --primary-green: #1e7a3a;
            --gold: #d4a017;
            --cream: #fef9ed;
            --dark-charcoal: #1f1f1f;
            --soft-grey: #f0ebe3;
            --accent-red-light: #fbe9e7;
            --text-muted: #5a5a5a;
            --border-light: #e8e0d6;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.07);
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0 0.8rem 0;
            border-bottom: 2px solid var(--border-light);
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, var(--primary-red), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            line-height: 1.2;
            text-shadow: 0 2px 8px rgba(192, 57, 43, 0.10);
        }
        .my-logo:hover {
            text-decoration: none;
            transform: scale(1.02);
            transition: transform 0.2s ease;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--text-muted);
            -webkit-text-fill-color: var(--text-muted);
            letter-spacing: 1px;
            display: block;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--primary-red);
            border-radius: 12px;
            padding: 0.5rem 0.9rem;
            font-size: 1.6rem;
            color: var(--primary-red);
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: var(--primary-red);
            color: #fff;
        }
        .primary-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 1.2rem;
        }
        .primary-nav a {
            font-weight: 500;
            color: var(--dark-charcoal);
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            font-size: 0.95rem;
            transition: 0.2s;
        }
        .primary-nav a:hover {
            color: var(--primary-red);
            border-bottom-color: var(--primary-red);
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 1rem 0 0.2rem 0;
            font-size: 0.85rem;
            color: var(--text-muted);
            gap: 0.4rem 0.8rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.8rem;
            color: var(--gold);
            font-weight: 700;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--primary-red);
        }
        .breadcrumb .current {
            color: var(--primary-green);
            font-weight: 600;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.25;
            color: var(--dark-charcoal);
            margin: 1.2rem 0 0.8rem 0;
            letter-spacing: -0.02em;
        }
        h1 span {
            background: linear-gradient(145deg, var(--primary-red), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2.4rem 0 1rem 0;
            color: var(--primary-green);
            border-left: 6px solid var(--gold);
            padding-left: 1.2rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 1.8rem 0 0.8rem 0;
            color: var(--dark-charcoal);
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.4rem 0 0.5rem 0;
            color: var(--primary-red);
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: var(--text-muted);
            line-height: 1.7;
        }
        .highlight {
            background: var(--accent-red-light);
            padding: 0.1rem 0.4rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .featured-image {
            margin: 2.2rem 0 1.8rem 0;
            border-radius: 20px;
            overflow: hidden;
            background: var(--soft-grey);
        }
        .featured-image figcaption {
            padding: 1rem 1.2rem;
            font-size: 0.9rem;
            color: var(--text-muted);
            background: var(--cream);
            border-radius: 0 0 16px 16px;
            font-style: italic;
        }
        .search-module {
            background: var(--cream);
            padding: 1.6rem 2rem;
            border-radius: 24px;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }
        .search-module label {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--dark-charcoal);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-module input[type="text"] {
            flex: 1 1 240px;
            padding: 0.75rem 1.2rem;
            border: 2px solid var(--border-light);
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: 0.2s;
        }
        .search-module input[type="text"]:focus {
            border-color: var(--primary-red);
            box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.12);
        }
        .search-module button {
            background: var(--primary-red);
            color: #fff;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-module button:hover {
            background: #a03226;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0 1.5rem 0;
        }
        .feedback-card {
            background: var(--cream);
            border-radius: 24px;
            padding: 1.8rem 2rem;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: var(--dark-charcoal);
        }
        .feedback-card textarea,
        .feedback-card input[type="number"],
        .feedback-card input[type="text"] {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid var(--border-light);
            border-radius: 16px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: 0.2s;
            margin-top: 0.5rem;
            font-family: inherit;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: var(--primary-green);
            box-shadow: 0 0 0 4px rgba(30, 122, 58, 0.10);
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            margin-top: 1rem;
            background: var(--primary-green);
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card button:hover {
            background: #155d2e;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: var(--gold);
            margin: 0.6rem 0;
            cursor: pointer;
        }
        .rating-stars i {
            transition: 0.15s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        friend-link {
            display: block;
            background: var(--soft-grey);
            border-radius: 24px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0 1rem 0;
            border: 1px solid var(--border-light);
        }
        friend-link::before {
            content: "🔗 Friendly Links";
            display: block;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark-charcoal);
            margin-bottom: 1rem;
            letter-spacing: 0.3px;
        }
        .friend-links-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.5rem;
        }
        .friend-links-grid a {
            color: var(--primary-red);
            font-weight: 500;
            padding: 0.2rem 0.8rem;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 30px;
            border: 1px solid rgba(192, 57, 43, 0.15);
            transition: 0.2s;
        }
        .friend-links-grid a:hover {
            background: var(--primary-red);
            color: #fff;
            text-decoration: none;
        }
        .site-footer {
            margin: 2.5rem 0 1rem 0;
            padding: 1.8rem 0 1rem 0;
            border-top: 2px solid var(--border-light);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .site-footer .copyright {
            font-weight: 500;
            color: var(--dark-charcoal);
        }
        .last-updated {
            display: inline-block;
            background: var(--cream);
            padding: 0.2rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            margin-bottom: 1rem;
            color: var(--text-muted);
        }
        @media (max-width: 940px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .container {
                padding: 0.8rem 1rem;
            }
            .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                padding: 1.2rem 0 0.8rem 0;
                gap: 0.5rem;
                border-top: 1px solid var(--border-light);
                margin-top: 0.8rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .nav-toggle {
                display: block;
            }
            .search-module {
                flex-direction: column;
                align-items: stretch;
                padding: 1.2rem 1.2rem;
            }
            .search-module button {
                justify-content: center;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .friend-links-grid {
                flex-direction: column;
                gap: 0.4rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.5rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 0.8rem;
            }
            .feedback-card {
                padding: 1.2rem 1rem;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
        .emoji-lg {
            font-size: 1.6rem;
            line-height: 1;
        }
        .text-gold {
            color: var(--gold);
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .inline-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            margin: 0.8rem 0;
        }
        .inline-list li::before {
            content: "🎄";
            margin-right: 0.4rem;
        }
        .bingo-box {
            background: linear-gradient(145deg, var(--cream), #fff);
            border-radius: 20px;
            padding: 1.6rem 2rem;
            border-left: 6px solid var(--gold);
            margin: 2rem 0;
            box-shadow: var(--shadow-sm);
        }
        .bingo-box strong {
            color: var(--primary-red);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        th {
            background: var(--primary-green);
            color: #fff;
            padding: 0.8rem 1rem;
            font-weight: 600;
            text-align: left;
        }
        td {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid var(--border-light);
            background: #fff;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: var(--accent-red-light);
        }
