/* ══════════════════════════════════════════════════════════════════════════════
   COUPLE CONNECT — ROSE PASSION THEME
   Deep romantic reds, soft pinks, rose petals, Valentine mood
   Fonts: Playfair Display (headings) + Crimson Pro (body)
══════════════════════════════════════════════════════════════════════════════ */

:root {
    --bg: #1a0810;
    --card: rgba(40, 15, 25, 0.72);
    --card-soft: rgba(55, 20, 35, 0.55);
    --text: #f0d8e0;
    --muted: #a07080;
    --primary: #d94f6a;
    --primary-strong: #c0394f;
    --border: rgba(220, 80, 106, 0.12);
    --success: #22c55e;
    --danger: #f87171;
}

body.theme-light {
    --bg: #f8eef2;
    --card: rgba(255,255,255,0.9);
    --card-soft: rgba(248,238,242,0.9);
    --text: #2a0f1a;
    --muted: #6a4050;
    --border: rgba(40,15,25,0.1);
    background: #f0e0e6;
    color: var(--text);
}
body.theme-light .topbar::before {
    background: rgba(248,238,242,0.92);
    backdrop-filter: blur(16px);
}
body.theme-light .card {
    background: rgba(255,255,255,0.88);
    border-color: rgba(40,15,25,0.1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Crimson Pro', Georgia, serif;
    color: var(--text);
    background: #140810;
    min-height: 100vh;
}

/* Dégradé de fond fixe — rose passion avec glows */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(220, 50, 80, 0.18), transparent 60%),
        radial-gradient(ellipse 70% 50% at 80% 90%, rgba(180, 40, 70, 0.14), transparent 60%),
        radial-gradient(circle 400px at 50% 40%, rgba(200, 60, 90, 0.06), transparent),
        linear-gradient(160deg, #0e0408 0%, #1a0810 40%, #2a0f1a 70%, #1e0c14 100%);
    pointer-events: none;
}

/* ── Pétales flottantes ───────────────────────────────────────────────── */
.rose-petal {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
    animation: petalFloat 14s infinite ease-in-out;
    font-size: 18px;
}
.rose-petal:nth-child(1) { top: 6%; left: 5%; animation-delay: 0s; font-size: 16px; }
.rose-petal:nth-child(2) { top: 18%; right: 8%; animation-delay: 3s; font-size: 22px; opacity: 0.08; }
.rose-petal:nth-child(3) { top: 45%; left: 3%; animation-delay: 7s; font-size: 14px; opacity: 0.1; }
.rose-petal:nth-child(4) { top: 70%; right: 6%; animation-delay: 2s; font-size: 16px; opacity: 0.07; }
.rose-petal:nth-child(5) { top: 85%; left: 12%; animation-delay: 5s; font-size: 12px; opacity: 0.1; }
.rose-petal:nth-child(6) { top: 35%; right: 3%; animation-delay: 9s; font-size: 10px; opacity: 0.09; }

@keyframes petalFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    20% { transform: translateY(-14px) rotate(10deg); }
    40% { transform: translateY(-8px) rotate(-6deg); }
    60% { transform: translateY(-20px) rotate(5deg); }
    80% { transform: translateY(-6px) rotate(-8deg); }
}

/* ── Glow ambient fixe ────────────────────────────────────────────────── */
.rose-glow {
    position: fixed;
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
    filter: blur(60px);
}
.rose-glow-1 {
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 350px;
    background: radial-gradient(ellipse, rgba(220, 50, 80, 0.10) 0%, transparent 70%);
}
.rose-glow-2 {
    bottom: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(200, 80, 120, 0.07) 0%, transparent 70%);
}

/* ── Heart divider ────────────────────────────────────────────────────── */
.heart-divider {
    text-align: center;
    margin: 8px 0 16px;
    position: relative;
}
.heart-divider::before,
.heart-divider::after {
    content: '';
    display: inline-block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 80, 106, 0.25), transparent);
    vertical-align: middle;
    margin: 0 16px;
}
.heart-divider span {
    color: rgba(220, 80, 106, 0.35);
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.app-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 16px 24px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 24px;
    margin-bottom: 28px;
    box-shadow: 0 8px 32px rgba(20, 8, 14, 0.4);
    flex-wrap: wrap;
    position: relative;
    z-index: 200;
}
/* Fond flouté dans un pseudo-élément pour ne pas créer de containing-block */
.topbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 8, 16, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 23px;
    z-index: -1;
    pointer-events: none;
}

.brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
    color: #d94f6a;
}

.brand-accent {
    font-weight: 400;
    font-style: italic;
    color: rgba(220, 100, 130, 0.5);
}

.tagline {
    color: var(--muted);
    margin: 4px 0 0;
    font-size: .8rem;
    font-style: italic;
}

.nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    align-items: center;
}

.nav a {
    color: rgba(220, 150, 160, 0.45);
    padding: 6px 10px;
    border-radius: 10px;
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: .88rem;
    font-weight: 400;
    transition: background .2s, color .2s;
    white-space: nowrap;
}

.nav a:hover {
    color: #d94f6a;
    background: rgba(220, 80, 106, 0.08);
}

/* Highlight logout */
.nav a[href="/logout.php"] {
    color: rgba(180,130,150,.5);
    font-size: .8rem;
}

/* Highlight current user */
.nav a[href="/couple.php"] {
    color: #e8a0b0;
    font-weight: 700;
}

.container {
    display: grid;
    gap: 20px;
    min-width: 0;
}

.hero,
.card {
    background: rgba(40, 15, 28, 0.96);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(20, 8, 14, 0.45);
    min-width: 0;
    contain: layout style;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
    border-color: rgba(220, 80, 106, 0.22);
    box-shadow: 0 8px 32px rgba(200, 50, 80, 0.12);
}

.hero-grid,
.grid-2,
.grid-3 {
    display: grid;
    gap: 20px;
    min-width: 0;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
    align-items: start;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-soft {
    background: var(--card-soft);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 80, 106, 0.12);
    color: #e8a0b0;
    border: 1px solid rgba(220, 80, 106, 0.25);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: .9rem;
    font-weight: 600;
}

.h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    margin: 18px 0 14px;
    font-weight: 700;
}

.lead {
    font-size: 1.06rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0;
    font-style: italic;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 16px;
    padding: 13px 18px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    font-size: 0.98rem;
    font-family: 'Crimson Pro', Georgia, serif;
}

.btn-primary {
    background: linear-gradient(135deg, #c0394f, #d94f6a);
    color: white;
    box-shadow: 0 4px 16px rgba(200, 50, 80, 0.25);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(200, 50, 80, 0.4);
    background: linear-gradient(135deg, #a83045, #c94560);
}

.btn-secondary {
    background: rgba(220, 80, 106, 0.08);
    color: var(--text);
    border-color: var(--border);
}

.btn-secondary:hover {
    background: rgba(220, 80, 106, 0.14);
}

.btn[disabled] {
    opacity: .55;
    cursor: not-allowed;
    transform: none !important;
}

input,
textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border);
    outline: none;
    background: rgba(40, 15, 25, 0.52);
    color: var(--text);
    padding: 14px 15px;
    font: inherit;
}

input:focus,
textarea:focus {
    border-color: rgba(220, 80, 106, 0.5);
    box-shadow: 0 0 0 4px rgba(220, 80, 106, 0.12);
}

textarea {
    min-height: 135px;
    resize: vertical;
}

label {
    display: grid;
    gap: 8px;
    font-weight: 600;
    color: var(--text);
}

.form {
    display: grid;
    gap: 18px;
}

.muted {
    color: var(--muted);
}

.session-code {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.18em;
    padding: 18px 22px;
    text-align: center;
    border-radius: 22px;
    background: rgba(40, 15, 25, 0.7);
    border: 1px dashed rgba(220, 80, 106, 0.4);
}

.status-row,
.answers,
.participants-list {
    display: grid;
    gap: 14px;
}

.participant-pill,
.answer-card {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(40, 15, 25, 0.54);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.participant-pill:hover,
.answer-card:hover {
    border-color: rgba(220, 80, 106, 0.2);
    background: rgba(220, 50, 80, 0.05);
}

.answer-card h4,
.participant-pill h4 {
    margin: 0 0 8px;
}

.progress {
    height: 12px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(180, 130, 150, 0.14);
}

.progress > span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #e8708a);
    width: 0;
}

.alert {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid transparent;
    font-weight: 600;
}

.alert-error {
    background: rgba(248, 113, 113, 0.08);
    border-color: rgba(248, 113, 113, 0.24);
    color: #fecaca;
}

.alert-success {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.24);
    color: #bbf7d0;
}

.small {
    font-size: .92rem;
}

.center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.footer-note {
    color: var(--muted);
    font-size: .92rem;
}

.kpi {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.7rem;
    font-weight: 700;
}

.nav-user {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(220, 80, 106, 0.08);
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 700;
}

.hero-home {
    position: relative;
    overflow: hidden;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 0;
}

.hero-point,
.category-pill,
.step-badge,
.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
}

.hero-point {
    padding: 9px 12px;
    background: rgba(220, 80, 106, 0.08);
    border: 1px solid rgba(220, 80, 106, 0.14);
    color: #d8b0c0;
    font-size: .92rem;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.trust-item,
.feature-card,
.category-card,
.stat-card,
.session-preview,
.cta-banner {
    border: 1px solid var(--border);
    background: rgba(40, 15, 25, 0.7);
    box-shadow: 0 2px 12px rgba(20, 8, 14, 0.25);
    transition: all 0.3s ease;
}

.trust-item:hover,
.feature-card:hover,
.category-card:hover,
.stat-card:hover {
    border-color: rgba(220, 80, 106, 0.25);
    background: rgba(220, 50, 80, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200, 50, 80, 0.1);
}

.trust-item {
    padding: 16px 18px;
    border-radius: 18px;
}

.trust-item strong {
    display: block;
    margin-bottom: 8px;
}

.hero-side {
    display: flex;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.hero-panel {
    width: 100%;
    max-width: 100%;
    display: grid;
    gap: 18px;
    align-content: start;
    min-width: 0;
    overflow: hidden;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
    width: 100%;
    min-width: 0;
}

.stat-card {
    border-radius: 22px;
    padding: 24px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    min-width: 0;
    max-width: 100%;
}

.stat-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(220, 80, 106, 0.22);
    background: rgba(220, 80, 106, 0.08);
    color: #e8a0b0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    max-width: 100%;
}

.stat-title {
    font-family: 'Playfair Display', Georgia, serif;
    margin: 0 0 12px;
    font-size: clamp(1.1rem, 1.4vw, 1.45rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text);
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    min-width: 0;
}

.stat-card p {
    margin: 0;
    line-height: 1.65;
    min-width: 0;
    overflow-wrap: break-word;
}

.session-preview {
    border-radius: 20px;
    padding: 18px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.preview-head {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d8b0c0;
    font-weight: 700;
    margin-bottom: 14px;
    max-width: 100%;
}

.preview-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #e8708a);
    box-shadow: 0 0 0 6px rgba(220, 80, 106, 0.12);
    flex: 0 0 auto;
}

.steps-list {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.8;
    min-width: 0;
    max-width: 100%;
}

.steps-list li {
    overflow-wrap: break-word;
}

.section-block {
    display: grid;
    gap: 22px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
}

.section-head h2 {
    font-family: 'Playfair Display', Georgia, serif;
    margin: 4px 0 0;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.eyebrow,
.category-pill,
.step-badge {
    letter-spacing: 0.02em;
}

.eyebrow {
    margin: 0;
    color: #e8a0b0;
    background: rgba(220, 80, 106, 0.10);
    border: 1px solid rgba(220, 80, 106, 0.20);
    padding: 8px 12px;
    font-size: .88rem;
}

.feature-grid,
.category-grid {
    display: grid;
    gap: 20px;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.category-card {
    border-radius: 24px;
    padding: 24px;
}

.feature-card h3,
.category-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    margin: 14px 0 10px;
    font-size: 1.28rem;
}

.step-badge {
    width: 48px;
    height: 48px;
    background: rgba(220, 80, 106, 0.12);
    border: 1px solid rgba(220, 80, 106, 0.25);
    color: #e8a0b0;
}

.category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-pill {
    width: fit-content;
    padding: 8px 12px;
    font-size: .82rem;
    text-transform: uppercase;
    color: #d8b0c0;
    background: rgba(220, 80, 106, 0.10);
    border: 1px solid rgba(220, 80, 106, 0.18);
}

.category-light {
    background: linear-gradient(180deg, rgba(220, 80, 106, 0.08), rgba(40, 15, 25, 0.55));
}

.category-hot {
    background: linear-gradient(180deg, rgba(200, 50, 70, 0.12), rgba(40, 15, 25, 0.55));
}

.cta-banner {
    border-radius: 28px;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.compact {
    margin: 8px 0 0;
    max-width: 720px;
}

.help-text {
    color: var(--muted);
    font-size: .92rem;
}

.select-wrap {
    position: relative;
}

.select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(240, 216, 224, 0.85);
    border-bottom: 2px solid rgba(240, 216, 224, 0.85);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.select option,
select.select-category option {
    background-color: #1a0810;
    color: #f0d8e0;
}

.select,
select.select-category {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(220, 80, 106, 0.22);
    outline: none;
    background: linear-gradient(180deg, rgba(40, 15, 25, 0.98), rgba(40, 15, 25, 0.88));
    color: var(--text);
    padding: 16px 50px 16px 16px;
    font: inherit;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 14px 30px rgba(20, 8, 14, 0.22);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.select:hover,
select.select-category:hover {
    border-color: rgba(220, 80, 106, 0.28);
}

.select:focus,
select.select-category:focus {
    border-color: rgba(220, 80, 106, 0.55);
    box-shadow: 0 0 0 4px rgba(220, 80, 106, 0.12), 0 14px 30px rgba(20, 8, 14, 0.22);
}

/* ── Scrollbar custom ─────────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(40, 15, 25, 0.4);
    border-radius: 999px;
}
::-webkit-scrollbar-thumb {
    background: rgba(220, 80, 106, 0.35);
    border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(220, 80, 106, 0.6);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(220, 80, 106, 0.35) rgba(40, 15, 25, 0.4);
}

@media (max-width: 1100px) {
    .hero-stats,
    .feature-grid,
    .category-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        min-height: auto;
    }
}

@media (max-width: 880px) {
    .topbar,
    .hero-grid,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .topbar {
        align-items: flex-start;
    }

    .hero-trust,
    .section-head,
    .cta-banner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .cta-banner {
        align-items: start;
    }
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.game-card {
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: rgba(40, 15, 25, 0.7);
    box-shadow: 0 2px 12px rgba(20, 8, 14, 0.3);
    transition: all 0.3s ease;
}

.game-card:hover {
    border-color: rgba(220, 80, 106, 0.25);
    background: rgba(220, 50, 80, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(200, 50, 80, 0.12);
}

.game-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    margin: 14px 0 10px;
    font-size: 1.28rem;
}

.game-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.game-card-placeholder {
    background: linear-gradient(180deg, rgba(220, 80, 106, 0.08), rgba(40, 15, 25, 0.55));
}


.games-section {
    display: grid;
    gap: 18px;
}

.games-grid-single {
    grid-template-columns: minmax(0, 720px);
    justify-content: start;
}

.game-card-clean {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(55, 20, 35, 0.58) 0%, rgba(40, 15, 25, 0.78) 100%);
    border: 1px solid rgba(220, 80, 106, 0.16);
    box-shadow: 0 18px 40px rgba(20, 8, 14, 0.22);
    transition: all 0.3s ease;
}

.game-card-clean:hover {
    border-color: rgba(220, 80, 106, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(200, 50, 80, 0.12);
}

.game-card-top {
    display: grid;
    gap: 10px;
}

.game-card-clean h3 {
    font-family: 'Playfair Display', Georgia, serif;
    margin: 0;
}

.game-card-clean .muted {
    margin: 0;
    line-height: 1.65;
}

.game-card-clean .game-card-meta {
    margin-top: 18px;
}

/* ── Light theme: softer petals & glows ───────────────────────────────── */
body.theme-light .rose-petal { opacity: 0.06; }
body.theme-light .rose-glow-1 { background: radial-gradient(ellipse, rgba(220, 50, 80, 0.06) 0%, transparent 70%); }
body.theme-light .rose-glow-2 { background: radial-gradient(circle, rgba(200, 80, 120, 0.04) 0%, transparent 70%); }
body.theme-light .heart-divider::before,
body.theme-light .heart-divider::after {
    background: linear-gradient(90deg, transparent, rgba(220, 80, 106, 0.15), transparent);
}
body.theme-light .heart-divider span { color: rgba(220, 80, 106, 0.2); }

/* ── Footer romantic ─────────────────────────────────────────────────── */
.site-footer {
    font-family: 'Crimson Pro', Georgia, serif;
    font-style: italic;
}

/* ── Topbar glow accent ──────────────────────────────────────────────── */
.topbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 80, 106, 0.2), transparent);
    border-radius: 1px;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 760px) {
    .games-grid-single {
        grid-template-columns: 1fr;
    }
    .rose-petal:nth-child(n+4) { display: none; }
}
