        /* --------------------------
           星レーティング表示
           -------------------------- */
        .score-stars-wrapper {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }

        .score-stars {
            display: inline-flex;
            gap: 0.15rem;
        }

        .star {
            font-size: 1.5rem;
            line-height: 1;
            display: inline-block;
        }

        .star-filled {
            color: #f59e0b;
            text-shadow: 0 0 6px rgba(245, 158, 11, 0.5);
            animation: star-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
        }

        .star-empty {
            color: #d1d5db;
        }

        .score-number {
            font-family: 'M PLUS Rounded 1c', sans-serif;
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--dolby-base);
        }

        .score-label-sub {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        @keyframes star-pop {
            0% {
                transform: scale(0);
                opacity: 0;
            }

            60% {
                transform: scale(1.3);
                opacity: 1;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        :root {
            --dolby-base: #0033aa;
            --dolby-bright: #0088ff;
            --edgy-brown: #9E5B22;
            --edgy-dark-brown: #4A2B0E;

            --bg-body: #f4f7fa;
            --bg-card: #ffffff;
            --text-main: #334155;
            --text-muted: #64748b;
            --accent-color: #0ea5e9;

            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 5px 10px rgba(0, 0, 0, 0.01);
            --card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08), 0 10px 20px rgba(0, 0, 0, 0.04);
        }

        body {
            font-family: 'Noto Sans JP', sans-serif;
            background-color: var(--bg-body);
            color: var(--text-main);
            margin: 0;
            padding: 0;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.2s;
        }

        a:hover {
            color: var(--dolby-bright);
        }


        /* --------------------------
           ヒーローセクション (Slim 25vh)
           -------------------------- */
        .hero-slim {
            position: relative;
            width: 100%;
            height: 25vh;
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: transparent;
            margin-bottom: 2rem;
        }

        .sound-wave-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 1px;
            height: 1px;
            pointer-events: none;
            z-index: 1;
        }

        .wave {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            border-radius: 50%;
            background: transparent;
            box-shadow: 0 0 20px rgba(0, 136, 255, 0.4);
            border: 2px solid rgba(102, 178, 255, 0.6);
            opacity: 0;
            filter: blur(4px);
            animation: bass-drop-epic 4.5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
        }

        .wave:nth-child(1) {
            animation-delay: 0s;
            width: 100px;
            height: 100px;
        }

        .wave:nth-child(2) {
            animation-delay: 0.15s;
            width: 100px;
            height: 100px;
        }

        .wave:nth-child(3) {
            animation-delay: 0.3s;
            width: 100px;
            height: 100px;
            border-style: dashed;
        }

        .wave-huge {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 136, 255, 0.8) 0%, rgba(0, 51, 170, 0.5) 50%, transparent 80%);
            filter: blur(15px);
            animation: bass-boom 4.5s cubic-bezier(0.1, 0.9, 0.2, 1) infinite;
        }

        .core {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 60px;
            height: 60px;
            background: radial-gradient(circle, #ffffff 0%, #66b2ff 40%, #0033aa 100%);
            border-radius: 50%;
            filter: blur(8px);
            transform: translate(-50%, -50%);
            box-shadow: 0 0 40px rgba(0, 136, 255, 0.9);
            animation: core-pulsate 4.5s ease-in-out infinite;
        }

        @keyframes bass-drop-epic {
            0% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 0;
            }

            5% {
                transform: translate(-50%, -50%) scale(0.6);
                opacity: 0.6;
                border-color: rgba(102, 178, 255, 0.8);
                box-shadow: 0 0 20px rgba(0, 136, 255, 0.6);
            }

            10% {
                transform: translate(-50%, -50%) scale(0.4);
                opacity: 0.3;
            }

            15% {
                transform: translate(-50%, -50%) scale(0.9);
                opacity: 0.8;
                border-color: rgba(102, 178, 255, 0.9);
                box-shadow: 0 0 30px rgba(0, 136, 255, 0.8);
            }

            20% {
                transform: translate(-50%, -50%) scale(0.7);
                opacity: 0.4;
            }

            28% {
                transform: translate(-50%, -50%) scale(2.0);
                opacity: 1;
                background: rgba(0, 136, 255, 0.05);
                border: 3px solid var(--edgy-brown);
                box-shadow: 0 0 70px rgba(0, 136, 255, 0.9), inset 0 0 20px var(--edgy-dark-brown);
            }

            45% {
                transform: translate(-50%, -50%) scale(6.0);
                opacity: 0;
                border-width: 1px;
                border-color: rgba(102, 178, 255, 0.2);
                box-shadow: transparent;
            }

            100% {
                transform: translate(-50%, -50%) scale(10.0);
                opacity: 0;
            }
        }

        @keyframes bass-boom {
            0% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 0;
            }

            20% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 0;
            }

            25% {
                transform: translate(-50%, -50%) scale(5.0);
                opacity: 0.9;
            }

            50% {
                transform: translate(-50%, -50%) scale(25.0);
                opacity: 0;
            }

            100% {
                transform: translate(-50%, -50%) scale(30.0);
                opacity: 0;
            }
        }

        @keyframes core-pulsate {
            0% {
                transform: translate(-50%, -50%) scale(1);
                filter: blur(8px);
            }

            5% {
                transform: translate(-50%, -50%) scale(1.2);
                filter: blur(12px);
                box-shadow: 0 0 50px rgba(0, 136, 255, 0.8);
            }

            10% {
                transform: translate(-50%, -50%) scale(0.9);
                filter: blur(6px);
            }

            15% {
                transform: translate(-50%, -50%) scale(1.3);
                filter: blur(15px);
                box-shadow: 0 0 60px rgba(0, 136, 255, 0.9);
            }

            20% {
                transform: translate(-50%, -50%) scale(0.85);
                filter: blur(5px);
            }

            28% {
                transform: translate(-50%, -50%) scale(1.8);
                filter: blur(15px);
                box-shadow: 0 0 80px rgba(0, 136, 255, 1), inset 0 0 20px var(--edgy-brown);
                background: #ffffff;
            }

            50% {
                transform: translate(-50%, -50%) scale(1);
                filter: blur(8px);
                box-shadow: 0 0 40px rgba(0, 136, 255, 0.9);
                background: radial-gradient(circle, #ffffff 0%, #66b2ff 40%, #0033aa 100%);
            }

            100% {
                transform: translate(-50%, -50%) scale(1);
                filter: blur(8px);
            }
        }

        .hero-text {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 0 1rem;
            box-sizing: border-box;
            text-align: center;
        }

        .hero-text h1 {
            font-family: 'M PLUS Rounded 1c', sans-serif;
            font-size: clamp(1.4rem, 5vw, 2.5rem);
            font-weight: 800;
            color: #1a2b3c;
            margin: 0;
            letter-spacing: -0.05em;
            line-height: 1.2;
            text-shadow: 0 0 10px rgba(255, 255, 255, 1), 0 0 20px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 0.9), 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* --------------------------
           コンテナ・メインカード
           -------------------------- */
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1.2rem;
            box-sizing: border-box;
        }

        .result-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 2rem 2rem;
            margin-bottom: 3rem;
            box-shadow: var(--card-shadow);
            border-top: 5px solid var(--accent-color);
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .info-item {
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #e2e8f0;
        }

        .info-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .info-label {
            font-weight: bold;
            color: var(--dolby-base);
            font-size: 0.9rem;
            margin-bottom: 0.2rem;
            display: block;
        }

        .info-value {
            color: var(--text-main);
            font-size: 1.05rem;
            line-height: 1.5;
        }

        .info-value-small {
            font-size: 0.85em;
            color: var(--text-muted);
        }

        /* スコアと上演時間のペアラッパー（モバイルで横並び） */
        .info-pair-wrapper {
            display: flex;
            gap: 1rem;
        }

        .info-pair-wrapper > .info-item {
            flex: 1;
            min-width: 0;
        }

        .info-block-text {
            background: #f8fafc;
            border-radius: 8px;
            padding: 1rem;
            margin-top: 0.5rem;
            border-left: 4px solid var(--accent-color);
            font-size: 0.95rem;
        }

        @media (min-width: 600px) {
            .info-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .info-item.full-width {
                grid-column: span 2;
            }

            /* PCではラッパーを透過し、子要素を個別グリッドアイテムとして扱う */
            .info-pair-wrapper {
                display: contents;
            }
        }

        /* セクションヘッダー */
        .section-title {
            font-family: 'M PLUS Rounded 1c', sans-serif;
            font-size: 1.4rem;
            color: var(--dolby-base);
            text-align: center;
            margin: 2rem 0 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
        }

        .section-title::before,
        .section-title::after {
            content: '';
            display: inline-block;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--dolby-bright), var(--dolby-base));
            border-radius: 2px;
        }

        /* --------------------------
           おすすめ (カード型UI)
           -------------------------- */
        .movie-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        @media (min-width: 600px) {
            .movie-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .movie-card {
            display: flex;
            flex-direction: column;
            background: var(--bg-card);
            border-radius: 16px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            box-shadow: var(--card-shadow);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .movie-card:hover,
        .movie-card:focus {
            transform: translateY(-5px);
            box-shadow: var(--card-shadow-hover);
            outline: none;
        }

        .card-header {
            background: linear-gradient(135deg, #1e293b, #334155);
            padding: 1.5rem 1rem;
            color: #fff;
            position: relative;
        }

        .card-badge {
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
            padding: 0.3rem 0.6rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .card-badge::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #facc15;
            border-radius: 50%;
            box-shadow: 0 0 5px #facc15;
        }

        .card-title {
            font-family: 'M PLUS Rounded 1c', sans-serif;
            font-weight: 800;
            font-size: 1.1rem;
            margin: 0;
            line-height: 1.4;
            margin-top: 0.5rem;
        }

        .card-body {
            padding: 1.2rem 1rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .card-impression {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
        }

        /* --------------------------
           アクションボタン (ピル型)
           -------------------------- */
        .action-area {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 4rem;
        }

        .pill-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--dolby-bright), var(--dolby-base));
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            font-family: 'M PLUS Rounded 1c', sans-serif;
            font-size: 1.1rem;
            padding: 1rem 2rem;
            border-radius: 50px;
            width: 100%;
            max-width: 320px;
            box-shadow: 0 10px 20px rgba(0, 136, 255, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
            box-sizing: border-box;
        }

        .pill-btn:hover,
        .pill-btn:focus {
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(0, 136, 255, 0.4);
            color: #fff;
        }

        .pill-btn.secondary {
            background: #fff;
            color: var(--text-main);
            border: 2px solid #e2e8f0;
            box-shadow: var(--card-shadow);
        }

        .pill-btn.secondary:hover,
        .pill-btn.secondary:focus {
            border-color: var(--accent-color);
            color: var(--accent-color);
            box-shadow: var(--card-shadow-hover);
            background: #fff;
        }

        /* --------------------------
           X (Twitter) Share & Appeal Action Area
           -------------------------- */
        .x-appeal-container {
            background: #f8fafc;
            border-radius: 20px;
            padding: 2rem 1.5rem;
            margin-bottom: 0.5rem;
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.02), 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px dashed #cbd5e1;
            text-align: center;
            width: 100%;
            max-width: 600px;
            box-sizing: border-box;
            position: relative;
        }

        .x-appeal-title {
            font-family: 'M PLUS Rounded 1c', sans-serif;
            font-size: 1.1rem;
            font-weight: 800;
            color: #334155;
            margin-top: 0;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            letter-spacing: 0.05em;
        }

        .x-appeal-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        .x-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-weight: bold;
            font-family: 'M PLUS Rounded 1c', sans-serif;
            padding: 0.9rem 1.5rem;
            border-radius: 50px;
            width: 100%;
            max-width: 320px;
            transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
            gap: 0.5rem;
            box-sizing: border-box;
            font-size: 1.05rem;
        }

        .x-btn svg {
            width: 20px;
            height: 20px;
        }

        .x-btn-follow {
            background: #0f1419;
            color: #ffffff;
            box-shadow: 0 5px 15px rgba(15, 20, 25, 0.2);
        }

        .x-btn-follow:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(15, 20, 25, 0.3);
            color: #ffffff;
            background: #272c30;
        }

        .x-btn-share {
            background: #ffffff;
            color: #0f1419;
            border: 2px solid #0f1419;
        }

        .x-btn-share:hover {
            transform: translateY(-2px);
            background: #f1f5f9;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        @media (max-width: 600px) {
            .x-appeal-container {
                padding: 1.5rem 1rem;
            }

            .x-appeal-title {
                font-size: 1rem;
            }

            .x-btn {
                font-size: 1rem;
            }
        }
