        :root {
            --primary: #FF6B35;
            --secondary: #2E294E;
            --light: #FFF8F0;
            --accent1: #C0D6DF;
            --accent2: #4F6D7A;
            --text-dark: #1A1423;
            --shadow: rgba(0, 0, 0, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }

        body {
            background-color: var(--light);
            color: var(--text-dark);
            height: 100%;
            overflow: hidden;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .masthead {
            display: flex;
            position: fixed;
            top: 0;
            z-index: 10;
        }
        .container {
            width: 95%;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .header {
            text-align: center;
            padding: 20px 0;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 12px 12px 0 0;
            box-shadow: 0 4px 15px var(--shadow);
            position: relative;
            z-index: 10;
            margin-bottom: -10px;
        }

        .header h1 {
            font-size: 2.2rem;
            color: white;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            margin-bottom: 5px;
            font-weight: 700;
        }

        .header p {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
        }

        .accordion-container {
            display: flex;
            width: 100%;
            overflow: hidden;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 8px 30px var(--shadow);
        }

        .accordion-panel {
            position: relative;
            flex: 1;
            overflow: hidden;
            transition: flex 0.6s cubic-bezier(0.76, 0, 0.24, 1);
            cursor: pointer;
            display: flex;
            align-items: flex-end;
            border-right: 1px solid rgba(255, 255, 255, 0.3);
        }

        .accordion-panel:last-child {
            border-right: none;
        }

        .accordion-panel.active {
            flex: 6;
        }

        .accordion-panel .background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease-out, filter 0.6s ease;
            filter: brightness(0.7);
        }

        .accordion-panel:hover .background:not(.active .background) {
            filter: brightness(0.9);
            transform: scale(1.05);
        }

        .accordion-panel.active .background {
            filter: brightness(0.85);
            transform: scale(1);
        }

        .accordion-panel .title {
            writing-mode: vertical-lr;
            transform: rotate(180deg);
            color: white;
            font-size: 1.8rem;
            font-weight: 600;
            padding: 20px 15px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            width: 100%;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            align-items: center;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
            z-index: 2;
            position: relative;
        }

        .accordion-panel.active .title {
            writing-mode: horizontal-tb;
            transform: rotate(0);
            font-size: 2rem;
            padding: 20px;
            height: auto;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 30%, transparent);
        }

        .menu-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            color: white;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 40%, transparent);
            transform: translateY(100%);
            transition: transform 0.5s ease-out;
            z-index: 1;
        }

        .accordion-panel.active .menu-content {
            transform: translateY(0);
        }

        .menu-item {
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
            padding-bottom: 10px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .accordion-panel.active .menu-item {
            opacity: 1;
            transform: translateY(0);
        }

        .accordion-panel.active .menu-item:nth-child(1) { transition-delay: 0.1s; }
        .accordion-panel.active .menu-item:nth-child(2) { transition-delay: 0.2s; }
        .accordion-panel.active .menu-item:nth-child(3) { transition-delay: 0.3s; }
        .accordion-panel.active .menu-item:nth-child(4) { transition-delay: 0.4s; }


        .menu-item h3 {
            font-weight: 500;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .menu-item p {
            font-size: 0.9rem;
            opacity: 0.9;
            max-width: 100%;
        }

        .menu-item .price {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }

        .ingredient-tag {
            display: inline-block;
            background-color: rgba(255, 107, 53, 0.8);
            padding: 3px 8px;
            border-radius: 20px;
            font-size: 0.7rem;
            margin-right: 5px;
            margin-top: 5px;
        }

        .special-marker {
            display: inline-block;
            margin-left: 10px;
            background: linear-gradient(to right, #FFD700, #FFA500);
            color: var(--text-dark);
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 700;
            transform: rotate(-2deg);
            box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .pulsing-dot {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 10px;
            height: 10px;
            background-color: #FFD700;
            border-radius: 50%;
            z-index: 3;
            opacity: 0;
        }

        .accordion-panel.active .pulsing-dot {
            animation: pulse 1.5s infinite;
            opacity: 1;
        }

        @keyframes pulse {
            0% {
                transform: scale(0.8);
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
            }
            70% {
                transform: scale(1);
                box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
            }
            100% {
                transform: scale(0.8);
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
            }
        }

        .instructions {
            text-align: center;
            margin-top: 15px;
            color: var(--accent2);
            font-style: italic;
            font-size: 0.9rem;
        }
        .footer {
            display: flex;
            justify-content: space-between;
        }
        .footer-fixed {
            position: fixed;
            bottom: 0;
            border: 1px solid #fff;
            flex: 1;
            background-color: #7FFF00;
            margin: 5px;
        }
        .footer-fixed.left {
            left: 0;
        }
          
        .footer-fixed.center {
            left: 50%;
            transform: translateX(-50%);
        }
          
        .footer-fixed.right {
            right: 0;
        }
        @media (max-width: 700px) {
            .masthead {
                height: 75px;
                width: 250px;
            }
            .container {
                width: 100%;
                height: 650px;
            }

            .header h1 {
                font-size: 1.8rem;
            }

            .accordion-container {
                height: 500px;
            }

            .accordion-panel .title {
                font-size: 1.4rem;
                padding: 15px 10px;
            }

            .accordion-panel.active .title {
                font-size: 1.6rem;
            }
            .footer {
                position: fixed;
            }
            .footer-fixed {
                position: fixed;
                bottom: 0;
                border: 1px solid #fff;
                flex: 1;
                background-color: #7FFF00;
                margin: 5px;
            }
            .footer-fixed.right {
                display:none;
                right: 0;
            }
            .footer-fixed.center {
                display:flex;
                left: 50%;
                transform: translateX(-50%);
            }
            .footer-fixed.left {
                display:none;
                left: 0;
            }
}

        @media (max-width: 500px) {
            .flex-container {
            .masthead {
                display: block;
                height: 75px;
                width: 250px;
            }
            .accordion-container {
                flex-direction: column;
                height: 500px;
            }

            .accordion-panel {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            }

            .accordion-panel .title {
                writing-mode: horizontal-tb;
                transform: none;
                padding: 10px;
                text-align: center;
            }

            .accordion-panel.active .menu-content {
                padding: 10px;
            }

            .menu-item {
                flex-direction: column;
            }

            .menu-item .price {
                margin-top: 5px;
            }
            .footer {
                position: fixed;
            }
            .footer-fixed {
                position: fixed;
                border: 1px solid #fff;
                flex: 1;
                background-color: #7FFF00;
                margin: 5px;
            }
            .footer-fixed.right {
                display:none;
            }
            .footer-fixed.center {
                display: flex;
            }
            .footer-fixed.left {
                display:none;
            }
            }
        }