/* ═══════════════════════════════════════════════════════════════════════════
   Presentation Style: Bold Wrapped
   High-contrast backgrounds, bold sans-serif, dynamic transitions.
   Applied when the tribute tone is "Funny" or "Mixed".
   ═══════════════════════════════════════════════════════════════════════════ */

.presentation-wrapped {
    --pres-bg: #0d1b2a;
    --pres-bg-secondary: #1b2838;
    --pres-accent: #1b998b;
    --pres-accent-warm: #e84855;
    --pres-accent-bright: #f9c74f;
    --pres-text: #ffffff;
    --pres-text-secondary: rgba(255, 255, 255, 0.75);
    --pres-text-muted: rgba(255, 255, 255, 0.45);

    background: var(--pres-bg);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ── Typography overrides ─────────────────────────────────────────────── */
.presentation-wrapped .pres-text-hero {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--pres-text);
}

.presentation-wrapped .pres-text-subtitle {
    color: var(--pres-accent);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.presentation-wrapped .pres-text-body {
    font-weight: 500;
    color: var(--pres-text);
}

.presentation-wrapped .pres-text-quote {
    font-weight: 400;
    font-style: normal;
    color: var(--pres-text);
}

.presentation-wrapped .pres-text-attribution {
    color: var(--pres-accent);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.presentation-wrapped .pres-text-label {
    color: var(--pres-text-muted);
    font-weight: 600;
}

/* ── Accent line ──────────────────────────────────────────────────────── */
.presentation-wrapped .pres-accent-line {
    width: 80px;
    height: 4px;
    background: var(--pres-accent);
    margin: 1rem auto;
    border-radius: 2px;
}

/* ── Stats number styling ─────────────────────────────────────────────── */
.presentation-wrapped .pres-stat-number {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    color: var(--pres-accent-bright);
    letter-spacing: -0.03em;
}

.presentation-wrapped .pres-stat-label {
    color: var(--pres-text-secondary);
    font-weight: 600;
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── Word cloud ───────────────────────────────────────────────────────── */
.presentation-wrapped .pres-word {
    color: var(--pres-text);
    font-weight: 700;
}

.presentation-wrapped .pres-word-primary {
    color: var(--pres-accent-bright);
    font-weight: 900;
}

/* ── Per-slide background colour shifts ───────────────────────────────── */
.presentation-wrapped .pres-slide-bg-teal {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b998b 100%);
}

.presentation-wrapped .pres-slide-bg-warm {
    background: linear-gradient(135deg, #0d1b2a 0%, #e84855 100%);
}

.presentation-wrapped .pres-slide-bg-gold {
    background: linear-gradient(135deg, #0d1b2a 0%, #f9c74f 100%);
}

.presentation-wrapped .pres-slide-bg-navy {
    background: var(--pres-bg);
}

/* ── Progress bar ─────────────────────────────────────────────────────── */
.presentation-wrapped .presentation-progress-fill {
    background: var(--pres-accent);
}

/* ── Controls ─────────────────────────────────────────────────────────── */
.presentation-wrapped .presentation-controls button {
    border-color: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.presentation-wrapped .presentation-controls button:hover {
    background: var(--pres-accent);
    border-color: var(--pres-accent);
}

.presentation-wrapped .presentation-counter {
    color: var(--pres-text-muted);
    font-weight: 600;
}

/* ── Slide transitions (faster for wrapped energy) ────────────────────── */
.presentation-wrapped .presentation-slide {
    transition: opacity 0.5s ease-out;
}

/* ── Quote decorations ────────────────────────────────────────────────── */
.presentation-wrapped .pres-quote-mark {
    font-size: 5rem;
    color: var(--pres-accent);
    opacity: 0.2;
    line-height: 1;
    font-weight: 900;
}

/* ── Funny slide accent ───────────────────────────────────────────────── */
.presentation-wrapped .pres-funny-header {
    color: var(--pres-accent-bright);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.01em;
}

/* ── Playful card shadows & rotation on elements ──────────────────────── */
.presentation-wrapped .pres-stat-card {
    transform: rotate(-1deg);
}

.presentation-wrapped .pres-stat-card:nth-child(even) {
    transform: rotate(1deg);
}

/* ── Closing CTA ──────────────────────────────────────────────────────── */
.presentation-wrapped .pres-cta-button {
    border: 2px solid var(--pres-accent);
    color: var(--pres-text);
    background: var(--pres-accent);
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    letter-spacing: 0.04em;
    transition: background 0.2s, transform 0.15s;
}

.presentation-wrapped .pres-cta-button:hover {
    background: #15877a;
    transform: scale(1.05);
}
