        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #f8f6f2;
            color: #222;
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }
        a { color: #d4652a; text-decoration: none; transition: color 0.2s; }
        a:hover { color: #a34b1f; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; border-radius: 12px; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .schema-hidden { display: none; }
        .site-header {
            background: linear-gradient(135deg, #1a2a3a 0%, #0f1a26 100%);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            background: linear-gradient(135deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s;
        }
        .my-logo:hover { transform: scale(1.03); text-decoration: none; }
        .my-logo i { font-size: 2rem; -webkit-text-fill-color: initial; color: #ffd200; }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255,255,255,0.3);
            color: #fff;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover { background: rgba(255,255,255,0.1); }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e0e0e0;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .nav-menu a:hover, .nav-menu a.active {
            background: rgba(255,255,255,0.12);
            color: #ffd200;
            text-decoration: none;
        }
        .breadcrumb-wrap {
            background: #fff;
            padding: 10px 0;
            border-bottom: 1px solid #e8e3dc;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: #777;
        }
        .breadcrumb a { color: #d4652a; }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb .sep { color: #bbb; }
        .hero {
            background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
            padding: 50px 0 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🥤";
            position: absolute;
            font-size: 12rem;
            right: -30px;
            bottom: -40px;
            opacity: 0.15;
            transform: rotate(-15deg);
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            color: #1a2a3a;
            letter-spacing: -1px;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero p {
            font-size: 1.2rem;
            color: #2d1f0a;
            max-width: 750px;
            margin: 0 auto 16px;
            opacity: 0.9;
        }
        .hero .meta-badge {
            display: inline-flex;
            align-items: center;
            gap: 18px;
            background: rgba(255,255,255,0.35);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.95rem;
            color: #1a2a3a;
            font-weight: 500;
            backdrop-filter: blur(4px);
        }
        section { padding: 50px 0; }
        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: #1a2a3a;
            margin-bottom: 28px;
            position: relative;
            padding-bottom: 14px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, #f7971e, #ffd200);
            border-radius: 4px;
        }
        .section-title.centered { text-align: center; }
        .section-title.centered::after { left: 50%; transform: translateX(-50%); }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.05);
            margin-bottom: 24px;
            transition: box-shadow 0.3s, transform 0.2s;
        }
        .card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08); transform: translateY(-2px); }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
        .content-article p { margin-bottom: 1.6em; font-size: 1.05rem; color: #333; }
        .content-article h2 { font-size: 1.9rem; margin: 40px 0 16px; color: #1a2a3a; font-weight: 700; }
        .content-article h3 { font-size: 1.5rem; margin: 32px 0 12px; color: #2d3e4e; font-weight: 600; }
        .content-article h4 { font-size: 1.2rem; margin: 24px 0 10px; color: #3d4f5e; font-weight: 600; }
        .content-article ul, .content-article ol { margin: 0 0 1.6em 2em; }
        .content-article li { margin-bottom: 8px; }
        .content-article strong { color: #1a2a3a; }
        .content-article .highlight-box {
            background: linear-gradient(135deg, #fef9ef, #fdf3e0);
            border-left: 5px solid #f7971e;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .content-article .emoji-big { font-size: 2rem; vertical-align: middle; }
        .search-box {
            display: flex;
            max-width: 560px;
            margin: 0 auto 30px;
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            border: 2px solid #e8e3dc;
            transition: border-color 0.3s;
        }
        .search-box:focus-within { border-color: #f7971e; }
        .search-box input {
            flex: 1;
            padding: 16px 24px;
            border: none;
            font-size: 1rem;
            outline: none;
            background: #fff;
            font-family: inherit;
        }
        .search-box button {
            background: linear-gradient(135deg, #f7971e, #ffd200);
            border: none;
            padding: 0 30px;
            font-size: 1.1rem;
            color: #1a2a3a;
            cursor: pointer;
            transition: opacity 0.2s;
            font-weight: 600;
        }
        .search-box button:hover { opacity: 0.85; }
        .comment-form, .rating-form {
            background: #fff;
            padding: 28px 30px;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.05);
        }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e0dbd4;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
            margin-bottom: 16px;
            background: #fafaf8;
        }
        .comment-form textarea:focus, .comment-form input:focus { border-color: #f7971e; outline: none; }
        .comment-form textarea { min-height: 120px; resize: vertical; }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border: none;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
            font-family: inherit;
        }
        .btn-primary {
            background: linear-gradient(135deg, #f7971e, #ffd200);
            color: #1a2a3a;
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(247,151,30,0.35); }
        .btn-secondary {
            background: #1a2a3a;
            color: #fff;
        }
        .btn-secondary:hover { background: #2d3e4e; transform: translateY(-2px); }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            font-size: 2rem;
            margin: 10px 0 18px;
        }
        .star-rating input { display: none; }
        .star-rating label {
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #f7971e;
            transform: scale(1.05);
        }
        .site-footer {
            background: #1a2a3a;
            color: #c8d0d8;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }
        .site-footer h4 { color: #fff; font-size: 1.2rem; margin-bottom: 16px; }
        .site-footer a { color: #ffd200; }
        .site-footer a:hover { color: #fff; text-decoration: underline; }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
        }
        .friend-link {
            display: block;
            padding: 6px 0;
            font-size: 0.95rem;
        }
        .friend-link a { color: #ffd200; }
        @media (max-width: 768px) {
            .nav-toggle { display: block; }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 12px;
                border-top: 1px solid rgba(255,255,255,0.1);
                margin-top: 10px;
            }
            .nav-menu.open { display: flex; }
            .nav-menu a { padding: 12px 16px; border-radius: 8px; }
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1rem; }
            .grid-2, .grid-3 { grid-template-columns: 1fr; }
            .footer-inner { grid-template-columns: 1fr; gap: 24px; }
            section { padding: 30px 0; }
            .section-title { font-size: 1.7rem; }
            .card { padding: 20px; }
            .content-article h2 { font-size: 1.5rem; }
            .content-article h3 { font-size: 1.25rem; }
            .breadcrumb { font-size: 0.75rem; }
            .my-logo { font-size: 1.5rem; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 1.6rem; }
            .hero .meta-badge { flex-wrap: wrap; gap: 8px; font-size: 0.8rem; padding: 8px 16px; }
            .btn { padding: 12px 24px; font-size: 0.9rem; }
            .search-box input { padding: 12px 16px; }
            .search-box button { padding: 0 18px; font-size: 0.9rem; }
        }
        .text-center { text-align: center; }
        .mt-20 { margin-top: 20px; }
        .mb-20 { margin-bottom: 20px; }
        .flex-center { display: flex; align-items: center; justify-content: center; gap: 12px; }
        .gap-16 { gap: 16px; }
        .w-full { width: 100%; }
        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
        }
