﻿:root {
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --accent-color: #c0a062;
    /* Gold */
    --accent-color-dark: #8a703a;
    --secondary-text: #888;
    --font-serif: 'Noto Serif JP', serif;
    --font-hand: 'Caveat', cursive;
    --font-mincho: 'Shippori Mincho', serif;
    --transition-speed: 0.6s;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-snap-type: y mandatory;
    height: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-serif);
    line-height: 1.8;
    overflow-x: hidden;
    cursor: none;
    height: 100%;
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.3s, height 0.3s;
}

.cursor.hovered {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 2px solid var(--accent-color);
}

.cursor-follower.hovered {
    width: 60px;
    height: 60px;
    background-color: rgba(192, 160, 98, 0.1);
    border-color: transparent;
}

/* Preloader (Original Restored) */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    height: 100dvh;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity .5s ease;
    overflow: hidden
}

.plate-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.progress-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10
}

.fonts-loading #progress-text {
    opacity: 0;
    visibility: hidden
}

#progress-text {
    font-family: 'Caveat', cursive;
    font-size: 48px;
    color: #ac4b4b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
    opacity: 1;
    transition: opacity .5s ease
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.3s, padding 0.3s;
}

.main-nav.scrolled {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 50px;
}

.nav-logo {
    font-family: var(--font-hand);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-mincho);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.3s;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

.reserve-btn {
    border: 1px solid var(--accent-color);
    padding: 8px 20px;
    border-radius: 2px;
    transition: all 0.3s;
}

.reserve-btn:hover {
    background-color: var(--accent-color);
    color: var(--bg-color) !important;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* First View (Original Restored) */
.snap-section.first-view {
    height: 100svh;
    height: 100dvh;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-image: url('https://xn--odk8c133x.jp/store/img/reporters-last-meal/background.jpg');
    background-size: cover;
    background-position: center;
}

.product-header {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.plate {
    max-width: 70%;
    max-height: 70vh;
    object-fit: contain
}

.utensil {
    position: absolute;
    max-height: 75vh;
    max-width: 28%;
    opacity: 0;
    transition: transform .5s ease, opacity .5s ease
}

.fork {
    left: 50%;
    top: 50%;
    transform: translate(-220%, -50%) rotate(-30deg)
}

.knife {
    right: 50%;
    top: 50%;
    transform: translate(220%, -50%) rotate(30deg)
}

.utensil.show {
    opacity: 1
}

.fork.show {
    transform: translate(-190%, -50%) rotate(0)
}

.knife.show {
    transform: translate(190%, -50%) rotate(0)
}

@media (min-width:900px) {
    .fork {
        transform: translate(-240%, -50%) rotate(-30deg)
    }

    .knife {
        transform: translate(240%, -50%) rotate(30deg)
    }

    .fork.show {
        transform: translate(-210%, -50%) rotate(0)
    }

    .knife.show {
        transform: translate(210%, -50%) rotate(0)
    }
}

.logo {
    position: absolute;
    max-height: 42%;
    max-width: 60%;
    object-fit: contain;
    opacity: 0;
    transition: opacity .5s ease
}

.blood {
    position: absolute;
    max-height: 40%;
    max-width: 60%;
    object-fit: contain;
    opacity: 0;
    transform: scale(.9);
    transition: opacity 10ms ease, transform 30ms ease
}

.blood.show {
    opacity: 1;
    transform: scale(1)
}

.scroll-arrow {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    opacity: 0;
    transition: opacity .5s ease, transform .3s ease;
    z-index: 100;
}

.scroll-arrow svg {
    width: 40px;
    height: 40px;
    color: #fff
}

.scroll-arrow.show {
    opacity: 1;
    animation: bounce 2s infinite
}

.scroll-arrow.hide {
    opacity: 0
}

@keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        transform: translateY(0) translateX(-50%)
    }

    40% {
        transform: translateY(-10px) translateX(-50%)
    }

    60% {
        transform: translateY(-5px) translateX(-50%)
    }
}

/* Common Section Styles */

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.section-padding {
    padding: 0 20px;
    min-height: 100svh;
    min-height: 100dvh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-title-wrapper {
    text-align: center;
    /* margin-bottom: 40px; */
}

.section-title {
    font-family: var(--font-hand);
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: var(--font-mincho);
    font-size: 1rem;
    color: var(--secondary-text);
    letter-spacing: 0.2em;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Story Section */
.story-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.story-heading {
    font-family: var(--font-mincho);
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 400;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

/* About Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-card {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-hand);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

/* Characters Section */
.character-slider-wrapper {
    position: relative;
    padding: 0 50px;
    width: 100%;
    max-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.character-slider {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    gap: 40px;
    /* Increased gap for card separation */
    height: 100%;
    padding: 20px 0;
    /* Add padding for shadow */
}

.character-card {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1a1a1a;
    /* Dark card background */
    border: 1px solid var(--accent-color);
    /* Gold border for business card look */
    border-radius: 2px;
    /* Sharper corners for card look */
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    max-height: 50vh;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .character-card {
        flex-direction: row;
        text-align: left;
        height: 400px;
        /* Fixed height for business card feel */
        width: 700px;
        /* Fixed width for business card feel */
        margin: 0 auto;
        /* Center the card */
    }
}

.char-img-container {
    flex: 0 0 40%;
    /* Fixed width for image part */
    overflow: hidden;
    height: 100%;
    position: relative;
    /* border-right: 1px solid rgba(192, 160, 98, 0.3); */
    /* Separator line */
}

.char-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Cover to create bust-up look */
    object-position: top center;
    /* Focus on face/upper body */
    display: block;
}

/* Removed hover zoom effect */

.char-info {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.char-name {
    font-family: var(--font-mincho);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
    border-bottom: 1px solid var(--secondary-text);
    padding-bottom: 10px;
    display: inline-block;
}

.char-meta {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-bottom: 20px;
    font-family: sans-serif;
    letter-spacing: 0.05em;
}

.char-quote {
    font-family: var(--font-mincho);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 0;
    line-height: 1.8;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.prev-btn,
.next-btn {
    background: none;
    border: 1px solid var(--secondary-text);
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.prev-btn:hover,
.next-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Menu Section */
.menu-card {
    width: min(570px, 100%);
    /* height: min(740px, 80%); */
    margin: 0 auto;
    background-image: url('../../img/reporters-last-meal/paper.png');
    background-repeat: repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: rotate(-1deg);
    border-radius: 2px;
    color: #6f6154;
    text-shadow: 0 0 1px rgba(0, 0, 0, .5);
}

.menu-card::before {
    display: none;
    /* Remove previous border */
}

.menu-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #4a4a4a;
    padding-bottom: 20px;
    width: 100%;
}

.menu-header h2 {
    font-family: var(--font-hand);
    font-size: 3rem;
    color: #4a4a4a;
    margin: 0;
}

.menu-header p {
    color: #999;
    margin: 0;
    font-family: var(--font-mincho);
}

.menu-body {
    width: 100%;
}

.menu-list {
    list-style: none;
    width: 100%;
    padding: 0;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    font-family: var(--font-mincho);
    font-size: 1.1rem;
    color: #6f6154;
}

.item-line {
    flex: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 10px;
}

.item-check {
    font-size: 0.8rem;
    color: #8a703a;
}

.menu-footer {
    text-align: center;
    margin-top: 40px;
    font-family: var(--font-hand);
    font-size: 1.2rem;
    color: #6f6154;
}

/* Purchase Section */
.receipt-card {
    background-color: #f5f5f5;
    color: #333;
    max-width: 400px;
    margin: 0 auto;
    padding: 40px 30px;
    font-family: 'Courier New', Courier, monospace;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.receipt-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: radial-gradient(circle, transparent 50%, #f5f5f5 50%) top left/20px 20px repeat-x;
    transform: rotate(180deg);
}

.receipt-header {
    text-align: center;
    margin-bottom: 30px;
}

.receipt-header h3 {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}

.receipt-body {
    margin-bottom: 30px;
}

.receipt-item,
.receipt-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.receipt-divider {
    text-align: center;
    margin: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.receipt-total {
    font-weight: 700;
    font-size: 1.2rem;
}

.receipt-actions {
    text-align: center;
    margin-bottom: 20px;
}

.purchase-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ff5252;
    /* Booth Color */
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-family: sans-serif;
    transition: background-color 0.3s;
}

.purchase-btn:hover {
    background-color: #e04141;
}

.booth-icon {
    height: 24px;
}

.receipt-footer {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 20px;
}

.footer-logo {
    width: 60px;
    margin-top: 10px;
    opacity: 0.5;
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 40px;
    transition: all 0.3s;
    scroll-snap-align: end;
}

.prev-btn:hover,
.next-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Menu Section */
.menu-card {
    width: min(570px, 100%);
    /* height: min(740px, 80%); */
    margin: 0 auto;
    background-image: url('../../img/reporters-last-meal/paper.png');
    background-repeat: repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: rotate(-1deg);
    border-radius: 2px;
    color: #6f6154;
    text-shadow: 0 0 1px rgba(0, 0, 0, .5);
}

.menu-card::before {
    display: none;
    /* Remove previous border */
}

.menu-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #4a4a4a;
    padding-bottom: 20px;
    width: 100%;
}

.menu-header h2 {
    font-family: var(--font-hand);
    font-size: 3rem;
    color: #4a4a4a;
    margin: 0;
}

.menu-header p {
    color: #999;
    margin: 0;
    font-family: var(--font-mincho);
}

.menu-body {
    width: 100%;
}

.menu-list {
    list-style: none;
    width: 100%;
    padding: 0;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    font-family: var(--font-mincho);
    font-size: 1.1rem;
    color: #6f6154;
}

.item-line {
    flex: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 10px;
}

.item-check {
    font-size: 0.8rem;
    color: #8a703a;
}

.menu-footer {
    text-align: center;
    margin-top: 40px;
    font-family: var(--font-hand);
    font-size: 1.2rem;
    color: #6f6154;
}

/* Purchase Section */
.receipt-card {
    background-color: #f5f5f5;
    color: #333;
    max-width: 400px;
    margin: 0 auto;
    padding: 40px 30px;
    font-family: 'Courier New', Courier, monospace;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.receipt-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: radial-gradient(circle, transparent 50%, #f5f5f5 50%) top left/20px 20px repeat-x;
    transform: rotate(180deg);
}

.receipt-header {
    text-align: center;
    margin-bottom: 30px;
}

.receipt-header h3 {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}

.receipt-body {
    margin-bottom: 30px;
}

.receipt-item,
.receipt-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.receipt-divider {
    text-align: center;
    margin: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.receipt-total {
    font-weight: 700;
    font-size: 1.2rem;
}

.receipt-actions {
    text-align: center;
    margin-bottom: 20px;
}

.purchase-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ff5252;
    /* Booth Color */
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-family: sans-serif;
    transition: background-color 0.3s;
}

.purchase-btn:hover {
    background-color: #e04141;
}

.booth-icon {
    height: 24px;
}

.receipt-footer {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 20px;
}

.footer-logo {
    width: 60px;
    font-size: 2.5rem;
}


.menu-card::before {
    display: none;
    /* Remove previous border */
}

.menu-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #4a4a4a;
    padding-bottom: 20px;
    width: 100%;
}

.menu-header h2 {
    font-family: var(--font-hand);
    font-size: 3rem;
    color: #4a4a4a;
    margin: 0;
}

.menu-header p {
    color: #999;
    margin: 0;
    font-family: var(--font-mincho);
}

.menu-body {
    width: 100%;
}

.menu-list {
    list-style: none;
    width: 100%;
    padding: 0;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    font-family: var(--font-mincho);
    font-size: 1.1rem;
    color: #6f6154;
}

.item-line {
    flex: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 10px;
}

.item-check {
    font-size: 0.8rem;
    color: #8a703a;
}

.menu-footer {
    text-align: center;
    margin-top: 40px;
    font-family: var(--font-hand);
    font-size: 1.2rem;
    color: #6f6154;
}

/* Purchase Section */
.receipt-card {
    background-color: #f5f5f5;
    color: #333;
    max-width: 400px;
    margin: 0 auto;
    padding: 40px 30px;
    font-family: 'Courier New', Courier, monospace;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.receipt-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: radial-gradient(circle, transparent 50%, #f5f5f5 50%) top left/20px 20px repeat-x;
    transform: rotate(180deg);
}

.receipt-header {
    text-align: center;
    margin-bottom: 30px;
}

.receipt-header h3 {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}

.receipt-body {
    margin-bottom: 30px;
}

.receipt-item,
.receipt-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.receipt-divider {
    text-align: center;
    margin: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.receipt-total {
    font-weight: 700;
    font-size: 1.2rem;
}

.receipt-actions {
    text-align: center;
    margin-bottom: 20px;
}

.purchase-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ff5252;
    /* Booth Color */
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-family: sans-serif;
    transition: background-color 0.3s;
}

.purchase-btn:hover {
    background-color: #e04141;
}

.booth-icon {
    height: 24px;
}

.receipt-footer {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 20px;
}

.footer-logo {
    width: 60px;
    margin-top: 10px;
    opacity: 0.5;
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--secondary-text);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        padding: 20px;
    }

    .nav-links {
        display: none;
        /* Mobile menu implementation needed if requested, simplified for now */
    }

    .hamburger {
        display: block;
    }

    .section-title {
        font-size: 2.5rem;
    }


    .menu-card::before {
        display: none;
        /* Remove previous border */
    }

    .menu-header {
        text-align: center;
        margin-bottom: 40px;
        border-bottom: 2px solid #4a4a4a;
        padding-bottom: 20px;
        width: 100%;
    }

    .menu-header h2 {
        font-family: var(--font-hand);
        font-size: 3rem;
        color: #4a4a4a;
        margin: 0;
    }

    .menu-header p {
        color: #999;
        margin: 0;
        font-family: var(--font-mincho);
    }

    .menu-body {
        width: 100%;
    }

    .menu-list {
        list-style: none;
        width: 100%;
        padding: 0;
    }

    .menu-list li {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        margin-bottom: 15px;
        font-family: var(--font-mincho);
        font-size: 1.1rem;
        color: #6f6154;
    }

    .item-line {
        flex: 1;
        border-bottom: 1px dotted #ccc;
        margin: 0 10px;
    }

    .item-check {
        font-size: 0.8rem;
        color: #8a703a;
    }

    .menu-footer {
        text-align: center;
        margin-top: 40px;
        font-family: var(--font-hand);
        font-size: 1.2rem;
        color: #6f6154;
    }

    /* Purchase Section */
    .receipt-card {
        background-color: #f5f5f5;
        color: #333;
        max-width: 400px;
        margin: 0 auto;
        padding: 40px 30px;
        font-family: 'Courier New', Courier, monospace;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        position: relative;
    }

    .receipt-card::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 20px;
        background: radial-gradient(circle, transparent 50%, #f5f5f5 50%) top left/20px 20px repeat-x;
        transform: rotate(180deg);
    }

    .receipt-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .receipt-header h3 {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }

    .receipt-body {
        margin-bottom: 30px;
    }

    .receipt-item,
    .receipt-total {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .receipt-divider {
        text-align: center;
        margin: 15px 0;
        overflow: hidden;
        white-space: nowrap;
    }

    .receipt-total {
        font-weight: 700;
        font-size: 1.2rem;
    }

    .receipt-actions {
        text-align: center;
        margin-bottom: 20px;
    }

    .purchase-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: #ff5252;
        /* Booth Color */
        color: #fff;
        text-decoration: none;
        padding: 12px 30px;
        border-radius: 4px;
        font-weight: 700;
        font-family: sans-serif;
        transition: background-color 0.3s;
    }

    .purchase-btn:hover {
        background-color: #e04141;
    }

    .booth-icon {
        height: 24px;
    }

    .slider-dots {
        display: flex;
        gap: 10px;
    }

    .prev-btn,
    .next-btn {
        background: none;
        border: 1px solid var(--secondary-text);
        color: var(--text-color);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s;
    }

    .prev-btn:hover,
    .next-btn:hover {
        border-color: var(--accent-color);
        color: var(--accent-color);
    }

    /* Menu Section */
    .menu-card {
        width: min(570px, 100%);
        /* height: min(740px, 80%); */
        margin: 0 auto;
        background-image: url('../../img/reporters-last-meal/paper.png');
        background-repeat: repeat;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 60px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        position: relative;
        transform: rotate(-1deg);
        border-radius: 2px;
        color: #6f6154;
        text-shadow: 0 0 1px rgba(0, 0, 0, .5);
    }

    .receipt-footer {
        text-align: center;
        font-size: 0.8rem;
        margin-top: 20px;
    }

    .footer-logo {
        width: 60px;
        margin-top: 10px;
        opacity: 0.5;
    }

    /* Footer */
    .main-footer {
        text-align: center;
        padding: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--secondary-text);
        font-size: 0.8rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .main-nav {
            padding: 20px;
        }

        .nav-links {
            display: none;
            /* Mobile menu implementation needed if requested, simplified for now */
        }

        .hamburger {
            display: block;
        }

        .section-title {
            font-size: 2.5rem;
        }

        .hero-logo {
            width: 80vmin;
        }

        text-shadow: 0 0 1px rgba(0, 0, 0, .5);
    }

    .menu-card::before {
        display: none;
        /* Remove previous border */
    }

    .menu-header {
        text-align: center;
        margin-bottom: 40px;
        border-bottom: 2px solid #4a4a4a;
        padding-bottom: 20px;
        width: 100%;
    }

    .menu-header h2 {
        font-family: var(--font-hand);
        font-size: 3rem;
        color: #4a4a4a;
        margin: 0;
    }

    .menu-header p {
        color: #999;
        margin: 0;
        font-family: var(--font-mincho);
    }

    .menu-body {
        width: 100%;
    }

    .menu-list {
        list-style: none;
        width: 100%;
        padding: 0;
    }

    .menu-list li {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        margin-bottom: 15px;
        font-family: var(--font-mincho);
        font-size: 1.1rem;
        color: #6f6154;
    }

    .item-line {
        flex: 1;
        border-bottom: 1px dotted #ccc;
        margin: 0 10px;
    }

    .item-check {
        font-size: 0.8rem;
        color: #8a703a;
    }

    .menu-footer {
        text-align: center;
        margin-top: 40px;
        font-family: var(--font-hand);
        font-size: 1.2rem;
        color: #6f6154;
    }

    /* Purchase Section */
    .receipt-card {
        background-color: #f5f5f5;
        color: #333;
        max-width: 400px;
        margin: 0 auto;
        padding: 40px 30px;
        font-family: 'Courier New', Courier, monospace;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        position: relative;
    }

    .receipt-card::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 20px;
        background: radial-gradient(circle, transparent 50%, #f5f5f5 50%) top left/20px 20px repeat-x;
        transform: rotate(180deg);
    }

    .receipt-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .receipt-header h3 {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }

    .receipt-body {
        margin-bottom: 30px;
    }

    .receipt-item,
    .receipt-total {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .receipt-divider {
        text-align: center;
        margin: 15px 0;
        overflow: hidden;
        white-space: nowrap;
    }

    .receipt-total {
        font-weight: 700;
        font-size: 1.2rem;
    }

    .receipt-actions {
        text-align: center;
        margin-bottom: 20px;
    }

    .purchase-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: #ff5252;
        /* Booth Color */
        color: #fff;
        text-decoration: none;
        padding: 12px 30px;
        border-radius: 4px;
        font-weight: 700;
        font-family: sans-serif;
        transition: background-color 0.3s;
    }

    .purchase-btn:hover {
        background-color: #e04141;
    }

    .booth-icon {
        height: 24px;
    }

    .receipt-footer {
        text-align: center;
        font-size: 0.8rem;
        margin-top: 20px;
    }

    .footer-logo {
        width: 60px;
        margin-top: 10px;
        opacity: 0.5;
    }

    /* Footer */
    .main-footer {
        text-align: center;
        padding: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--secondary-text);
        font-size: 0.8rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .main-nav {
            padding: 20px;
        }

        .nav-links {
            display: none;
            /* Mobile menu implementation needed if requested, simplified for now */
        }

        .hamburger {
            display: block;
        }

        .section-title {
            font-size: 2.5rem;
        }

        .hero-logo {
            width: 80vmin;
        }

        .menu-card {
            padding: 30px;
        }

        /* Story Section Optimization */
        .story-content {
            padding: 20px;
            width: 95%;
            min-height: auto;
        }

        .story-title {
            font-size: 1.8rem;
            word-break: normal;
            margin-bottom: 1.5rem;
        }

        .story-heading {
            font-size: 1.3rem;
        }

        .story-text p {
            font-size: 1rem;
            text-align: justify;
            margin-bottom: 1.5rem;
        }

        /* About Section Optimization */
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
            /* 2x2 Layout */
            gap: 15px;
        }

        .feature-card {
            padding: 15px;
        }

        .feature-icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .feature-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        /* Ensure full height sections don't cut off content on small screens */
        .snap-section {
            height: auto;
            min-height: 100dvh;
            padding-top: 80px;
            padding-bottom: 40px;
        }

        /* Character Section Optimization */
        .character-slider-wrapper {
            padding: 0 10px;
            max-height: none;
            height: auto;
        }

        .character-card {
            flex-direction: column;
            height: auto;
            max-height: 85vh;
            width: 100%;
        }

        .char-img-container {
            flex: 0 0 250px;
            width: 100%;
            border-right: none;
            border-bottom: 1px solid var(--accent-color);
        }

        .char-info {
            padding: 20px;
        }

        .char-name {
            font-size: 1.5rem;
        }

        /* Slider Controls Mobile Optimization */
        .slider-controls {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            justify-content: space-between;
            pointer-events: none;
            transform: translateY(-50%);
            margin-top: 0;
            padding: 0 10px;
            z-index: 10;
        }

        .prev-btn,
        .next-btn {
            pointer-events: auto;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            color: white;
            justify-content: space-between;
            margin-bottom: 10px;
        }
    }


    .receipt-divider {
        text-align: center;
        margin: 15px 0;
        overflow: hidden;
        white-space: nowrap;
    }

    .receipt-total {
        font-weight: 700;
        font-size: 1.2rem;
    }

    .receipt-actions {
        text-align: center;
        margin-bottom: 20px;
    }

    .purchase-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: #ff5252;
        /* Booth Color */
        color: #fff;
        text-decoration: none;
        padding: 12px 30px;
        border-radius: 4px;
        font-weight: 700;
        font-family: sans-serif;
        transition: background-color 0.3s;
    }

    .purchase-btn:hover {
        background-color: #e04141;
    }

    .booth-icon {
        height: 24px;
    }

    .receipt-footer {
        text-align: center;
        font-size: 0.8rem;
        margin-top: 20px;
    }

    .footer-logo {
        width: 60px;
        margin-top: 10px;
        opacity: 0.5;
    }

    /* Footer */
    .main-footer {
        text-align: center;
        padding: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--secondary-text);
        font-size: 0.8rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .main-nav {
            padding: 20px;
        }

        .nav-links {
            display: none;
            /* Mobile menu implementation needed if requested, simplified for now */
        }

        .hamburger {
            display: block;
        }

        .section-title {
            font-size: 2.5rem;
        }

        .hero-logo {
            width: 80vmin;
        }

        .menu-card {
            padding: 30px;
        }

        /* Story Section Optimization */
        .story-content {
            padding: 20px;
            width: 95%;
            min-height: auto;
        }

        .story-title {
            font-size: 1.8rem;
            word-break: normal;
            margin-bottom: 1.5rem;
        }

        .story-heading {
            font-size: 1.3rem;
        }

        .story-text p {
            font-size: 1rem;
            text-align: justify;
            margin-bottom: 1.5rem;
        }

        /* About Section Optimization */
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
            /* 2x2 Layout */
            gap: 15px;
        }

        .feature-card {
            padding: 15px;
        }

        .feature-icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .feature-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        /* Ensure full height sections don't cut off content on small screens */
        .snap-section {
            height: auto;
            min-height: 100dvh;
            padding-top: 80px;
            padding-bottom: 40px;
        }

        /* Character Section Optimization */
        .character-slider-wrapper {
            padding: 0 10px;
            max-height: none;
            height: auto;
        }

        .character-card {
            flex-direction: column;
            height: auto;
            max-height: 85vh;
            width: 100%;
        }

        .char-img-container {
            flex: 0 0 250px;
            width: 100%;
            border-right: none;
            border-bottom: 1px solid var(--accent-color);
        }

        .char-info {
            padding: 20px;
        }

        .char-name {
            font-size: 1.5rem;
        }

        /* Slider Controls Mobile Optimization */
        .slider-controls {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            justify-content: space-between;
            pointer-events: none;
            transform: translateY(-50%);
            margin-top: 0;
            padding: 0 10px;
            z-index: 10;
        }

        .prev-btn,
        .next-btn {
            pointer-events: auto;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            color: white;
        }

        .slider-dots {
            display: none;
        }
    }

    .main-footer {
        scroll-snap-align: end;
    }

    /* Hide Cursor on Mobile */
    @media (max-width: 768px) {

        .cursor,
        .cursor-follower {
            display: none !important;
        }

        body {
            cursor: auto;
        }
    }
}