/* 
 * cheer_up.css (Migrated from test6.css - Energy Burst Theme)
 * 
 * Concept: 静寂(Gloom) -> 爆発(Burst) -> 癒やし(Healing)
 * 感情の起伏をデザインで表現する。
 */

/* ==========================================================================
   Root Variables for this page
   ========================================================================== */
:root {
    --hero-bg: #f0f9ff;
    --gloom-color: #64748b;
    --burst-color: #ff3b30; /* Ultraman Red */
    --burst-sub: #fbbf24;   /* Energy Yellow */
    --healing-color: #2dd4bf; /* Relaxing Teal */
}

/* ==========================================================================
   Section Common Styles
   ========================================================================== */
.lp-section {
    padding: 1.5rem 2rem; /* Vertical 1.5rem, Horizontal 2rem (Fix for left edge) */
    position: relative;
    overflow: hidden; /* For background effects */
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Typography Overrides for this page */
/* Scoped to main-content to avoid affecting sidebar/footer */
.main-content h2 {
    font-size: 1.8rem; /* Slightly smaller again */
    margin-bottom: 0.8rem; /* Reduced from 1.5rem */
    position: relative;
    display: inline-block;
}

.main-content p {
    font-size: 1.05rem;
    line-height: 1.6; /* Tighter */
    margin-bottom: 0.8rem; /* Reduced from 1rem */
}

/* ==========================================================================
   1. Hero Section (The Hook)
   ========================================================================== */
.hero-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    text-align: center;
    position: relative;
    /* Manga-style Sunburst Effect */
    background-image: 
        repeating-conic-gradient(
            from 0deg,
            transparent 0deg 10deg,
            rgba(255, 59, 48, 0.03) 10deg 20deg
        );
    background-position: center;
}

/* Center glow for readability */
.hero-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-section h1 {
    font-size: 4rem; /* Bigger impact */
    background: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    transform: rotate(-2deg);
    display: inline-block;
    position: relative;
    z-index: 1;
    /* Strong drop shadow for pop */
    filter: drop-shadow(4px 4px 0px rgba(255, 217, 61, 0.3));
}

.hero-section .subtitle {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    background: #475569; /* Darker bg for contrast */
    display: inline-block;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: none;
    position: relative;
    z-index: 1;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   2. Intro Section (Gloom / Empathy)
   ========================================================================== */
.intro-section {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border-radius: 30px;
    margin: 2rem 0;
    margin: 1.5rem 0;
    padding: 2rem 1.5rem; /* Reduced padding */
}

.intro-section h2 {
    font-size: 1.5rem;
    color: var(--gloom-color);
}

.intro-section .lead-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 2rem;
}

.stress-list {
    list-style: none;
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

.stress-list li {
    padding: 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: #64748b;
    font-size: 0.95rem;
    position: relative;
    padding-left: 3rem;
    transition: transform 0.3s ease;
}

.stress-list li::before {
    content: "\f119"; /* Frown Face */
    font-family: "Font Awesome 6 Free";
    font-weight: 400; /* Regular */
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #cbd5e1;
}

.stress-list li:hover {
    transform: translateX(5px);
    border-color: var(--burst-sub);
}

.stress-list li:hover::before {
    content: "\f118"; /* Smile Face */
    font-weight: 400; 
    color: var(--burst-sub);
}

.empower-text {
    margin-top: 3rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--burst-color);
    text-align: center;
    border-top: 2px dashed #ffcccb;
    padding-top: 2rem;
}

/* ==========================================================================
   3. Actions Section (Ultraman Pose) - THE CLIMAX
   ========================================================================== */
.action-section {
    background: #fff;
    position: relative;
}

/* Background Burst Effect using CSS Patterns */
.action-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--burst-sub) 1px, transparent 1px), radial-gradient(var(--burst-sub) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.1;
    z-index: 1;
}

.pose-instruction {
    background: #fff;
    border: 4px solid var(--burst-color);
    border-radius: 20px;
    border-radius: 20px;
    padding: 1.5rem; /* Reduced from 2rem */
    box-shadow: 10px 10px 0px rgba(255, 59, 48, 0.2);
    position: relative;
    overflow: hidden;
}

/* Step List */
.step-list {
    margin: 1rem 0; /* Reduced from 1.5rem */
    padding: 0;
    list-style: none;
}

.step-list li {
    margin-bottom: 0.8rem; /* Reduced from 1rem */
    font-size: 1.1rem; /* Slightly smaller */
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.step-label {
    background: var(--burst-color);
    color: #fff;
    padding: 0.2rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    white-space: nowrap;
    transform: rotate(-3deg);
    box-shadow: 2px 2px 0 #000;
}

/* Timer Area */
.timer-area {
    background: #fff5f5;
    border-radius: 15px;
    padding: 1rem; /* Reduced from 1.5rem */
    text-align: center;
    margin: 1.5rem 0; /* Reduced from 2rem */
    border: 2px dashed var(--burst-color);
}

.timer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem; /* Reduced from 3rem */
    margin: 1.5rem 0; /* Reduced from 2rem */
    flex-wrap: wrap; /* Wrap on mobile */
}

/* Timer itself */
.mock-timer {
    font-family: "Outfit", sans-serif;
    font-size: 4rem;
    color: var(--burst-color);
    font-weight: 900;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
    background: #fff;
    display: inline-block;
    padding: 1rem 3rem;
    border-radius: 10px;
    border: 2px solid var(--burst-color);
    min-width: 250px; /* Prevent jump */
}

/* Stick Figure */
.timer-figure {
    position: relative;
    /* Static pose, no floating */
}

.ultraman-img {
    max-width: 120px;
    height: auto;
    display: block;
    width: 100%;
}

.timer-start-btn {
    background: var(--burst-color);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    padding: 0.8rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 0 #b91c1c; /* Darker red shadow */
    transition: transform 0.1s, box-shadow 0.1s;
    margin-bottom: 1rem;
    font-family: "Outfit", sans-serif;
    letter-spacing: 0.1em;
}

.timer-start-btn:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 #b91c1c;
}

.timer-start-btn:hover {
    background: #ef4444;
}

/* Hide start button or change text when running? Controlled by JS */


/* ==========================================================================
   4. Logic & Alt Sections
   ========================================================================== */
.benefit-box {
    background: #f0fdfa; /* Teal Tint */
    border: 1px solid #99f6e4;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.benefit-box h3 {
    color: #0d9488;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.imagination-option {
    background: #fdf4ff; /* Pink Tint */
    border: 1px solid #f0abfc;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.imagination-option h3 {
    color: #c026d3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================================
   5. Healing Section (Chill Out)
   ========================================================================== */
.healing-section {
    background: radial-gradient(circle at 50% 50%, #eff6ff 0%, #e0f2fe 100%);
    padding: 3rem 2rem; /* Reduced vertical, Added horizontal */
    margin-top: 4rem;
    border-radius: 30px 30px 0 0; /* Smooth connection */
}

.healing-guide {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.sensory-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    list-style: none;
}

.sensory-list li {
    background: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #0ea5e9;
    box-shadow: 0 4px 6px rgba(14, 165, 233, 0.1);
}

.healing-tips {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.healing-tips p {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================================
   6. Closing
   ========================================================================== */
.closing-section {
    text-align: center;
    padding-bottom: 6rem;
}

.final-message {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    background: var(--gradient-1);
    padding: 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
    /* transform: rotate(1deg); REMOVED: Keep it straight */
}

.cta-area {
    margin-top: 3rem;
}
