* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --saffron: #FF9933;
            --green: #138808;
            --white: #FFFFFF;
            --deep-saffron: #E67300;
            --dark-green: #0D5E06;
            --cream: #FFF8F0;
            --charcoal: #2E2E2E;
            --warm-gray: #F5F0EB;
            --gold: #D4A017;
            --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-family);
            background: var(--cream);
            color: var(--charcoal);
            line-height: 1.8;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            min-height: 100vh;
        }
        a {
            color: var(--deep-saffron);
            text-decoration: none;
            transition: color 0.25s ease, border-color 0.25s ease;
            border-bottom: 1px solid transparent;
        }
        a:hover {
            color: var(--dark-green);
            border-bottom-color: var(--dark-green);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        header {
            background: linear-gradient(135deg, var(--saffron) 0%, #FFB347 50%, var(--green) 100%);
            padding: 18px 28px;
            border-radius: 0 0 var(--radius) var(--radius);
            box-shadow: var(--shadow);
            position: relative;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--white);
            text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.12);
            border-bottom: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo:hover {
            color: var(--white);
            border-bottom: none;
            opacity: 0.92;
        }
        .my-logo span {
            background: var(--white);
            color: var(--deep-saffron);
            font-size: 0.7rem;
            padding: 2px 10px;
            border-radius: 40px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 6px 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            border: none;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--white);
            border-radius: 4px;
            transition: 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        nav#main-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 18px;
        }
        nav#main-nav a {
            color: var(--white);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 30px;
            border-bottom: none;
            transition: background 0.25s ease, transform 0.2s ease;
        }
        nav#main-nav a:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-1px);
            border-bottom: none;
        }
        nav#main-nav a.active {
            background: rgba(255, 255, 255, 0.3);
            box-shadow: 0 2px 0 var(--white);
        }
        .breadcrumb {
            width: 100%;
            margin-top: 12px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 4px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 10px;
        }
        .breadcrumb a {
            color: var(--white);
            border-bottom: none;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
            border-bottom: none;
        }
        .breadcrumb span {
            opacity: 0.7;
        }
        .search-section {
            background: var(--white);
            padding: 28px 24px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 28px 0 32px;
            display: flex;
            flex-wrap: wrap;
            gap: 14px 20px;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 153, 51, 0.15);
        }
        .search-section h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--deep-saffron);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
            flex: 1 1 340px;
            gap: 8px;
            max-width: 520px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #e0d6cc;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            background: var(--cream);
        }
        .search-form input:focus {
            border-color: var(--saffron);
        }
        .search-form button {
            padding: 12px 28px;
            background: var(--saffron);
            color: var(--white);
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .search-form button:hover {
            background: var(--deep-saffron);
            transform: scale(1.02);
        }
        main {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 32px 28px 48px;
            margin-bottom: 36px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--deep-saffron);
            line-height: 1.2;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }
        h1::before {
            content: "🃏 ";
            font-size: 2.2rem;
        }
        .last-updated {
            display: inline-block;
            background: var(--warm-gray);
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 24px;
            border-left: 4px solid var(--saffron);
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark-green);
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 6px;
            border-bottom: 3px solid var(--saffron);
            display: inline-block;
        }
        h2::before {
            content: "♠️ ";
            font-size: 1.6rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-top: 32px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3::before {
            content: "✦ ";
            color: var(--gold);
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #3D3D3D;
            margin-top: 24px;
            margin-bottom: 6px;
            padding-left: 12px;
            border-left: 4px solid var(--saffron);
        }
        p {
            margin-bottom: 16px;
            font-size: 1.05rem;
            color: #2C2C2C;
        }
        .content-img {
            margin: 28px 0 32px;
            border-radius: var(--radius);
            overflow: hidden;
            background: var(--warm-gray);
            padding: 8px;
        }
        .content-img img {
            width: 100%;
            border-radius: calc(var(--radius) - 4px);
        }
        .content-img figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #777;
            padding: 8px 0 4px;
            font-style: italic;
        }
        ul,
        ol {
            margin: 12px 0 20px 24px;
            font-size: 1.05rem;
            color: #2C2C2C;
        }
        li {
            margin-bottom: 6px;
        }
        blockquote {
            background: var(--warm-gray);
            border-left: 6px solid var(--saffron);
            padding: 18px 24px;
            margin: 24px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
            color: #3A3A3A;
            font-size: 1.05rem;
        }
        blockquote strong {
            color: var(--deep-saffron);
        }
        .highlight-box {
            background: linear-gradient(135deg, #FFF5E6, #F0FFF0);
            padding: 20px 24px;
            border-radius: var(--radius);
            border: 1px solid #E0D6CC;
            margin: 24px 0;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0 32px;
            padding: 24px;
            background: var(--warm-gray);
            border-radius: var(--radius);
        }
        .comment-box,
        .rating-box {
            background: var(--white);
            padding: 20px 22px;
            border-radius: var(--radius);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            font-size: 1.2rem;
            color: var(--deep-saffron);
        }
        .comment-box h3::before,
        .rating-box h3::before {
            content: "💬 ";
        }
        .rating-box h3::before {
            content: "⭐ ";
        }
        .comment-box textarea,
        .comment-box input,
        .rating-box select,
        .rating-box input {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid #e0d6cc;
            border-radius: 8px;
            font-size: 0.95rem;
            margin-bottom: 10px;
            font-family: var(--font-family);
            transition: border-color 0.3s;
        }
        .comment-box textarea:focus,
        .comment-box input:focus,
        .rating-box select:focus {
            border-color: var(--saffron);
            outline: none;
        }
        .comment-box textarea {
            min-height: 80px;
            resize: vertical;
        }
        .comment-box button,
        .rating-box button {
            padding: 10px 22px;
            background: var(--green);
            color: var(--white);
            border: none;
            border-radius: 40px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            font-size: 0.95rem;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: var(--dark-green);
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            margin-bottom: 10px;
            color: #ccc;
            cursor: pointer;
        }
        .rating-stars .star.active {
            color: var(--gold);
        }
        footer {
            background: var(--charcoal);
            color: #DDD;
            padding: 32px 28px 24px;
            border-radius: var(--radius) var(--radius) 0 0;
            margin-top: 20px;
        }
        footer a {
            color: #FFB347;
            border-bottom: none;
        }
        footer a:hover {
            color: var(--saffron);
            border-bottom: 1px solid var(--saffron);
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 28px;
            margin-bottom: 18px;
            justify-content: center;
        }
        .footer-links a {
            font-size: 0.95rem;
        }
        friend-link {
            display: block;
            padding: 14px 0 10px;
            border-top: 1px solid #444;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        friend-link a {
            margin: 0 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 16px;
            font-size: 0.85rem;
            color: #999;
            border-top: 1px solid #444;
            margin-top: 14px;
        }
        .copyright strong {
            color: #CCC;
        }
        @media (max-width: 820px) {
            .interaction-area {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            header {
                padding: 14px 18px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            nav#main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
                padding: 14px 0 6px;
                background: rgba(0, 0, 0, 0.15);
                border-radius: 10px;
                margin-top: 10px;
            }
            nav#main-nav.show {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 4px 10px;
            }
            main {
                padding: 20px 16px 32px;
            }
            .search-section {
                flex-direction: column;
                padding: 18px 16px;
            }
            .search-form {
                width: 100%;
                max-width: 100%;
            }
            .search-form input {
                font-size: 0.95rem;
            }
            footer {
                padding: 24px 16px 18px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 10px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo span {
                font-size: 0.6rem;
                padding: 1px 8px;
            }
            .search-form button {
                padding: 10px 16px;
                font-size: 0.9rem;
            }
            .rating-stars {
                font-size: 1.3rem;
            }
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
        }
        .tagline {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 20px;
            font-weight: 500;
        }
        .btn-outline {
            display: inline-block;
            padding: 8px 20px;
            border: 2px solid var(--saffron);
            border-radius: 40px;
            font-weight: 600;
            color: var(--deep-saffron);
            background: transparent;
            transition: 0.3s;
        }
        .btn-outline:hover {
            background: var(--saffron);
            color: var(--white);
            border-bottom: 2px solid var(--saffron);
        }
