        /* CSS Variables for Design System */
        :root {
            --background: hsl(0, 0%, 100%);
            --foreground: hsl(0, 0%, 5%);
            --primary: hsl(45, 100%, 51%);
            --primary-foreground: hsl(0, 0%, 5%);
            --muted: hsl(0, 0%, 96%);
            --muted-foreground: hsl(0, 0%, 40%);
            --accent: hsl(4, 90%, 58%);
            --border: hsl(0, 0%, 90%);
            --radius: 0.25rem;
            --card-foreground: hsl(0, 0%, 5%);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.8;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-weight: 700;
            letter-spacing: 0.05em;
        }
        .article-section {
            padding: 4rem 0 1rem;
            background: linear-gradient(to bottom, var(--background), hsla(45, 100%, 51%, 0.03));
        }
        .article-section h1 {
            font-size: 4rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
        }
        .article-meta {
            text-align: center;
            margin-bottom: 3rem;
            color: var(--muted-foreground);
            font-size: 1.1rem;
        }
        .article-content {
            max-width: 1100px;
            margin: 0 auto;
            line-height: 1.8;
            font-size: 1.15rem;
            padding: 0 2rem;
        }
        .article-content h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin: 3rem 0 1.0rem;
            letter-spacing: 0.03em;
            font-weight: 400; /* Requirement: dont bold h2 */
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: var(--accent);
            margin: 2.5rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            color: var(--foreground);
            text-align: justify;
        }
        .article-content strong {
            color: var(--accent);
            font-weight: 700;
        }
        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .article-content table th,
        .article-content table td {
            padding: 1rem;
            border: 1px solid var(--border);
            text-align: left;
        }
        .article-content table th {
            background-color: var(--primary);
            color: var(--primary-foreground);
            font-weight: bold;
        }
        .article-content table tr:nth-child(even) {
            background-color: var(--muted);
        }
        .article-content ul {
            padding-left: 1.5rem;
            list-style-type: disc;
            margin-bottom: 1.5rem;
        }
        .article-content li {
            margin-bottom: 0.5rem;
        }
        .faq-section {
            background-color: var(--muted);
            padding: 2rem;
            border-radius: var(--radius);
            margin: 1.5rem 0;
        }
        .faq-item {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border);
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            font-size: 1.25rem;
            color: var(--foreground);
            font-weight: bold;
            margin-bottom: 0.75rem;
        }
        .faq-answer {
            color: var(--muted-foreground);
            line-height: 1.6;
        }
        .highlight-box {
            background-color: var(--muted);
            padding: 1.5rem;
            border-left: 4px solid var(--accent);
            margin: 2rem 0;
            border-radius: var(--radius);
        }
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }
        .menu-item-image {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
        }
        .menu-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .card:hover .menu-item-image img {
            transform: scale(1.1);
        }
        .menu-item-badge {
            position: absolute;
            top: 1rem;
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        .badge {
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: bold;
            text-transform: uppercase;
        }
        .badge-deal {
            background-color: var(--accent);
            color: white;
        }
        .badge-new {
            background-color: var(--primary);
            color: var(--primary-foreground);
        }
        .badge-left {
            left: 1rem;
        }
        .menu-item-content {
            padding: 1.5rem;
        }
        .menu-item-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        .menu-item-name {
            font-size: 1.25rem;
            font-weight: bold;
            color: var(--card-foreground);
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
            flex: 1;
        }
        .menu-item-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
            margin-left: 1rem;
        }
        .menu-item-description {
            font-size: 0.875rem;
            color: var(--muted-foreground);
            margin-bottom: 1rem;
            line-height: 1.5;
        }
        .menu-item-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.875rem;
            color: var(--muted-foreground);
            padding-top: 1rem;
            border-top: 1px solid var(--border);
        }
        .btn {
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .btn-primary {
            background-color: var(--primary);
            color: var(--primary-foreground);
        }
        .btn-primary:hover {
            background-color: hsl(45, 100%, 45%);
        }
        .btn-ghost {
            background-color: transparent;
            border: 1px solid var(--border);
        }
        .btn-ghost:hover {
            background-color: var(--muted);
        }
        .btn-lg {
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
        }
        .w-full {
            width: 100%;
        }
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 100;
            align-items: center;
            justify-content: center;
        }
        .modal.open {
            display: flex;
        }
        .modal-content {
            background-color: var(--background);
            border-radius: var(--radius);
            max-width: 48rem;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 1.5rem;
        }
        .modal-header {
            margin-bottom: 1.5rem;
        }
        .modal-title {
            font-size: 1.875rem;
            font-weight: bold;
            letter-spacing: 0.05em;
        }
        .modal-image {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
            border-radius: var(--radius);
            margin-bottom: 1.5rem;
        }
        .modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .nutrition-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .nutrition-item {
            background-color: var(--muted);
            padding: 1rem;
            border-radius: var(--radius);
            text-align: center;
        }
        .nutrition-value {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--card-foreground);
        }
        .nutrition-label {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }
        .table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        @media (max-width: 768px) {
            .article-section h1 {
                font-size: 3rem;
            }
            .article-content h2 {
                font-size: 2rem;
            }
            .article-content {
                padding: 0 1rem;
                font-size: 1rem;
            }
            .article-content table {
                font-size: 0.9rem;
            }
            .article-content table th,
            .article-content table td {
                padding: 0.5rem;
            }
            .menu-grid {
                grid-template-columns: 1fr;
            }
        }
