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

        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #000000;
            min-height: 100vh;
            padding: 0;
            position: relative;
            overflow-x: hidden;
        }

        /* 背景 - デフォルト（黒） */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #000000;
            z-index: -3;
            transition: opacity 0.5s ease;
            opacity: 1;
        }

        /* CSV統合モード時の背景（紫系） */
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, #1a0a1b 0%, #000000 100%);
            z-index: -3;
            transition: opacity 0.5s ease, visibility 0s 0.5s;
            opacity: 0;
            visibility: hidden;
        }

        body.fusion-mode::before {
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0s 0.5s;
        }

        body.fusion-mode::after {
            opacity: 1;
            visibility: visible;
            transition: opacity 0.5s ease, visibility 0s 0s;
        }

        @keyframes breathe {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.05) rotate(1deg); }
        }

        .container {
            max-width: 100%;
            width: 100%;
            margin: 0;
            padding: 0;
            background: transparent;
            overflow: visible;
            min-height: 100vh;
        }

        .header {
            background: transparent;
            color: white;
            padding: 40px 60px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* ヘッダーの装飾ライン */
        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 300%;
            height: 2px;
            background: linear-gradient(90deg,
                transparent 0%,
                #00FFA3 25%,
                #00B8D9 50%,
                #007BFF 75%,
                transparent 100%);
            animation: scan 8s linear infinite;
        }

        @keyframes scan {
            0% { transform: translateX(0); }
            100% { transform: translateX(33.33%); }
        }

        .header-badge {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, rgba(0, 255, 163, 0.2) 0%, rgba(0, 184, 217, 0.2) 100%);
            border: 1px solid rgba(0, 255, 163, 0.4);
            border-radius: 100px;
            font-size: 0.85em;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 30px;
            animation: glow 2s ease-in-out infinite;
            color: #00FFA3;
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 163, 0.3); }
            50% { box-shadow: 0 0 30px rgba(0, 184, 217, 0.5); }
        }

        /* CSV統合モード時のヘッダーバッジ（光なし） */
        body.fusion-mode .header-badge {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
            border-color: rgba(139, 92, 246, 0.6);
            color: #8B5CF6;
            box-shadow: none;
            animation: none;
        }

        .header h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3.5em;
            margin-bottom: 15px;
            font-weight: 800;
            letter-spacing: -2px;
            position: relative;
            background: linear-gradient(135deg, #00FFA3 0%, #00B8D9 25%, #007BFF 50%, #00FFA3 75%, #00B8D9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 300% 300%;
            animation: gradient-shift 8s ease infinite;
            text-shadow: 0 0 40px rgba(0, 255, 163, 0.5);
        }

        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .header p {
            opacity: 0.8;
            font-size: 1.1em;
            font-weight: 300;
            position: relative;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.4;
            color: #94a3b8;
        }

        /* CSVアップロードセクション */
        .upload-section {
            padding: 0 60px 40px 60px;
        }

        .upload-container {
            background: rgba(0, 255, 163, 0.02);
            border: 2px dashed rgba(0, 255, 163, 0.5);
            border-radius: 32px;
            padding: 50px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .upload-container:hover {
            background: rgba(0, 255, 163, 0.05);
            border-color: rgba(0, 184, 217, 0.7);
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(0, 255, 163, 0.2);
        }

        .upload-container::before {
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 300%;
            height: 300%;
            background: radial-gradient(circle, rgba(0, 255, 163, 0.1) 0%, transparent 70%);
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(0.8); opacity: 0; }
            50% { transform: scale(1.2); opacity: 1; }
        }

        #csvFile { display: none; }

        .upload-icon {
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
            width: 100px;
            height: 100px;
            perspective: 600px;
        }

        /* 3Dキューブコンテナ */
        .cube-3d {
            width: 60px;
            height: 60px;
            position: relative;
            transform-style: preserve-3d;
            transform: rotateX(-20deg) rotateY(45deg);
            animation: rotate-3d 8s linear infinite;
            margin: 20px auto;
        }

        @keyframes rotate-3d {
            0% { transform: rotateX(-20deg) rotateY(0deg) rotateZ(0deg); }
            100% { transform: rotateX(-20deg) rotateY(360deg) rotateZ(360deg); }
        }

        /* キューブの各面 */
        .cube-face {
            position: absolute;
            width: 60px;
            height: 60px;
            border: 2px solid rgba(0, 255, 163, 0.8);
            background: linear-gradient(135deg,
                rgba(0, 255, 163, 0.1) 0%,
                rgba(0, 184, 217, 0.1) 50%,
                rgba(123, 97, 255, 0.1) 100%);
            backdrop-filter: blur(10px);
            box-shadow:
                inset 0 0 20px rgba(0, 255, 163, 0.3),
                0 0 20px rgba(0, 255, 163, 0.2);
        }

        .cube-front {
            transform: rotateY(0deg) translateZ(30px);
            background: linear-gradient(135deg, rgba(0, 255, 163, 0.3), rgba(0, 184, 217, 0.2));
        }

        .cube-back {
            transform: rotateX(180deg) translateZ(30px);
            background: linear-gradient(135deg, rgba(255, 107, 157, 0.3), rgba(123, 97, 255, 0.2));
        }

        .cube-right {
            transform: rotateY(90deg) translateZ(30px);
            background: linear-gradient(135deg, rgba(0, 184, 217, 0.3), rgba(123, 97, 255, 0.2));
        }

        .cube-left {
            transform: rotateY(-90deg) translateZ(30px);
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 107, 53, 0.2));
        }

        .cube-top {
            transform: rotateX(90deg) translateZ(30px);
            background: linear-gradient(135deg, rgba(123, 97, 255, 0.3), rgba(0, 255, 163, 0.2));
        }

        .cube-bottom {
            transform: rotateX(-90deg) translateZ(30px);
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(193, 53, 132, 0.2));
        }

        /* 中心のコア */
        .cube-core {
            position: absolute;
            width: 20px;
            height: 20px;
            background: radial-gradient(circle,
                rgba(255, 255, 255, 1) 0%,
                rgba(0, 255, 163, 0.8) 30%,
                rgba(0, 184, 217, 0.4) 60%,
                transparent 100%);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: core-pulse 2s ease-in-out infinite;
            box-shadow:
                0 0 30px rgba(0, 255, 163, 0.8),
                0 0 60px rgba(0, 184, 217, 0.4);
        }

        @keyframes core-pulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 0.7;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 1;
            }
        }

        /* 各面のホバーエフェクト */
        .cube-face:hover {
            background: linear-gradient(135deg,
                rgba(0, 255, 163, 0.5) 0%,
                rgba(0, 184, 217, 0.4) 50%,
                rgba(123, 97, 255, 0.3) 100%);
            box-shadow:
                inset 0 0 30px rgba(0, 255, 163, 0.5),
                0 0 40px rgba(0, 255, 163, 0.4);
        }

        .upload-text {
            color: white;
            font-size: 2.5em;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .upload-subtext {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.2em;
            margin-bottom: 20px;
        }

        #fileName {
            color: #00FFA3;
            font-size: 1.2em;
            font-weight: 500;
            margin-top: 20px;
            text-shadow: 0 0 10px rgba(0, 255, 163, 0.5);
        }

        .format-info {
            background: rgba(0, 255, 163, 0.05);
            border-radius: 16px;
            padding: 20px;
            margin-top: 30px;
            color: rgba(148, 163, 184, 0.9);
            font-size: 0.9em;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 163, 0.2);
        }

        .start-button {
            background: linear-gradient(135deg, #00FFA3 0%, #00B8D9 100%);
            color: #000;
            border: none;
            padding: 20px 60px;
            border-radius: 100px;
            font-size: 1.2em;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 10px 40px rgba(0, 255, 163, 0.3);
        }

        .start-button:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(0, 184, 217, 0.4);
            background: linear-gradient(135deg, #00B8D9 0%, #007BFF 100%);
        }

        .start-button:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        /* 統計セクション */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            padding: 40px 60px;
        }

        .stat-card {
            background: rgba(0, 184, 217, 0.05);
            border: 1px solid rgba(0, 184, 217, 0.25);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            background: rgba(0, 255, 163, 0.05);
            box-shadow: 0 20px 40px rgba(0, 255, 163, 0.2);
        }

        /* 進行中のエフェクト（左から右に流れる） */
        .stat-card.searching::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #00FFA3, #00B8D9, #007BFF);
            animation: slide 3s ease-in-out infinite;
        }

        /* 完了時のエフェクト（全体が光る） */
        .stat-card.completed::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #00B8D9, #00FFA3, #00B8D9);
            animation: pulse-glow 2s ease-in-out infinite;
        }

        .stat-card.completed {
            background: rgba(0, 184, 217, 0.2);
            box-shadow: 0 0 60px rgba(0, 184, 217, 1), 0 0 120px rgba(0, 184, 217, 0.7);
            border-color: rgba(0, 184, 217, 1);
        }

        @keyframes slide {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes pulse-glow {
            0%, 100% {
                opacity: 1;
                box-shadow: 0 0 40px rgba(0, 184, 217, 1), 0 0 80px rgba(0, 184, 217, 0.6);
            }
            50% {
                opacity: 0.8;
                box-shadow: 0 0 60px rgba(0, 184, 217, 1), 0 0 120px rgba(0, 184, 217, 0.8);
            }
        }

        .stat-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #00FFA3 0%, #00B8D9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 10px rgba(0, 255, 163, 0.5));
        }

        .stat-value {
            font-size: 2.5em;
            font-weight: 800;
            color: #00FFA3;
            margin-bottom: 5px;
            text-shadow: 0 0 20px rgba(0, 255, 163, 0.5);
        }

        .stat-label {
            color: rgba(148, 163, 184, 0.8);
            font-size: 0.9em;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* 結果セクション */
        .results-section {
            padding: 40px 60px;
        }

        .results-header {
            color: white;
            font-size: 2em;
            font-weight: 700;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .results-header::before {
            content: '💎';
            font-size: 1.5em;
            filter: hue-rotate(120deg);
        }

        .results-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            max-height: 800px;
            overflow-y: auto;
            padding: 10px;
        }

        .result-card {
            background: rgba(17, 24, 39, 0.6);
            border: 1px solid rgba(0, 255, 163, 0.2);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .result-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #00FFA3, #00B8D9);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .result-card:hover {
            transform: translateY(-5px);
            background: rgba(0, 255, 163, 0.05);
            box-shadow: 0 20px 60px rgba(0, 255, 163, 0.2);
        }

        .result-card:hover::before {
            opacity: 1;
        }

        .result-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background: linear-gradient(135deg, rgba(0, 255, 163, 0.1), rgba(0, 184, 217, 0.1));
        }

        .result-content {
            padding: 20px;
        }

        .result-title {
            color: white;
            font-size: 1.1em;
            font-weight: 600;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .price-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .price-box {
            text-align: center;
        }

        .price-label {
            color: rgba(148, 163, 184, 0.8);
            font-size: 0.8em;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .price-value {
            font-size: 1.3em;
            font-weight: 700;
            margin-top: 5px;
        }

        .mercari-price {
            color: #FF6B6B;
        }

        .yahoo-price {
            color: #4ECDC4;
        }

        .profit-price {
            color: #00FFA3;
            text-shadow: 0 0 10px rgba(0, 255, 163, 0.5);
        }

        .profit-badge {
            background: linear-gradient(135deg, #00FFA3 0%, #00B8D9 100%);
            color: #000;
            padding: 8px 16px;
            border-radius: 100px;
            font-weight: 700;
            font-size: 1.1em;
            text-align: center;
            margin-bottom: 15px;
            box-shadow: 0 5px 20px rgba(0, 255, 163, 0.3);
        }

        .shop-info {
            color: rgba(148, 163, 184, 0.8);
            font-size: 0.9em;
            margin-bottom: 15px;
        }

        .buy-link {
            display: block;
            text-align: center;
            background: linear-gradient(135deg, #00FFA3 0%, #00B8D9 100%);
            color: #000;
            text-decoration: none;
            padding: 12px;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .buy-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 255, 163, 0.4);
            background: linear-gradient(135deg, #00B8D9 0%, #007BFF 100%);
        }

        /* ローディング */
        .loading-container {
            text-align: center;
            padding: 100px;
            color: white;
        }

        .spinner {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            border: 4px solid rgba(0, 255, 163, 0.1);
            border-top-color: #00FFA3;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            box-shadow: 0 0 40px rgba(0, 255, 163, 0.5);
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .loading-text {
            font-size: 1.5em;
            margin-bottom: 10px;
            color: #00FFA3;
        }

        .loading-subtext {
            color: rgba(148, 163, 184, 0.8);
        }

        /* エラー・成功メッセージ */
        .message {
            padding: 20px;
            border-radius: 16px;
            margin: 20px 60px;
            font-size: 1.1em;
            animation: slideIn 0.5s ease;
        }

        @keyframes slideIn {
            from { transform: translateY(-20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .error-message {
            background: rgba(255, 107, 107, 0.1);
            border: 1px solid rgba(255, 107, 107, 0.3);
            color: #FF6B6B;
        }

        .success-message {
            background: rgba(0, 255, 163, 0.1);
            border: 1px solid rgba(0, 255, 163, 0.3);
            color: #00FFA3;
        }

        .no-results {
            text-align: center;
            padding: 100px;
            color: rgba(148, 163, 184, 0.8);
            font-size: 1.3em;
        }

        /* チェックボックスコンテナ */
        .card-checkbox-container {
            position: absolute;
            top: 15px;
            left: 15px;
            z-index: 5;
        }

        /* チェックボックス本体（非表示） */
        .card-checkbox {
            display: none;
        }

        /* チェックボックスラベル（表示部分） */
        .checkbox-label {
            display: block;
            width: 30px;
            height: 30px;
            border: 2px solid rgba(0, 255, 163, 0.5);
            border-radius: 50%;
            background: rgba(17, 24, 39, 0.8);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .checkbox-label:hover {
            border-color: #00FFA3;
            box-shadow: 0 0 20px rgba(0, 255, 163, 0.5);
        }

        /* チェック時のスタイル */
        .card-checkbox:checked + .checkbox-label {
            background: linear-gradient(135deg, #00FFA3 0%, #00B8D9 100%);
            border-color: #00FFA3;
            box-shadow: 0 0 30px rgba(0, 255, 163, 0.8);
        }

        /* チェックマーク */
        .card-checkbox:checked + .checkbox-label::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #000;
            font-size: 18px;
            font-weight: 900;
        }

        /* CSV統合モード時のチェックボックス紫色 */
        body.fusion-mode .checkbox-label {
            border-color: rgba(139, 92, 246, 0.5);
        }

        body.fusion-mode .checkbox-label:hover {
            border-color: #8B5CF6;
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
        }

        body.fusion-mode .card-checkbox:checked + .checkbox-label {
            background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
            border-color: #8B5CF6;
            box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
        }

        /* 見送りボタン */
        .skip-btn {
            width: 100%;
            margin-top: 10px;
            padding: 10px;
            background: rgba(255, 107, 157, 0.2);
            border: 1px solid rgba(255, 107, 157, 0.4);
            border-radius: 8px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .skip-btn:hover {
            background: rgba(255, 107, 157, 0.3);
            box-shadow: 0 0 20px rgba(255, 107, 157, 0.4);
        }

        /* 見送り済みカード */
        .result-card.skipped {
            opacity: 0.5;
            filter: grayscale(80%);
            position: relative;
        }

        .result-card.skipped::after {
            content: '見送り済み';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-20deg);
            font-size: 3em;
            font-weight: 900;
            color: rgba(255, 107, 157, 0.6);
            text-shadow: 0 0 30px rgba(255, 107, 157, 0.8);
            pointer-events: none;
            z-index: 10;
        }

        /* スクロールバー */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(17, 24, 39, 0.4);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #00FFA3, #00B8D9);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #00B8D9, #007BFF);
        }

        /* API設定モーダル */
        .api-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
        }

        .api-modal-content {
            background: rgba(17, 24, 39, 0.9);
            border: 2px solid rgba(0, 255, 163, 0.3);
            border-radius: 24px;
            padding: 50px;
            max-width: 600px;
            width: 90%;
            box-shadow: 0 30px 100px rgba(0, 255, 163, 0.2);
            backdrop-filter: blur(20px);
        }

        .api-modal-content h2 {
            color: #00FFA3;
            font-size: 2em;
            margin-bottom: 20px;
            text-align: center;
        }

        .api-modal-content p {
            color: #94a3b8;
            text-align: center;
            margin-bottom: 20px;
        }

        .api-link {
            display: block;
            text-align: center;
            color: #00B8D9;
            text-decoration: none;
            margin-bottom: 30px;
            font-size: 0.9em;
        }

        .api-link:hover {
            text-decoration: underline;
        }

        .api-modal-content input {
            width: 100%;
            padding: 15px;
            background: rgba(0, 255, 163, 0.05);
            border: 2px solid rgba(0, 255, 163, 0.3);
            border-radius: 12px;
            color: white;
            font-size: 1em;
            margin-bottom: 20px;
        }

        .api-modal-content input:focus {
            outline: none;
            border-color: #00FFA3;
            box-shadow: 0 0 20px rgba(0, 255, 163, 0.3);
        }

        /* トグルスイッチ */
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 26px;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: 0.3s;
            border-radius: 34px;
        }

        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background: linear-gradient(135deg, #94A3B8 0%, #64748B 100%);
            transition: 0.3s;
            border-radius: 50%;
        }

        .toggle-switch input:checked + .toggle-slider {
            background: linear-gradient(135deg, rgba(0, 255, 163, 0.2) 0%, rgba(0, 184, 217, 0.2) 100%);
            border-color: rgba(0, 255, 163, 0.5);
        }

        .toggle-switch input:checked + .toggle-slider:before {
            transform: translateX(24px);
            background: linear-gradient(135deg, #00FFA3 0%, #00B8D9 100%);
        }

        .api-save-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #00FFA3 0%, #00B8D9 100%);
            color: #000;
            border: none;
            border-radius: 100px;
            font-size: 1.1em;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* ソートセレクト */
        #sortSelect {
            transition: all 0.3s ease;
        }

        #sortSelect:hover {
            background: rgba(0, 255, 163, 0.2);
            border-color: rgba(0, 255, 163, 0.5);
            box-shadow: 0 0 20px rgba(0, 255, 163, 0.3);
        }

        #sortSelect option {
            background: #111827;
            color: white;
        }

        /* トグルスイッチ */
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 26px;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(148, 163, 184, 0.3);
            transition: 0.4s;
            border-radius: 34px;
            border: 1px solid rgba(0, 255, 163, 0.2);
        }

        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 4px;
            bottom: 3px;
            background-color: white;
            transition: 0.4s;
            border-radius: 50%;
        }

        input:checked + .toggle-slider {
            background: linear-gradient(135deg, #00FFA3 0%, #00B8D9 100%);
            border-color: #00FFA3;
            box-shadow: 0 0 20px rgba(0, 255, 163, 0.5);
        }

        input:checked + .toggle-slider:before {
            transform: translateX(24px);
        }

        .api-save-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 255, 163, 0.4);
        }

        .api-note {
            font-size: 0.85em;
            color: rgba(148, 163, 184, 0.6);
            text-align: center;
            margin-top: 15px;
        }

        .settings-btn {
            background: rgba(0, 255, 163, 0.1);
            border: 1px solid rgba(0, 255, 163, 0.3);
            color: #00FFA3;
            padding: 10px 20px;
            border-radius: 100px;
            cursor: pointer;
            font-size: 0.9em;
            transition: all 0.3s ease;
        }

        .settings-btn:hover {
            background: rgba(0, 255, 163, 0.2);
            box-shadow: 0 5px 20px rgba(0, 255, 163, 0.3);
        }

        /* CSV統合モード時の紫色（光なし） */
        body.fusion-mode .settings-btn {
            background: rgba(139, 92, 246, 0.1);
            border-color: rgba(139, 92, 246, 0.5);
            color: #8B5CF6;
        }

        body.fusion-mode .settings-btn:hover {
            background: rgba(139, 92, 246, 0.2);
            box-shadow: 0 5px 20px rgba(139, 92, 246, 0.5);
        }

        /* 送信方法選択ラジオボタン */
        .method-radio:hover {
            background: rgba(0, 255, 163, 0.2) !important;
            border-color: rgba(0, 255, 163, 0.5) !important;
            box-shadow: 0 0 20px rgba(0, 255, 163, 0.3);
        }

        .method-radio:has(input:checked) {
            background: linear-gradient(135deg, rgba(0, 255, 163, 0.3) 0%, rgba(0, 184, 217, 0.3) 100%) !important;
            border-color: #00FFA3 !important;
            box-shadow: 0 0 30px rgba(0, 255, 163, 0.5);
        }

        /* モード切替タブ */
        .mode-tabs {
            display: flex;
            gap: 15px;
            justify-content: center;
            padding: 20px 60px 0;
            margin-bottom: 20px;
        }

        .mode-tab {
            flex: 1;
            max-width: 400px;
            padding: 15px 30px;
            background: rgba(0, 255, 163, 0.05);
            border: 2px solid rgba(0, 255, 163, 0.2);
            border-radius: 16px;
            color: rgba(148, 163, 184, 0.9);
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mode-tab::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 163, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .mode-tab:hover::before {
            left: 100%;
        }

        .mode-tab:hover {
            background: rgba(0, 255, 163, 0.1);
            border-color: rgba(0, 255, 163, 0.4);
            transform: translateY(-2px);
        }

        .mode-tab.active {
            background: linear-gradient(135deg, rgba(0, 255, 163, 0.2) 0%, rgba(0, 184, 217, 0.2) 100%);
            border-color: #00FFA3;
            color: #00FFA3;
            box-shadow: 0 10px 30px rgba(0, 255, 163, 0.3), inset 0 0 20px rgba(0, 255, 163, 0.1);
        }

        .mode-tab.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #00FFA3, #00B8D9);
            box-shadow: 0 0 15px rgba(0, 255, 163, 0.8);
        }

        /* CSV統合モード時のタブ紫色（光なし） */
        body.fusion-mode .mode-tab {
            background: rgba(139, 92, 246, 0.1);
            border-color: rgba(139, 92, 246, 0.4);
            color: rgba(139, 92, 246, 0.9);
        }

        body.fusion-mode .mode-tab::before {
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
        }

        body.fusion-mode .mode-tab:hover {
            background: rgba(139, 92, 246, 0.15);
            border-color: rgba(139, 92, 246, 0.6);
        }

        body.fusion-mode .mode-tab.active {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(124, 58, 237, 0.25) 100%);
            border-color: #8B5CF6;
            color: #8B5CF6;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3), inset 0 0 20px rgba(139, 92, 246, 0.1);
        }

        body.fusion-mode .mode-tab.active::after {
            background: linear-gradient(90deg, #8B5CF6, #7C3AED);
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
        }

        /* モードコンテンツ */
        .mode-content {
            display: none;
        }

        .mode-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===============================================
           スーパーレスポンシブ対応
           =============================================== */

        /* タブレット (1024px以下) */
        @media (max-width: 1024px) {
            .header h1 {
                font-size: 2.5em;
            }

            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
                padding: 30px 40px;
            }

            .results-container {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 20px;
            }

            .upload-section {
                padding: 0 40px 30px 40px;
            }

            .results-section {
                padding: 30px 40px;
            }
        }

        /* スマホ横 (768px以下) */
        @media (max-width: 768px) {
            .header {
                padding: 30px 20px 20px;
            }

            .header h1 {
                font-size: 2em;
                letter-spacing: -1px;
            }

            .header p {
                font-size: 0.95em;
            }

            .header-badge {
                font-size: 0.75em;
                padding: 6px 15px;
            }

            .mode-tabs {
                padding: 15px 20px 0;
                gap: 10px;
            }

            .mode-tab {
                padding: 12px 20px;
                font-size: 0.95em;
            }

            .upload-section {
                padding: 0 20px 20px 20px;
            }

            .results-section {
                padding: 20px;
            }

            .upload-container {
                padding: 30px 20px;
                border-radius: 20px;
            }

            .upload-text {
                font-size: 2em;
            }

            .upload-subtext {
                font-size: 1.08em;
            }

            .format-info {
                font-size: 0.85em;
                padding: 15px;
            }

            .start-button {
                padding: 15px 40px;
                font-size: 1em;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                padding: 20px;
            }

            .stat-card {
                padding: 20px;
            }

            .stat-value {
                font-size: 2em;
            }

            .stat-icon {
                font-size: 2em;
            }

            .results-header {
                font-size: 1.5em;
                flex-wrap: wrap;
            }

            .results-container {
                grid-template-columns: 1fr;
                gap: 15px;
                max-height: none;
            }

            .result-card {
                border-radius: 15px;
            }

            .price-container {
                flex-wrap: wrap;
                gap: 10px;
            }

            .price-box {
                flex: 1;
                min-width: 80px;
            }

            .price-value {
                font-size: 1.1em;
            }

            .message {
                margin: 20px;
                font-size: 1em;
            }

            .api-modal-content {
                padding: 30px 20px;
                width: 95%;
            }

            .api-modal-content h2 {
                font-size: 1.5em;
            }
        }

        /* スマホ縦 (480px以下) */
        @media (max-width: 480px) {
            .header h1 {
                font-size: 1.8em;
            }

            .header p {
                font-size: 0.85em;
                padding: 0 10px;
            }

            .header-badge {
                font-size: 0.7em;
                padding: 5px 12px;
                letter-spacing: 1px;
            }

            .mode-tabs {
                flex-direction: column;
                gap: 10px;
            }

            .mode-tab {
                max-width: 100%;
                padding: 12px 15px;
                font-size: 0.9em;
            }

            .upload-container {
                padding: 25px 15px;
            }

            .cube-3d {
                width: 50px;
                height: 50px;
            }

            .cube-face {
                width: 50px;
                height: 50px;
            }

            .cube-core {
                width: 15px;
                height: 15px;
            }

            .upload-text {
                font-size: 1.8em;
            }

            .upload-subtext {
                font-size: 1em;
            }

            #fileName {
                font-size: 1em;
                word-break: break-all;
            }

            .start-button {
                padding: 12px 30px;
                font-size: 0.95em;
                letter-spacing: 1px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                padding: 15px;
                gap: 12px;
            }

            .stat-card {
                padding: 15px;
            }

            .stat-value {
                font-size: 1.8em;
            }

            .stat-icon {
                font-size: 1.8em;
            }

            .stat-label {
                font-size: 0.85em;
            }

            .results-header {
                font-size: 1.3em;
                justify-content: center;
            }

            .results-header::before {
                font-size: 1.2em;
            }

            .result-image {
                height: 180px;
            }

            .result-content {
                padding: 15px;
            }

            .result-title {
                font-size: 1em;
            }

            .profit-badge {
                padding: 6px 12px;
                font-size: 1em;
            }

            .price-container {
                flex-direction: column;
                gap: 12px;
            }

            .price-box {
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .price-label {
                font-size: 0.75em;
            }

            .price-value {
                font-size: 1.2em;
            }

            .shop-info {
                font-size: 0.85em;
            }

            .buy-link {
                padding: 10px;
                font-size: 0.95em;
            }

            .loading-container {
                padding: 60px 20px;
            }

            .spinner {
                width: 60px;
                height: 60px;
            }

            .loading-text {
                font-size: 1.2em;
            }

            .loading-subtext {
                font-size: 0.9em;
            }

            .api-modal-content {
                padding: 25px 15px;
            }

            .api-modal-content h2 {
                font-size: 1.3em;
            }

            .api-modal-content input {
                padding: 12px;
                font-size: 0.95em;
            }

            .api-save-btn {
                padding: 12px;
                font-size: 1em;
            }

            .settings-btn {
                padding: 8px 15px;
                font-size: 0.85em;
            }

            .no-results {
                padding: 60px 20px;
                font-size: 1.1em;
            }
        }

        /* 超小型スマホ (360px以下) */
        @media (max-width: 360px) {
            .header h1 {
                font-size: 1.5em;
            }

            .header p {
                font-size: 0.8em;
            }

            .mode-tab {
                font-size: 0.85em;
                padding: 10px;
            }

            .upload-text {
                font-size: 1.6em;
            }

            .start-button {
                padding: 10px 25px;
                font-size: 0.9em;
            }

            .stat-value {
                font-size: 1.5em;
            }

            .result-title {
                font-size: 0.95em;
            }

            .price-value {
                font-size: 1.1em;
            }
        }

        /* ===============================================
           CSV統合モード - 全ての緑を紫に変換
           =============================================== */

        /* Yahoo検索モードではこれらのスタイルは表示されません */
        /* CSV統合モード（body.fusion-mode）時のみ適用 */

        /* ヘッダー装飾ライン */
        body.fusion-mode .header::before {
            background: linear-gradient(90deg,
                transparent 0%,
                #8B5CF6 25%,
                #7C3AED 50%,
                #8B5CF6 75%,
                transparent 100%);
        }

        /* アップロードコンテナ */
        body.fusion-mode .upload-container {
            background: rgba(139, 92, 246, 0.02);
            border-color: rgba(139, 92, 246, 0.5);
        }

        body.fusion-mode .upload-container:hover {
            background: rgba(139, 92, 246, 0.05);
            border-color: rgba(124, 58, 237, 0.7);
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
        }

        body.fusion-mode .upload-container::before {
            background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
        }

        /* キューブ */
        body.fusion-mode .cube-face {
            border-color: rgba(139, 92, 246, 0.8);
            box-shadow:
                inset 0 0 20px rgba(139, 92, 246, 0.3),
                0 0 20px rgba(139, 92, 246, 0.2);
        }

        body.fusion-mode .cube-front {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(124, 58, 237, 0.2));
        }

        body.fusion-mode .cube-core {
            background: radial-gradient(circle,
                rgba(255, 255, 255, 1) 0%,
                rgba(139, 92, 246, 0.8) 30%,
                rgba(124, 58, 237, 0.4) 60%,
                transparent 100%);
            box-shadow:
                0 0 30px rgba(139, 92, 246, 0.8),
                0 0 60px rgba(124, 58, 237, 0.4);
        }

        body.fusion-mode .cube-face:hover {
            background: linear-gradient(135deg,
                rgba(139, 92, 246, 0.5) 0%,
                rgba(124, 58, 237, 0.4) 50%,
                rgba(123, 97, 255, 0.3) 100%);
            box-shadow:
                inset 0 0 30px rgba(139, 92, 246, 0.5),
                0 0 40px rgba(139, 92, 246, 0.4);
        }

        /* ファイル名 */
        body.fusion-mode #fileName {
            color: #8B5CF6;
            text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
        }

        /* フォーマット情報 */
        body.fusion-mode .format-info {
            background: rgba(139, 92, 246, 0.05);
            border-color: rgba(139, 92, 246, 0.2);
        }

        /* 開始ボタン */
        body.fusion-mode .start-button {
            background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
            box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
        }

        body.fusion-mode .start-button:hover:not(:disabled) {
            box-shadow: 0 15px 50px rgba(124, 58, 237, 0.4);
            background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
        }

        /* 統計カード */
        body.fusion-mode .stat-card {
            background: rgba(124, 58, 237, 0.05);
            border-color: rgba(124, 58, 237, 0.25);
        }

        body.fusion-mode .stat-card:hover {
            background: rgba(139, 92, 246, 0.05);
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
        }

        body.fusion-mode .stat-card.searching::before {
            background: linear-gradient(90deg, #8B5CF6, #7C3AED, #8B5CF6);
        }

        body.fusion-mode .stat-card.completed::before {
            background: linear-gradient(90deg, #7C3AED, #8B5CF6, #7C3AED);
        }

        body.fusion-mode .stat-card.completed {
            background: rgba(124, 58, 237, 0.2);
            box-shadow: 0 0 60px rgba(124, 58, 237, 1), 0 0 120px rgba(124, 58, 237, 0.7);
            border-color: rgba(124, 58, 237, 1);
        }

        body.fusion-mode .stat-icon {
            background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
        }

        body.fusion-mode .stat-value {
            color: #8B5CF6;
            text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
        }

        /* 結果カード */
        body.fusion-mode .result-card {
            border-color: rgba(139, 92, 246, 0.2);
        }

        body.fusion-mode .result-card::before {
            background: linear-gradient(90deg, #8B5CF6, #7C3AED);
        }

        body.fusion-mode .result-card:hover {
            background: rgba(139, 92, 246, 0.05);
            box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
        }

        body.fusion-mode .result-image {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.1));
        }

        body.fusion-mode .profit-price {
            color: #8B5CF6;
            text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
        }

        body.fusion-mode .profit-badge {
            background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
            box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
        }

        body.fusion-mode .buy-link {
            background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
        }

        body.fusion-mode .buy-link:hover {
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
            background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
        }

        /* ローディング */
        body.fusion-mode .spinner {
            border-color: rgba(139, 92, 246, 0.1);
            border-top-color: #8B5CF6;
            box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
        }

        body.fusion-mode .loading-text {
            color: #8B5CF6;
        }

        /* 成功メッセージ */
        body.fusion-mode .success-message {
            background: rgba(139, 92, 246, 0.1);
            border-color: rgba(139, 92, 246, 0.3);
            color: #8B5CF6;
        }

        /* スクロールバー */
        body.fusion-mode ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #8B5CF6, #7C3AED);
        }

        body.fusion-mode ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #7C3AED, #6D28D9);
        }

        /* APIモーダル */
        body.fusion-mode .api-modal-content {
            border-color: rgba(139, 92, 246, 0.3);
            box-shadow: 0 30px 100px rgba(139, 92, 246, 0.2);
        }

        body.fusion-mode .api-modal-content h2 {
            color: #8B5CF6;
        }

        body.fusion-mode .api-link {
            color: #7C3AED;
        }

        body.fusion-mode .api-modal-content input {
            background: rgba(139, 92, 246, 0.05);
            border-color: rgba(139, 92, 246, 0.3);
        }

        body.fusion-mode .api-modal-content input:focus {
            border-color: #8B5CF6;
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
        }

        body.fusion-mode .api-save-btn {
            background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
        }

        body.fusion-mode .api-save-btn:hover {
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
        }

        /* トグルスイッチ */
        body.fusion-mode .toggle-slider {
            border-color: rgba(139, 92, 246, 0.2);
        }

        body.fusion-mode input:checked + .toggle-slider {
            background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
            border-color: #8B5CF6;
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
        }

/* ========================================
   プラン選択モーダル
   ======================================== */

.plan-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(26, 31, 46, 0.9) 100%);
    border: 1px solid rgba(0, 255, 163, 0.2);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.plan-card:hover {
    border-color: #00FFA3;
    box-shadow: 0 10px 40px rgba(0, 255, 163, 0.2);
    transform: translateY(-5px);
}

.plan-card.recommended {
    border-color: #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.plan-card.recommended:hover {
    box-shadow: 0 10px 50px rgba(255, 215, 0, 0.4);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    color: #00FFA3;
}

.plan-card.recommended .plan-name {
    color: #FFD700;
}

.plan-icon {
    font-size: 32px;
}

.plan-price {
    margin-bottom: 15px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: white;
}

.price-period {
    font-size: 18px;
    color: #94A3B8;
    margin-left: 5px;
}

.plan-description {
    color: #94A3B8;
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: 500;
}

.plan-features {
    margin-bottom: 25px;
}

.feature-item {
    padding: 10px 0;
    color: #CBD5E1;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item:last-child {
    border-bottom: none;
}

.plan-select-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #00FFA3 0%, #00B8D9 100%);
    border: none;
    border-radius: 10px;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 163, 0.4);
}

.plan-card.recommended .plan-select-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.plan-card.recommended .plan-select-btn:hover {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    #planCards {
        grid-template-columns: 1fr !important;
    }

    .plan-card {
        padding: 25px;
    }

    .price-amount {
        font-size: 36px;
    }
}
