﻿body, html { 
    margin: 0; padding: 0; background: #000; color: #fff; 
    font-family: 'Noto Serif TC', serif; overflow-x: hidden; 
}

/* --- 音樂圖標：琥珀金唱機 --- */
.music-wrapper {
    position: fixed; top: 25px; right: 25px; z-index: 1000;
    width: 60px; height: 60px; cursor: pointer;
}
.music-disc {
    width: 44px; height: 44px; border: 1.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%; background: radial-gradient(circle, #222 10%, #000 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}
.disc-inner { width: 8px; height: 8px; background: #d4af37; border-radius: 50%; box-shadow: 0 0 10px #d4af37; }
.music-needle {
    position: absolute; top: 8px; right: 8px; width: 18px; height: 1.5px;
    background: #d4af37; transform-origin: right; transform: rotate(15deg);
    transition: 0.5s ease;
}
.rotating { animation: disc-rotate 8s linear infinite; }
.needle-on { transform: rotate(40deg); }
@keyframes disc-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* --- 隱秘呼吸感「忍住」 --- */
.hidden-stay {
    position: fixed; bottom: 20px; left: 20px; z-index: 1000;
    color: rgba(255, 255, 255, 0.1); 
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 300;
    animation: text-breathe 4s ease-in-out infinite;
}
.hidden-stay .dot { font-size: 8px; margin-right: 4px; vertical-align: middle; opacity: 0.5; }
@keyframes text-breathe {
    0%, 100% { color: rgba(255, 255, 255, 0.08); text-shadow: none; }
    50% { color: rgba(212, 175, 55, 0.35); text-shadow: 0 0 8px rgba(212, 175, 55, 0.2); }
}
.hidden-stay:hover { animation: none; color: rgba(212, 175, 55, 0.8); }

/* --- 文字動效：電影質感漸顯 --- */
.page { width: 100%; min-height: 100vh; display: flex; flex-direction: column; align-items: center; }
.main-img { width: 100%; max-width: 500px; }
.text-box {
    padding: 60px 25px; width: 85%; max-width: 450px;
    opacity: 0; filter: blur(12px); transform: translateY(25px);
    transition: all 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.text-box.show { opacity: 1; filter: blur(0); transform: translateY(0); }
.text-box p { margin: 18px 0; font-size: 18px; letter-spacing: 3px; color: rgba(255,255,255,0.7); line-height: 2.2; }
.highlight { color: #d4af37; font-weight: 500; }
.action-text { font-size: 24px !important; color: #fff !important; margin-top: 40px !important; letter-spacing: 5px !important; }