        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --red: #ED1C24;
            --red-dark: #b8141a;
            --blue: #1E3A8A;
            --blue-light: #3B82F6;
            --yellow: #FBBF24;
            --green: #10B981;
            --dark: #0F172A;
            --dark-2: #1E293B;
            --gray-100: #F1F5F9;
            --gray-200: #E2E8F0;
            --gray-300: #CBD5E1;
            --gray-400: #94A3B8;
            --gray-500: #64748B;
            --white: #FFFFFF;
            --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.14);
            --radius: 16px;
            --radius-sm: 8px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-w: 1200px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--gray-100);
            color: var(--dark);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--blue);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--red);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            font-weight: 700;
            color: var(--dark);
        }
        .container {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        header {
            background: var(--white);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 0;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--red);
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            text-decoration: none;
            transition: var(--transition);
        }
        .my-logo:hover {
            color: var(--red-dark);
            text-decoration: none;
            transform: scale(1.02);
        }
        .my-logo span {
            color: var(--blue);
        }
        .my-logo i {
            font-size: 1.5rem;
            color: var(--yellow);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: var(--dark);
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: var(--gray-200);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--dark-2);
            padding: 0.4rem 0.6rem;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            position: relative;
        }
        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--red);
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-menu li a:hover::after,
        .nav-menu li a.active::after {
            width: 100%;
        }
        .nav-menu li a:hover {
            background: var(--gray-100);
            text-decoration: none;
        }
        .breadcrumb {
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
            padding: 0.5rem 0;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin: 0 0.4rem;
            color: var(--gray-400);
        }
        .breadcrumb a {
            color: var(--gray-500);
        }
        .breadcrumb a:hover {
            color: var(--red);
        }
        .breadcrumb .current {
            color: var(--dark);
            font-weight: 600;
        }
        main {
            padding: 2rem 0 3rem;
        }
        .hero {
            background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 60%, var(--dark) 100%);
            color: var(--white);
            padding: 3rem 1.5rem;
            border-radius: var(--radius);
            margin-bottom: 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "🃏";
            position: absolute;
            font-size: 12rem;
            opacity: 0.08;
            top: -2rem;
            right: -2rem;
            transform: rotate(15deg);
        }
        .hero::after {
            content: "🎯";
            position: absolute;
            font-size: 8rem;
            opacity: 0.06;
            bottom: -1rem;
            left: -1rem;
            transform: rotate(-10deg);
        }
        .hero h1 {
            font-size: 2.8rem;
            color: var(--white);
            margin-bottom: 0.75rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.92;
            max-width: 780px;
            margin: 0 auto 1.5rem;
        }
        .hero .badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(6px);
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.25);
        }
        .hero .badge i {
            margin-right: 0.4rem;
        }
        .last-update {
            display: block;
            margin-top: 1rem;
            font-size: 0.85rem;
            opacity: 0.7;
        }
        .section {
            background: var(--white);
            border-radius: var(--radius);
            padding: 2rem 1.8rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .section:hover {
            box-shadow: var(--shadow-hover);
        }
        .section h2 {
            font-size: 1.8rem;
            margin-bottom: 1.2rem;
            border-left: 6px solid var(--red);
            padding-left: 1rem;
            color: var(--dark);
        }
        .section h3 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
            color: var(--dark-2);
        }
        .section h4 {
            font-size: 1.15rem;
            margin: 1.2rem 0 0.6rem;
            color: var(--gray-500);
            font-weight: 600;
        }
        .section p {
            margin-bottom: 1rem;
            color: var(--dark-2);
            font-size: 1.05rem;
        }
        .section .highlight {
            background: linear-gradient(to right, #FEF3C7, #FDE68A);
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .section .emoji-big {
            font-size: 2rem;
            display: inline-block;
            margin-right: 0.4rem;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .card {
            background: var(--gray-100);
            border-radius: var(--radius-sm);
            padding: 1.5rem;
            border: 1px solid var(--gray-200);
            transition: var(--transition);
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: var(--red);
        }
        .card i {
            font-size: 2rem;
            color: var(--red);
            margin-bottom: 0.6rem;
        }
        .card h4 {
            margin: 0 0 0.5rem;
            color: var(--dark);
        }
        .card p {
            font-size: 0.95rem;
            margin: 0;
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--gray-200);
            text-align: center;
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
            color: var(--gray-500);
            background: var(--gray-100);
            font-style: italic;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            padding: 0.8rem 0;
            margin: 1rem 0;
        }
        .link-list-inline a {
            background: var(--gray-100);
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.9rem;
            border: 1px solid var(--gray-200);
            transition: var(--transition);
            font-weight: 500;
        }
        .link-list-inline a:hover {
            background: var(--red);
            color: var(--white);
            border-color: var(--red);
            text-decoration: none;
        }
        .search-box {
            display: flex;
            gap: 0.6rem;
            max-width: 600px;
            margin: 1.2rem 0;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: 2px solid var(--gray-200);
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
            background: var(--white);
        }
        .search-box input:focus {
            border-color: var(--red);
            box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.12);
        }
        .search-box button {
            padding: 0.8rem 1.8rem;
            background: var(--red);
            color: var(--white);
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-box button:hover {
            background: var(--red-dark);
            transform: scale(1.02);
        }
        .comment-area {
            margin-top: 1.5rem;
        }
        .comment-area textarea {
            width: 100%;
            min-height: 100px;
            padding: 1rem;
            border: 2px solid var(--gray-200);
            border-radius: var(--radius-sm);
            font-family: var(--font);
            font-size: 1rem;
            resize: vertical;
            outline: none;
            transition: var(--transition);
        }
        .comment-area textarea:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.08);
        }
        .comment-area .row {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-top: 0.8rem;
        }
        .comment-area .row input {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 2px solid var(--gray-200);
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            transition: var(--transition);
        }
        .comment-area .row input:focus {
            border-color: var(--blue);
        }
        .comment-area .row button {
            padding: 0.7rem 2rem;
            background: var(--blue);
            color: var(--white);
            border: none;
            border-radius: 40px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-area .row button:hover {
            background: var(--blue-light);
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 0.25rem;
            font-size: 2rem;
            cursor: pointer;
            direction: rtl;
            margin: 0.6rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: var(--gray-300);
            transition: var(--transition);
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--yellow);
            transform: scale(1.1);
        }
        .rating-submit {
            padding: 0.5rem 1.8rem;
            background: var(--green);
            color: var(--white);
            border: none;
            border-radius: 40px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 0.5rem;
        }
        .rating-submit:hover {
            background: #059669;
            transform: scale(1.02);
        }
        footer {
            background: var(--dark);
            color: var(--gray-300);
            padding: 3rem 0 1.5rem;
            margin-top: 2rem;
        }
        footer .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
        }
        footer h4 {
            color: var(--white);
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }
        footer a {
            color: var(--gray-400);
        }
        footer a:hover {
            color: var(--yellow);
        }
        footer .friend-link {
            display: block;
            padding: 0.3rem 0;
            font-size: 0.95rem;
        }
        footer .friend-link:hover {
            text-decoration: none;
            color: var(--yellow);
        }
        .footer-bottom {
            grid-column: 1 / -1;
            border-top: 1px solid var(--dark-2);
            padding-top: 1.5rem;
            margin-top: 1rem;
            text-align: center;
            font-size: 0.9rem;
            color: var(--gray-500);
        }
        .footer-bottom a {
            color: var(--gray-400);
        }
        .footer-bottom a:hover {
            color: var(--yellow);
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 0.4rem;
                padding: 0.8rem 0 0.4rem;
                border-top: 1px solid var(--gray-200);
                margin-top: 0.4rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 0.6rem 0.8rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section {
                padding: 1.5rem 1rem;
            }
            .section h2 {
                font-size: 1.4rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box button {
                width: 100%;
                justify-content: center;
            }
            .comment-area .row {
                flex-direction: column;
            }
            .comment-area .row input {
                width: 100%;
            }
            .comment-area .row button {
                width: 100%;
            }
            footer .container {
                grid-template-columns: 1fr;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            .card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 1rem;
        }
        .eeat-note {
            background: var(--gray-100);
            border-left: 4px solid var(--blue);
            padding: 1rem 1.4rem;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 1.2rem 0;
            font-size: 0.95rem;
        }
        .eeat-note i {
            color: var(--blue);
            margin-right: 0.4rem;
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--red);
            color: var(--white);
            border: none;
            font-size: 1.4rem;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: var(--transition);
            z-index: 99;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .scroll-top:hover {
            background: var(--red-dark);
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
