@charset "utf-8";
        .soul-test {
            max-width: 720px;
            margin: 2rem auto;
            padding: 2rem 2rem 2.5rem;
            background: #f9f7f2;
            border-radius: 40px;
            box-shadow: 0 16px 32px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.03);
            font-family: system-ui, -apple-system, 'Microsoft YaHei', sans-serif;
            border: 1px solid #e6dfd3;
            text-align: center;
        }

        .soul-test h2 {
            font-size: 2.2rem;
            font-weight: 400;
            color: #4a3f33;
            margin: 0 0 1.2rem 0;
            letter-spacing: 3px;
            border-bottom: 2px dotted #ccbbaa;
            padding-bottom: 0.6rem;
            display: inline-block;
        }

        .test-btn {
            background: #7c5f4a;
            background-image: linear-gradient(145deg, #9a7b62, #624b39);
            border: none;
            color: #fff7e8;
            font-size: 1.5rem;
            font-weight: 500;
            padding: 1rem 3rem;
            border-radius: 60px;
            box-shadow: 0 10px 0 #3f3023, 0 16px 28px -8px #5a4a3a;
            cursor: pointer;
            transition: all 0.15s;
            letter-spacing: 4px;
            border: 1px solid #c0a78b;
            margin: 1rem 0 2rem;
            line-height: 1.3;
            min-width: 260px;
        }

        .test-btn:hover:not(:disabled) {
            transform: translateY(-4px);
            box-shadow: 0 14px 0 #3f3023, 0 22px 34px -8px #6b5540;
            background-image: linear-gradient(145deg, #a8896f, #735b46);
        }

        .test-btn:active:not(:disabled) {
            transform: translateY(5px);
            box-shadow: 0 5px 0 #3f3023, 0 10px 20px -5px #5a4a3a;
        }

        .test-btn:disabled {
            opacity: 0.8;
            filter: grayscale(20%);
            transform: translateY(5px);
            box-shadow: 0 5px 0 #3f3023, 0 8px 16px -6px #5a4a3a;
            cursor: not-allowed;
        }

        .result-card {
            background: #f1ebe2;
            border-radius: 36px;
            padding: 1.8rem 1.5rem;
            border: 1px solid #dacfc1;
            box-shadow: inset 0 1px 4px #fff8f0, 0 6px 12px rgba(120, 90, 60, 0.1);
        }

        .total-score {
            font-size: 1.4rem;
            font-weight: 600;
            color: #3a2e23;
            background: #e2d5c4;
            display: inline-block;
            padding: 0.5rem 2.5rem;
            border-radius: 50px;
            margin: 0 0 1.8rem 0;
            box-shadow: 0 4px 0 #ac9b86, 0 8px 16px rgba(80,60,40,0.1);
            letter-spacing: 1px;
        }

        .scores-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 0.8rem 1.5rem;
            text-align: left;
            background: #faf5ec;
            padding: 1.5rem 2rem;
            border-radius: 32px;
            border: 1px solid #ddd0be;
        }

        .score-item {
            font-size: 1.15rem;
            color: #2c241c;
            border-bottom: 1px dashed #cbbaa7;
            padding: 0.4rem 0;
            display: flex;
            justify-content: space-between;
            align-items: baseline;
        }

        .score-item span:first-child {
            font-weight: 400;
            color: #5e4c39;
        }

        .score-item span:last-child {
            font-weight: 600;
            background: #d6c8b6;
            padding: 0.1rem 0.8rem;
            border-radius: 30px;
            font-size: 1.25rem;
        }

        .placeholder-note {
            color: #a48e78;
            font-size: 1.3rem;
            padding: 2rem;
            font-style: italic;
            background: #f1ebe2;
            border-radius: 40px;
        }

        .countdown-note {
            font-size: 1.2rem;
            color: #8f755c;
            margin-top: 1rem;
        }
