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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ab208f 0%, #067dde 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: center;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
    color: #888;
    font-size: 0.95em;
}

.app-header img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.event-icon {
    font-size: 48px;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(171, 32, 143, 0.12), rgba(6, 125, 222, 0.12));
    border-radius: 22px;
    margin: 0 auto 20px;
}

h1 {
    color: #ab208f;
    font-size: 1.8em;
    margin-bottom: 8px;
}

.subtitle {
    color: #666;
    font-size: 1.05em;
    margin-bottom: 32px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* Stress Score Gauge */
.gauge-section {
    margin-bottom: 32px;
}

.gauge-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 12px;
}

.gauge-bg {
    fill: none;
    stroke-width: 12;
    opacity: 0.2;
    transition: stroke 1.5s ease;
}

.gauge-fill {
    fill: none;
    stroke-width: 12;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease, stroke 1.5s ease;
}

.gauge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.gauge-score {
    font-size: 36px;
    font-weight: 700;
    font-family: -apple-system, system-ui, sans-serif;
    font-variation-settings: 'ROND' 1;
    letter-spacing: -1px;
    line-height: 1;
    transition: color 1.5s ease;
}

.gauge-max {
    font-size: 13px;
    color: #999;
    line-height: 1;
    margin-top: 2px;
}

.gauge-label {
    font-size: 1.1em;
    font-weight: 600;
    transition: color 1.5s ease;
    margin-bottom: 4px;
}

.gauge-caption {
    font-size: 0.85em;
    color: #888;
    max-width: 320px;
    margin: 0 auto;
}

/* App Store badge */
.app-badge {
    display: inline-block;
    margin-bottom: 32px;
}

.app-badge img {
    height: 48px;
}

/* Templates */
.templates-section {
    text-align: left;
    margin-bottom: 32px;
}

.templates-section h2 {
    color: #ab208f;
    font-size: 1.2em;
    margin-bottom: 16px;
}

.template-card {
    background: #f8f4fb;
    border-left: 3px solid #067dde;
    padding: 14px 16px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.template-title {
    font-weight: 600;
    font-size: 0.95em;
    margin-bottom: 4px;
}

.template-note {
    font-size: 0.88em;
    color: #666;
}

/* Journal Prompts */
.prompts-section {
    text-align: left;
    margin-bottom: 32px;
}

.prompts-section h2 {
    color: #067dde;
    font-size: 1.2em;
    margin-bottom: 16px;
}

.prompt {
    background: #f8f4fb;
    border-left: 3px solid #ab208f;
    padding: 14px 16px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 0.95em;
}

/* Footer */
.footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.footer a {
    color: #888;
    text-decoration: none;
    font-size: 0.9em;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .container { padding: 24px; }
    h1 { font-size: 1.5em; }
}
