/* ===== CSS Variables ===== */
:root {
    --bg-dark: #0a0a0a;
    --bg-light: #f2f0ed;
    --text-dark: #0a0a0a;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.4);
    --text-muted-dark: rgba(10, 10, 10, 0.4);
    --accent: #c9a227;
    --orbit-color: rgba(255, 255, 255, 0.15);
    --dot-color: rgba(255, 255, 255, 0.6);
    --circle-stroke: rgba(255, 255, 255, 0.2);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

/* Google Translate バーを非表示 */
.goog-te-banner-frame, .skiptranslate { display: none !important; }
body { top: 0 !important; }

body {
    font-family: 'Inter', 'Hiragino Kaku Gothic ProN', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    overflow: hidden;
    transition: background-color 0.8s ease, color 0.8s ease;
}

/* ===== Paper Texture (Dark Mode) ===== */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9998;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    mix-blend-mode: soft-light;
}

/* ===== Scanlines (Dark Mode) ===== */
.texture-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 10000;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px, transparent 2px,
        rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px
    );
}

body.light-mode {
    background-color: var(--bg-light);
    color: var(--text-dark);
    --orbit-color: rgba(10, 10, 10, 0.15);
    --dot-color: rgba(10, 10, 10, 0.5);
    --circle-stroke: rgba(10, 10, 10, 0.2);
}

/* Light-mode textures (same as diagnosis pages) */
body.light-mode::before {
    opacity: 0.04;
    mix-blend-mode: multiply;
}

body.light-mode .texture-overlay {
    background: repeating-linear-gradient(
        0deg,
        transparent 0px, transparent 2px,
        rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px
    );
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

body.light-mode .custom-cursor {
    border-color: rgba(10, 10, 10, 0.5);
}

.custom-cursor.hovering {
    background-color: rgba(201, 162, 39, 0.2);
    border-color: var(--accent);
}

/* ===== LAYOUT ===== */
.container {
    position: fixed;
    inset: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 30px 40px;
}

/* ===== HEADER ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

header.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header Left - Logo */
.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    cursor: none;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.8s ease;
}

body.light-mode .logo-img {
    filter: brightness(0);
}

.logo-text {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: lowercase;
}

.logo-text .accent {
    color: var(--accent);
}

/* Header Center - Realtime Info */
.header-center {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    transition: color 0.8s ease;
}

body.light-mode .header-center {
    color: var(--text-muted-dark);
}

.header-center .weather-icon {
    font-size: 14px;
}

/* Header Right - Lang & Menu */
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: none;
}

.lang-link:hover,
.lang-link.active {
    color: var(--text-light);
}

body.light-mode .lang-link:hover,
body.light-mode .lang-link.active {
    color: var(--text-dark);
}

.lang-divider {
    font-size: 12px;
    color: var(--text-muted);
    transition: color 0.8s ease;
}

body.light-mode .lang-divider {
    color: var(--text-muted-dark);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    padding: 8px;
}

.menu-toggle span {
    width: 4px;
    height: 4px;
    background: var(--text-light);
    border-radius: 50%;
    transition: background 0.8s ease;
}

body.light-mode .menu-toggle span {
    background: var(--text-dark);
}

/* ===== MAIN CONTENT ===== */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* ===== ORBIT SYSTEM ===== */
.orbit-container {
    position: relative;
    width: 420px;
    height: 420px;
}

.orbit-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.orbit-path {
    fill: none;
    stroke: var(--orbit-color);
    stroke-width: 1;
    stroke-dasharray: 80 40;
    stroke-linecap: round;
    transform-origin: center;
    opacity: 0;
    transition: opacity 0.5s ease, stroke 0.8s ease;
}

.orbit-path.visible {
    opacity: 1;
}

/* ===== CENTER CIRCLE ===== */
.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid var(--circle-stroke);
    background-color: var(--bg-dark);
    overflow: hidden;
    transition: background-color 0.8s ease, border-color 0.8s ease;
    z-index: 5;
}

body.light-mode .center-circle {
    background-color: var(--bg-light);
}

.center-circle-content {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    opacity: 0;
    z-index: 2;
}

.brand-name .accent {
    color: var(--accent);
}

.preview-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

/* ===== ORBIT DOTS ===== */
.orbit-dot-wrapper {
    position: absolute;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    cursor: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.orbit-dot {
    width: 8px;
    height: 8px;
    background: var(--dot-color);
    border-radius: 50%;
    opacity: 0;
    transition: background 0.3s ease;
    pointer-events: none;
}

.orbit-dot.visible {
    opacity: 1;
}

.orbit-dot-wrapper:hover .orbit-dot,
.orbit-dot-wrapper.active .orbit-dot {
    background: var(--accent);
}

/* ===== PREVIEW TITLES ===== */
.preview-title-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    perspective: 800px;
    pointer-events: none;
}

.preview-title-container.top {
    top: 10%;
}

.preview-title-container.bottom {
    bottom: 10%;
}

.preview-title-roller {
    position: relative;
    transform-style: preserve-3d;
}

.preview-title {
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
    backface-visibility: hidden;
}

.preview-title.current {
    position: relative;
}

.preview-title.next {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotateX(90deg);
    transform-origin: center bottom;
}

.preview-title-container.top .preview-title {
    font-size: 4.5rem;
    color: var(--text-muted);
}

.preview-title-container.bottom .preview-title {
    font-size: 3rem;
    letter-spacing: 0.15em;
}

body.light-mode .preview-title-container.top .preview-title {
    color: var(--text-muted-dark);
}

/* ===== FOOTER ===== */
footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

footer.visible {
    opacity: 1;
    transform: translateY(0);
}

.copyright {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    transition: color 0.8s ease;
}

body.light-mode .copyright {
    color: var(--text-muted-dark);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.footer-nav a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    cursor: none;
}

body.light-mode .footer-nav a {
    color: var(--text-dark);
}

.footer-nav a .text-en,
.footer-nav a .text-ja {
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-nav a .text-ja {
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateY(5px);
    color: var(--accent);
}

.footer-nav a:hover .text-en {
    opacity: 0;
    transform: translateY(-5px);
}

.footer-nav a:hover .text-ja {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-center-circle {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid var(--circle-stroke);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-counter {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.loading-orbit-svg {
    position: absolute;
    width: 420px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading-orbit-path {
    fill: none;
    stroke: var(--orbit-color);
    stroke-width: 1;
    stroke-dasharray: 80 40;
    stroke-linecap: round;
    transform-origin: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        padding: 20px 25px;
    }

    .orbit-container {
        width: 300px;
        height: 300px;
    }

    .center-circle {
        width: 180px;
        height: 180px;
    }

    .loading-center-circle {
        width: 180px;
        height: 180px;
    }

    .loading-orbit-svg {
        width: 300px;
        height: 300px;
    }

    .loading-counter {
        font-size: 3rem;
    }

    .brand-name {
        font-size: 0.9rem;
    }

    .preview-title-container.top .preview-title {
        font-size: 2.2rem;
    }

    .preview-title-container.bottom .preview-title {
        font-size: 1.6rem;
    }

    .header-center {
        display: none;
    }

    .logo-text .accent {
        display: inline;
    }

    .custom-cursor {
        display: none;
    }

    * {
        cursor: auto;
    }
}

/* ========================================
   About Modal (Wormhole)
======================================== */
.modal-about {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
}

.modal-about.active {
    display: block;
}

.modal-about-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
}

.modal-about-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.modal-about-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0;
}

.modal-about-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    opacity: 0;
}

.modal-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.modal-about-left {
    text-align: left;
}

.modal-about-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-about-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.modal-about-logo {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 35px;
    color: #fff;
}

.modal-about-logo .accent {
    color: var(--accent);
}

.modal-about-headline {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #fff;
}

.modal-about-text {
    font-size: 14px;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.7);
}

.modal-about-text p {
    margin-bottom: 1.5em;
}

.modal-about-text p:last-child {
    margin-bottom: 0;
}

.modal-about-right {
    position: relative;
}

.modal-about-stats {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.modal-about-stat {
    border-left: 2px solid var(--accent);
    padding-left: 25px;
    opacity: 0;
    transform: translateX(30px);
}

.modal-about-stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
}

.modal-about-stat-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
}

.modal-about-stat-desc {
    font-size: 11px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
    line-height: 1.5;
}

.modal-about-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    font-size: 20px;
    cursor: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.modal-about-close:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: rotate(90deg);
}

/* Modal Responsive */
@media (max-width: 900px) {
    .modal-about-content {
        position: absolute;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        height: 100%;
        overflow-y: auto;
        padding: 80px 28px 40px;
        -webkit-overflow-scrolling: touch;
    }

    .modal-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .modal-about-left {
        text-align: center;
    }

    .modal-about-label {
        justify-content: center;
    }

    .modal-about-logo {
        font-size: 2.2rem;
    }

    .modal-about-headline {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .modal-about-text {
        font-size: 13px;
        line-height: 1.9;
    }

    .modal-about-text p {
        margin-bottom: 1em;
    }

    .modal-about-stats {
        flex-direction: row;
        gap: 0;
    }

    .modal-about-stat {
        flex: 1;
        border-left: none;
        padding-left: 0;
        text-align: center;
        border-bottom: none;
        padding-bottom: 0;
        border-right: 1px solid rgba(201, 162, 39, 0.2);
    }

    .modal-about-stat:last-child {
        border-right: none;
    }

    .modal-about-stat-number {
        font-size: 2.2rem;
    }

    .modal-about-stat-label {
        font-size: 10px;
    }

    .modal-about-stat-desc {
        font-size: 9px;
    }

    .modal-about-close {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* ========================================
   Cinematic Full Menu
======================================== */
.menu-cinematic {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    overflow: hidden;
}

.menu-cinematic.active {
    display: block;
}

.menu-cinematic-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-dark);
}

.menu-cinematic-particles {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.menu-cinematic-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    pointer-events: none;
    opacity: 0;
}

.menu-cinematic-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0;
}

.menu-cinematic-content {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.menu-cinematic-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10%;
    position: relative;
}

.menu-cinematic-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-cinematic-item {
    position: relative;
    cursor: none;
    padding: 8px 0;
    overflow: hidden;
}

.menu-cinematic-item-wrapper {
    display: flex;
    align-items: baseline;
    gap: 30px;
    transform: translateY(100%);
    opacity: 0;
}

.menu-cinematic-item-number {
    font-size: 12px;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 0.1em;
    min-width: 30px;
}

.menu-cinematic-item-text {
    font-size: 3.2rem;
    font-weight: 200;
    letter-spacing: -0.02em;
    color: var(--text-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.menu-cinematic-item-text span {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.menu-cinematic-item:hover .menu-cinematic-item-text {
    color: var(--accent);
}

.menu-cinematic-item:hover .menu-cinematic-item-text span {
    animation: letterWave 0.5s ease forwards;
}

.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(1) { animation-delay: 0s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(2) { animation-delay: 0.03s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(3) { animation-delay: 0.06s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(4) { animation-delay: 0.09s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(5) { animation-delay: 0.12s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(6) { animation-delay: 0.15s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(7) { animation-delay: 0.18s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(8) { animation-delay: 0.21s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(9) { animation-delay: 0.24s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(10) { animation-delay: 0.27s; }
.menu-cinematic-item:hover .menu-cinematic-item-text span:nth-child(11) { animation-delay: 0.30s; }

@keyframes letterWave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.menu-cinematic-item-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-cinematic-item:hover .menu-cinematic-item-line {
    width: 100%;
}

.menu-cinematic-item-jp {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    opacity: 0;
    transition: all 0.4s ease;
}

.menu-cinematic-item:hover .menu-cinematic-item-jp {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.menu-cinematic-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.menu-cinematic-visual {
    position: relative;
    width: 350px;
    height: 350px;
    opacity: 0;
    transform: scale(0.8);
}

.menu-cinematic-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-cinematic-ring:nth-child(1) {
    width: 350px;
    height: 350px;
    animation: rotateRingMenu 30s linear infinite;
}

.menu-cinematic-ring:nth-child(2) {
    width: 280px;
    height: 280px;
    border-style: dashed;
    animation: rotateRingMenu 25s linear infinite reverse;
}

.menu-cinematic-ring:nth-child(3) {
    width: 210px;
    height: 210px;
    animation: rotateRingMenu 20s linear infinite;
}

@keyframes rotateRingMenu {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.menu-cinematic-ring-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent);
}

.menu-cinematic-ring:nth-child(1) .menu-cinematic-ring-dot {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.menu-cinematic-ring:nth-child(3) .menu-cinematic-ring-dot {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.menu-cinematic-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.menu-cinematic-logo {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

.menu-cinematic-logo .accent { color: var(--accent); }

.menu-cinematic-tagline {
    font-size: 9px;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

.menu-cinematic-close {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: transparent;
    cursor: none;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.menu-cinematic-close::before,
.menu-cinematic-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.menu-cinematic-close::before { transform: rotate(45deg); }
.menu-cinematic-close::after { transform: rotate(-45deg); }

.menu-cinematic-close:hover {
    border-color: var(--accent);
    transform: rotate(90deg);
}

.menu-cinematic-close:hover::before,
.menu-cinematic-close:hover::after {
    background: var(--accent);
}

.menu-cinematic-footer {
    position: absolute;
    bottom: 50px;
    left: 10%;
    right: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
}

.menu-cinematic-footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-cinematic-footer-copy {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.menu-cinematic-footer-right {
    display: flex;
    gap: 20px;
}

.menu-cinematic-social {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 11px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: none;
}

.menu-cinematic-social:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

/* Menu Responsive */
@media (max-width: 1024px) {
    .menu-cinematic-content {
        grid-template-columns: 1fr;
    }

    .menu-cinematic-left {
        padding: 120px 8% 100px;
    }

    .menu-cinematic-item-text {
        font-size: 2.5rem;
    }

    .menu-cinematic-item-jp {
        display: none;
    }

    .menu-cinematic-right {
        display: none;
    }

    .menu-cinematic-close {
        top: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
    }

    .menu-cinematic-footer {
        left: 8%;
        right: 8%;
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    .menu-cinematic-left {
        padding: 70px 6% 60px;
        justify-content: flex-start;
    }

    .menu-cinematic-item {
        padding: 5px 0;
    }

    .menu-cinematic-item-text {
        font-size: 1.6rem;
    }

    .menu-cinematic-item-jp {
        display: block;
        position: static;
        transform: none;
        opacity: 0.5;
        font-size: 10px;
        margin-top: 2px;
    }
}