@charset "UTF-8";
/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-container-box {
    --bg-main: linear-gradient(180deg, #f5f3ff 0%, #ffffff 100%);
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --line-green: #06C755;
    --live-red: #ff0000;
    --title-gradient: linear-gradient(180deg, #ffa500 0%, #ff8c00 100%);
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.main-container-box .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}
.main-container-box {
    /* ===== PROFILE SECTION ===== */
}
.main-container-box .profile-section {
    text-align: center;
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.6s ease;
}
.main-container-box .profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 0.6rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.main-container-box .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-container-box .profile-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.main-container-box .profile-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.main-container-box {
    /* ===== VIDEO SECTION ===== */
}
.main-container-box .video-section {
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.6s ease 0.1s both;
}
.main-container-box .video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}
.main-container-box {
    /* live badge removed */
}
.main-container-box .video-content {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}
.main-container-box .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-container-box {
    /* person labels removed */
    /* video titles removed */
    /* ===== INFO SECTION ===== */
}
.main-container-box .info-section {
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.2s both;
    background: #f5f3ff; /* 淡淡紫色背景 */
    border: 1px solid #e9e5ff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.08);
}
.main-container-box .info-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
}
.main-container-box {
    /* ===== LINE CTA ===== */
}
.main-container-box .line-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 1.5rem;
    background: #e9e5ff;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.6s ease 0.01s both, floatUpDown 0.8s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.15);
}
.main-container-box .line-cta:hover {
    animation-play-state: paused;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
    background: #ddd6fe;
}
.main-container-box .line-icon {
    width: 32px;
    height: 32px;
    color: var(--line-green);
    flex-shrink: 0;
}
.main-container-box .line-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}
.main-container-box {
    /* ===== FOOTER ===== */
}
.main-container-box .footer {
    text-align: center;
    padding-top: 0.8rem;
    /* border-top: 1px solid var(--border); */
    animation: fadeInUp 0.6s ease 0.4s both;
}
.main-container-box .disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}
.main-container-box .privacy-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-decoration: underline;
    transition: color 0.3s ease;
}
.main-container-box .privacy-link:hover {
    color: var(--text-primary);
}
.main-container-box {
    /* ===== ANIMATIONS ===== */
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
.main-container-box {
    /* ===== RESPONSIVE ===== */
}
@media (max-width: 768px) {
    .main-container-box .container {
        padding: 1.5rem 1rem;
    }
    .main-container-box .profile-image {
        width: 120px;
        height: 120px;
    }
    .main-container-box .profile-name {
        font-size: 1.5rem;
    }
    .main-container-box .video-title {
        font-size: 1.25rem;
    }
    .main-container-box .video-subtitle {
        font-size: 1.1rem;
    }
    .main-container-box .line-cta {
        padding: 1rem 1.25rem;
    }
    .main-container-box .line-text {
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .main-container-box .profile-image {
        width: 100px;
        height: 100px;
    }
    .main-container-box .profile-name {
        font-size: 1.25rem;
    }
    .main-container-box .profile-desc {
        font-size: 0.85rem;
    }
    .main-container-box .video-title {
        font-size: 1.1rem;
    }
    .main-container-box .video-subtitle {
        font-size: 1rem;
    }
    .main-container-box .person-label {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
}

/*# sourceMappingURL=test.css.map */
