* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f5f3f0;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0 16px;
        }
        .page-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
            border-radius: 24px 24px 0 0;
            overflow: hidden;
            padding: 0 24px 40px;
        }
        .site-header {
            padding: 24px 0 12px;
            border-bottom: 2px solid #e8e3de;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-decoration: none;
            color: #b8860b;
            background: linear-gradient(135deg, #b8860b, #d4a843);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #b8860b;
            margin-right: 6px;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #3a2c1b;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0e8de;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 4px 16px;
            align-items: center;
        }
        .main-nav a {
            text-decoration: none;
            color: #3a2c1b;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 20px;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: #b8860b;
            color: #fff;
        }
        .main-nav a i {
            margin-right: 4px;
        }
        .breadcrumb {
            padding: 16px 0 8px;
            font-size: 0.85rem;
            color: #6b5e4e;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 6px;
            color: #b8860b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6b5e4e;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #b8860b;
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #b8860b;
            font-weight: 600;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #1e1208;
            margin: 32px 0 16px;
            letter-spacing: -0.5px;
        }
        h1 i {
            color: #b8860b;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 48px 0 16px;
            color: #2b1d0f;
            border-left: 5px solid #b8860b;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #3a2c1b;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #4d3b28;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #2a241e;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #7a6b5a;
            margin-bottom: 24px;
            padding: 6px 14px;
            background: #f8f4ef;
            display: inline-block;
            border-radius: 30px;
            border: 1px solid #e8e0d6;
        }
        .featured-image {
            width: 100%;
            border-radius: 20px;
            margin: 24px 0 28px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            display: block;
            height: auto;
            max-height: 600px;
            object-fit: cover;
        }
        .search-section {
            background: #f8f4ef;
            border-radius: 20px;
            padding: 24px 28px;
            margin: 32px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            border: 1px solid #e8e0d6;
        }
        .search-section label {
            font-weight: 600;
            font-size: 1.1rem;
            color: #2b1d0f;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form {
            flex: 1;
            display: flex;
            gap: 8px;
            min-width: 220px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #d6cdc0;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
            background: #fff;
        }
        .search-form input:focus {
            border-color: #b8860b;
        }
        .search-form button {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #9e7209;
            transform: scale(0.98);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0;
        }
        .comment-box,
        .rating-box {
            background: #f8f4ef;
            border-radius: 20px;
            padding: 24px 28px;
            border: 1px solid #e8e0d6;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .comment-box form,
        .rating-box form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }
        .comment-box textarea {
            resize: vertical;
            min-height: 90px;
            padding: 12px 16px;
            border: 2px solid #d6cdc0;
            border-radius: 16px;
            font-size: 1rem;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
        }
        .comment-box textarea:focus {
            border-color: #b8860b;
        }
        .comment-box input[type="text"] {
            padding: 12px 16px;
            border: 2px solid #d6cdc0;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .comment-box input:focus {
            border-color: #b8860b;
        }
        .comment-box button,
        .rating-box button {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: #9e7209;
            transform: scale(0.98);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #d6cdc0;
            transition: color 0.15s;
            cursor: pointer;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5b342;
        }
        .winner-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0 32px;
            font-size: 0.95rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .winner-table thead {
            background: #2b1d0f;
            color: #fff;
        }
        .winner-table th {
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        .winner-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #ede7df;
        }
        .winner-table tbody tr:hover {
            background: #faf6f0;
        }
        .winner-table .highlight {
            background: #fcf6e8;
            font-weight: 600;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
            margin: 28px 0;
        }
        .card {
            background: #faf8f5;
            border-radius: 20px;
            padding: 24px 20px;
            border: 1px solid #e8e0d6;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
        }
        .card i {
            font-size: 2rem;
            color: #b8860b;
            margin-bottom: 12px;
        }
        .card h4 {
            margin-top: 0;
        }
        .card p {
            font-size: 0.95rem;
            color: #4a3f34;
        }
        .link-list-inline {
            padding-left: 24px;
            margin: 16px 0 24px;
        }
        .link-list-inline li {
            margin-bottom: 8px;
        }
        .link-list-inline a {
            color: #9e7209;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px solid transparent;
            transition: border 0.2s;
        }
        .link-list-inline a:hover {
            border-bottom-color: #9e7209;
        }
        .site-footer {
            margin-top: 56px;
            padding: 32px 0 16px;
            border-top: 2px solid #e8e3de;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
        }
        .footer-copy {
            font-size: 0.9rem;
            color: #6b5e4e;
        }
        .footer-copy a {
            color: #b8860b;
            text-decoration: none;
        }
        friend-link {
            display: block;
            font-style: normal;
        }
        friend-link a {
            color: #6b5e4e;
            text-decoration: none;
            font-size: 0.9rem;
            margin-right: 16px;
            transition: color 0.2s;
        }
        friend-link a:hover {
            color: #b8860b;
            text-decoration: underline;
        }
        friend-link .label {
            font-weight: 600;
            color: #2b1d0f;
            margin-right: 8px;
        }
        @media (max-width: 800px) {
            .page-wrapper {
                padding: 0 16px 32px;
                border-radius: 16px 16px 0 0;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            .winner-table {
                font-size: 0.8rem;
            }
            .winner-table th,
            .winner-table td {
                padding: 8px 10px;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 640px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 12px 0 4px;
                gap: 2px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 14px;
                border-radius: 12px;
                width: 100%;
            }
            .site-header {
                padding-bottom: 8px;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        @media (min-width: 641px) {
            .main-nav {
                display: flex !important;
            }
        }
        .schema-hidden {
            display: none;
        }
