/* ==========================================================================
   AAMS FUWALY - Stage 1 UX Enhancement CSS
   Version: 8.4.0
   ========================================================================== */

/* Coming Soon - Stage 1 ミステリアス演出 */
.coming-soon--stage1 {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.coming-soon__silhouette {
    position: absolute;
    width: 200px;
    height: 350px;
    background: linear-gradient(180deg, rgba(201, 168, 124, 0.1) 0%, rgba(201, 168, 124, 0.05) 50%, transparent 100%);
    border-radius: 100px 100px 50px 50px;
    opacity: 0.6;
}

.coming-soon__glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 124, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.coming-soon__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.coming-soon__icon {
    display: block;
    font-size: 2rem;
    color: var(--gold, #c9a87c);
    margin-bottom: 1rem;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

.coming-soon__text {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    color: var(--gold, #c9a87c);
}

.coming-soon__label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.6;
}

.coming-soon__countdown {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(201, 168, 124, 0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--gold, #c9a87c);
    background: rgba(201, 168, 124, 0.1);
}

.coming-soon__particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.coming-soon__particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold, #c9a87c);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 4s ease-in-out infinite;
}

.coming-soon__particles span:nth-child(1) { left: 20%; animation-delay: 0s; }
.coming-soon__particles span:nth-child(2) { left: 40%; animation-delay: 0.8s; }
.coming-soon__particles span:nth-child(3) { left: 60%; animation-delay: 1.6s; }
.coming-soon__particles span:nth-child(4) { left: 80%; animation-delay: 2.4s; }
.coming-soon__particles span:nth-child(5) { left: 50%; animation-delay: 3.2s; }

@keyframes float-particle {
    0% { bottom: 0; opacity: 0; }
    20% { opacity: 0.8; }
    80% { opacity: 0.8; }
    100% { bottom: 100%; opacity: 0; }
}

/* Coming Soon - サブ画像用 */
.coming-soon--sub {
    min-height: 200px;
    background: linear-gradient(135deg, #f5f0eb 0%, #e8e0d8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    gap: 0.5rem;
}

.coming-soon__icon-small {
    font-size: 1rem;
    color: var(--gold, #c9a87c);
    opacity: 0.6;
}

.coming-soon--sub .coming-soon__text {
    font-size: 0.85rem;
    color: #999;
}

/* Hero - ミステリアス背景 */
.hero__bg-slide--mystery {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.hero__bg-slide--mystery::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 168, 124, 0.1) 0%, transparent 50%);
}

/* Type Badge - バリエーション */
.type-badge--mystery {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 1px solid var(--gold, #c9a87c);
    color: var(--gold, #c9a87c);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.type-badge--reveal {
    background: linear-gradient(135deg, var(--gold, #c9a87c) 0%, #a08060 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.type-badge__icon { font-size: 0.8em; }

/* Profile Info - Teaser */
.profile-info__teaser {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Stage Teaser - プログレスバー */
.stage-teaser {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(201, 168, 124, 0.05);
    border: 1px solid rgba(201, 168, 124, 0.2);
    border-radius: 8px;
}

.stage-teaser__progress {
    height: 4px;
    background: rgba(201, 168, 124, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.stage-teaser__bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold, #c9a87c), #d4b896);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.stage-teaser__message {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.stage-teaser__label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold, #c9a87c);
    margin-bottom: 0.5rem;
}

.stage-teaser__message strong {
    color: var(--gold, #c9a87c);
    font-size: 1.2em;
}

/* Profile Specs - Hidden (Stage 1) */
.profile-specs--hidden { opacity: 0.6; }
.profile-specs__value--secret { color: #999; font-style: italic; }
.profile-specs__hint { font-size: 0.75rem; color: #999; margin-top: 1rem; text-align: center; }

/* Profile Specs - Reveal Animation (Stage 2) */
.profile-specs--reveal .profile-specs__row { animation: reveal-fade 0.5s ease forwards; }
.profile-specs--reveal .profile-specs__row:nth-child(1) { animation-delay: 0.1s; }
.profile-specs--reveal .profile-specs__row:nth-child(2) { animation-delay: 0.2s; }
.profile-specs--reveal .profile-specs__row:nth-child(3) { animation-delay: 0.3s; }
.profile-specs--reveal .profile-specs__row:nth-child(4) { animation-delay: 0.4s; }
.profile-specs--reveal .profile-specs__row:nth-child(5) { animation-delay: 0.5s; }

@keyframes reveal-fade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Teaser Section (Stage 1-2 専用) */
.teaser-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fff 0%, #f9f6f2 100%);
}

.teaser-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.teaser-content__title {
    font-size: 1.5rem;
    color: var(--gold, #c9a87c);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.teaser-content__icon { animation: twinkle 2s ease-in-out infinite; }
.teaser-content__text { font-size: 1rem; line-height: 2; color: #666; }
.teaser-content__highlight { color: var(--gold, #c9a87c); font-weight: 500; }

/* Release Schedule */
.release-schedule {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.release-schedule__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    min-width: 100px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.release-schedule__item.is-active {
    opacity: 1;
    border-color: var(--gold, #c9a87c);
    background: rgba(201, 168, 124, 0.05);
}

.release-schedule__stage { font-size: 0.7rem; letter-spacing: 0.1em; color: #999; margin-bottom: 0.25rem; }
.release-schedule__label { font-size: 0.9rem; color: #333; margin-bottom: 0.5rem; }
.release-schedule__status { font-size: 1rem; color: var(--gold, #c9a87c); }

/* Notify Button */
.btn--notify {
    background: transparent;
    border: 1px solid var(--gold, #c9a87c);
    color: var(--gold, #c9a87c);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.btn--notify:hover { background: rgba(201, 168, 124, 0.1); }
.btn__icon { font-size: 1rem; }

/* Recommend Card - Placeholder */
.recommend-card__placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f5f0eb 0%, #e8e0d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 2rem;
    color: var(--gold, #c9a87c);
    opacity: 0.5;
}

/* Blur Effects */
.blur-heavy { filter: blur(25px); transform: scale(1.1); }
.blur-light { filter: blur(12px); transform: scale(1.05); }

/* Responsive */
@media (max-width: 768px) {
    .coming-soon--stage1 { min-height: 400px; }
    .release-schedule { gap: 0.5rem; }
    .release-schedule__item { min-width: 70px; padding: 0.75rem 1rem; }
    .stage-teaser { padding: 1rem; }
}
