/* ===========================
   全站統一 Album Base Template
   =========================== */

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

body {
    background: #0a0a0f;
    color: #e0c9a6;
    font-family: 'EB Garamond', serif;
    line-height: 1.6;
}

/* Header */
header {
    height: 70px;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    border-bottom: 1px solid #222;
}

.logo {
    font-size: 1.4rem;
    color: #d4af37;
    text-decoration: none;
}

.brand-name {
    font-family: 'EB Garamond', serif;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 87, 0.4);
    font-size: 1.5rem;
}

.ai {
    font-family: 'Cinzel Decorative', cursive;
    color: #ff4d4d;
    text-shadow:
        0 0 15px #ff4d4d,
        0 0 30px #ff4d4d,
        0 0 60px #ff4d4d99,
        0 0 120px #ff4d4d66;
    animation: neonPulse 1s infinite alternate ease-in-out;
}

.visions {
    font-family: 'Cinzel Decorative', cursive;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 87, 0.4);
}

@keyframes neonPulse {
    from {
        text-shadow:
            0 0 15px #ff4d4d,
            0 0 30px #ff4d4d,
            0 0 60px #ff4d4d99,
            0 0 120px #ff4d4d66;
    }
    to {
        text-shadow:
            0 0 20px #ff4d4d,
            0 0 50px #ff4d4d,
            0 0 100px #ff4d4dcc,
            0 0 200px #ff4d4d88,
            0 0 300px #ff4d4d44;
    }
}

/* Hero Section */
.page-hero {
    text-align: center;
    padding: 1rem 5% 3rem;
}

.hero-image {
    max-width: 100%;
    display: block;
    margin: 2rem auto 0;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border: 1px solid #333;
}

/* Album Grid */
.album-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    padding: 0 5%;
}

.album-link {
    text-decoration: none;
    color: inherit;
}

.thumbnail-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumbnail-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.7);
}

.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-title {
    margin-top: 0.8rem;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 600;
    color: #e0c9a6;
}

/* Coming Soon Wrapper */
.coming-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 18+ 主題 */
.adult18 {
    --bg-color: #050308;
    --bg-color-soft: #120814;
    --accent-color: #ff2f6c;
    --accent-color-soft: rgba(255, 47, 108, 0.35);
    --text-color: #f3e9f5;
    --muted-text-color: #9b7f9f;
    --border-glow: 0 0 18px rgba(255, 47, 108, 0.45);
}