/*
 * ============================================
 * Theme Name: Reverie - Unloved Heart Collective Site Skin
 * Author: intothisshadow
 * Author URI: https://www.unloved-heart.net
 * ==============================================================
*/
*,
*::before,
*::after
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root
{
    --g1: #abc8de;
    --g2: #c7c9d8;
    --g3: #e5cccf;
    --g4: #ffd3c7;
    --g5: #ffdbc2;
    --g6: #ffe4c0;
    --g7: #ffedc3;
    --bg: linear-gradient(225deg, #abc8de 0%, #c7c9d8 16.667%, #e5cccf 33.333%, #ffd3c7 50%, #ffdbc2 66.667%, #ffe4c0 83.333%, #ffedc3 100%);
    --text-dark: #3a3040;
    --text-mid: #6b5f70;
    --text-light: #9a8fa0;
    --white-soft: rgba(255, 255, 255, 0.55);
    --white-glass: rgba(255, 255, 255, 0.35);
    --border: rgba(255, 255, 255, 0.6);
    --shadow: rgba(130, 100, 120, 0.12);
}

html
{
    scroll-behavior: smooth;
}

body
{
    background: var(--bg);
    background-attachment: fixed;
    color: var(--text-dark);
    font-family: 'Arima', cursive;
    font-size: 17px;
    font-weight: 300;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* -- noise overlay -- */
body::before
{
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    content: '';
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    position: fixed;
    z-index: 0;
}

/* -- decorative blobs -- */
.blob
{
    animation: drift 18s ease-in-out infinite alternate;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    position: fixed;
    z-index: 0;
}

.blob-1
{
    animation-delay: 0s;
    background: rgba(171, 200, 222, 0.35);
    height: 420px;
    left: -80px;
    top: -120px;
    width: 420px;
}

.blob-2
{
    animation-delay: -6s;
    background: rgba(255, 211, 199, 0.3);
    bottom: 60px;
    height: 300px;
    right: -60px;
    width: 300px;
}

.blob-3
{
    animation-delay: -12s;
    background: rgba(255, 228, 192, 0.4);
    height: 240px;
    left: 60%;
    top: 50%;
    width: 240px;
}

@keyframes drift
{
    from
    {
        transform: translate(0, 0) scale(1);
    }

    to
    {
        transform: translate(30px, 20px) scale(1.08);
    }
}

/* -- layout -- */
.wrapper
{
    margin: 0 auto;
    max-width: 920px;
    padding: 0 2rem 4rem;
    position: relative;
    z-index: 1;
}

/* -- header -- */
header
{
    animation: fadeDown 1s ease both;
    padding: 5rem 0 3rem;
    text-align: center;
}

.site-eyebrow
{
    color: var(--text-mid);
    font-family: 'Arima', cursive;
    font-size: 0.75rem;
    font-weight: 200;
    letter-spacing: 0.35em;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.site-title
{
    color: var(--text-dark);
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 9vw, 6.5rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1;
    overflow-wrap: break-word;
    position: relative;
    width: 100%;
}

.site-title em
{
    color: var(--text-mid);
    font-style: italic;
}

.site-tagline
{
    color: var(--text-light);
    font-size: 0.88rem;
    letter-spacing: 0.15em;
    margin-top: 1.2rem;
    text-transform: uppercase;
}

/* ornament divider */
.ornament
{
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2.2rem 0 0;
}

.ornament::before,
.ornament::after
{
    background: linear-gradient(90deg, transparent, var(--text-light));
    content: '';
    height: 1px;
    width: 80px;
}

.ornament::after
{
    background: linear-gradient(90deg, var(--text-light), transparent);
}

.ornament-diamond
{
    background: var(--text-light);
    height: 6px;
    transform: rotate(45deg);
    width: 6px;
}

/* -- nav -- */
nav
{
    animation: fadeDown 1s 0.15s ease both;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.2rem;
    justify-content: center;
    margin: 2.5rem 0 0;
}

nav a
{
    backdrop-filter: blur(8px);
    background: var(--white-glass);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-mid);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    padding: 0.45rem 1.1rem;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

nav a:visited
{
    color: var(--text-mid);
}

nav a:hover
{
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(255, 255, 255, 0.85);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* -- typography -- */
h1,
h2,
h3,
h4,
h5,
h6
{
    color: var(--text-dark);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-top: 0;
}

h1
{
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    text-align: center;
}

h2
{
    font-size: 2.25rem;
    letter-spacing: -0.01em;
    text-align: center;
}

h3
{
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

h4
{
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0;
}

h5
{
    color: var(--text-mid);
    font-family: 'Arima', cursive;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

h6
{
    color: var(--text-light);
    font-family: 'Arima', cursive;
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* italic em inside any heading */
h1 em,
h2 em,
h3 em,
h4 em
{
    color: var(--text-mid);
    font-style: italic;
    font-weight: inherit;
}

h1 em { font-weight: 300; }
h2 em { font-weight: 400; }
h3 em { font-weight: 400; }
h4 em { font-weight: 400; }


p
{
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

/* -- strong & em -- */
strong,
b
{
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 0.01em;
}

em,
i
{
    color: var(--text-mid);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1em;
    font-style: italic;
    font-weight: 400;
}

strong em,
em strong,
b i,
i b
{
    color: var(--text-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1em;
    font-style: italic;
    font-weight: 500;
}


blockquote
{
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.18);
    border-image: linear-gradient(180deg, var(--g1), var(--g4), var(--g7)) 1;
    border-left: 3px solid transparent;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 16px rgba(130, 100, 120, 0.07);
    margin: 1.8rem 0;
    padding: 1.4rem 2rem 1.4rem 2.2rem;
    position: relative;
}

blockquote::before
{
    color: var(--g4);
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.5rem;
    font-weight: 300;
    left: 0.4rem;
    line-height: 1;
    opacity: 0.35;
    position: absolute;
    top: -0.2rem;
}

blockquote p
{
    color: var(--text-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.7;
    margin: 0;
    padding-left: 1.6rem;
}

blockquote cite
{
    color: var(--text-light);
    display: block;
    font-family: 'Arima', cursive;
    font-size: 0.65rem;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-top: 1rem;
    padding-left: 1.6rem;
    text-transform: uppercase;
}

blockquote cite::before
{
    content: '— ';
    opacity: 0.4;
}

/* -- left-aligned unordered lists -- */
ul
{
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    text-align: left;
}

ul li
{
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 0.8rem;
}

/* -- fanatically collective stats -- */
.collective-stats .stats-list
{
    list-style: none;
    margin: 0.5rem 0 1rem;
    padding: 0;
}

.collective-stats .stats-list li
{
    color: var(--text-mid);
    font-size: 0.88rem;
    line-height: 1.3;
    margin-bottom: 0;
    padding-left: 0;
}

.collective-stats .stats-list li:hover
{
    color: inherit;
    padding-left: 0;
    transition: none;
}

.collective-stats .stat-label
{
    color: var(--text-light);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    margin-right: 0.4rem;
    text-transform: uppercase;
}

.collective-stats .stat-value
{
    color: var(--text-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
}

.collective-stats .stat-newest-owned,
.collective-stats .stat-random-owned,
.collective-stats .stat-random-joined,
.collective-stats .stat-latest-joined
{
    color: var(--text-light);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
    text-align: center;
}

/* ============================================
   Shared component classes — CLAUDE.MD spec
   Canonical names with backward-compat aliases
   ============================================ */

/* Panel */
.site-panel,
.content-card
{
    animation: fadeUp 1s 0.2s ease both;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(130, 100, 120, 0.06);
    padding: 2.4rem 2.8rem;
}

/* Section header — the div container gets the layout; the h2 gets the label style */
.site-section-header,
.section-label
{
    align-items: center;
    color: var(--text-light);
    display: flex;
    font-family: 'Arima', cursive;
    font-size: 0.65rem;
    font-weight: 200;
    gap: 1rem;
    letter-spacing: 0.4em;
    margin: 4rem 0 1.5rem;
    text-transform: uppercase;
}

.site-section-header::after,
.section-label::after
{
    background: linear-gradient(90deg, var(--text-light), transparent);
    content: '';
    flex: 1;
    height: 1px;
    opacity: 0.5;
}

/* h2 inside site-section-header gets label treatment, not the big heading style */
.site-section-header h2
{
    color: var(--text-light);
    font-family: 'Arima', cursive;
    font-size: 0.65rem;
    font-weight: 200;
    letter-spacing: 0.4em;
    line-height: 1;
    margin: 0;
    text-align: left;
    text-transform: uppercase;
}

/* Stats row */
.site-stats,
.stats-row
{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Individual stat card */
.site-stat,
.stat
{
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    flex: 1;
    min-width: 120px;
    padding: 1.1rem 1.4rem;
    text-align: center;
}

/* Stat number / content */
.site-stat-content,
.stat-num
{
    color: var(--text-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1;
}

.stat-label
{
    color: var(--text-light);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    margin-top: 0.3rem;
    text-transform: uppercase;
}

/* Grid — multi-column layout */
.site-grid,
.fl-grid
{
    animation: fadeUp 1s 0.3s ease both;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

/* -- fanlisting cards -- */
.fl-card
{
    backdrop-filter: blur(14px);
    background: var(--white-soft);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 4px 18px var(--shadow);
    display: block;
    overflow: hidden;
    padding: 1.5rem 1.6rem;
    position: relative;
    text-decoration: none;
    transition: all 0.25s ease;
}

.fl-card::before
{
    background: linear-gradient(90deg, var(--g1), var(--g4), var(--g7));
    content: '';
    height: 3px;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 0.3s;
}

.fl-card:hover
{
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 12px 32px var(--shadow);
    transform: translateY(-4px);
}

.fl-card:hover::before
{
    opacity: 1;
}

.fl-cat
{
    color: var(--text-light);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.fl-title
{
    color: var(--text-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.28rem;
    font-weight: 400;
}

.fl-title em
{
    color: var(--text-mid);
    font-style: italic;
}

.fl-meta
{
    color: var(--text-light);
    display: flex;
    font-size: 0.78rem;
    gap: 1rem;
    margin-top: 0.8rem;
}

.fl-badge
{
    align-items: center;
    display: inline-flex;
    gap: 0.3rem;
}

.fl-badge::before
{
    background: currentColor;
    border-radius: 50%;
    content: '';
    height: 5px;
    opacity: 0.6;
    width: 5px;
}

/* -- recently joined -- */
.recent-list
{
    animation: fadeUp 1s 0.35s ease both;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.recent-item
{
    align-items: center;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    color: var(--text-mid);
    display: flex;
    font-size: 0.88rem;
    gap: 1.2rem;
    padding: 0.85rem 1.2rem;
    transition: background 0.2s;
}

.recent-item:hover
{
    background: rgba(255, 255, 255, 0.32);
}

.recent-dot
{
    background: linear-gradient(135deg, var(--g3), var(--g5));
    border-radius: 50%;
    flex-shrink: 0;
    height: 8px;
    width: 8px;
}

.recent-fl
{
    color: var(--text-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
}

.recent-name
{
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-left: auto;
}

.recent-date
{
    color: var(--text-light);
    font-size: 0.72rem;
    white-space: nowrap;
}

/* -- listing images -- */
.recent-item img,
.fan-joined-listing-item img
{
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-item:hover img
{
    transform: scale(1.05);
}

/* -- link states -- */

/* 1. Normal State */
a
{
    color: #7d9bb5;
    font-style: italic;
    position: relative;
    text-decoration: none;
    transition: color 0.25s ease;
}

/* 2. Visited State */
a:visited
{
    color: #b08a96;
}

/* 3. Hover State */
a:hover
{
    color: #c47a6a;
}

/* underline for plain prose links only - not pill navs */
.wrapper > a:hover,
p a:hover,
.site-panel a:hover,
.content-card a:hover,
footer a:hover,
.fan-kim-name a:hover,
.fan-wishlist-subject a:hover,
.fan-member-list a:hover,
.fan-form .fan-form-secondary-link:hover
{
    text-decoration: underline;
    text-decoration-color: #e8b8a8;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

/* 4. Active State */
a:active
{
    color: #c49060;
    transform: translateY(1px);
}

/* 5. Focus State */
a:focus
{
    border-radius: 2px;
    outline: 2px dashed #abc8de;
    outline-offset: 4px;
}

/* -- Nav pill color reset --
   Pills set their own colors explicitly so the
   global link color above must not bleed through. */
nav a,
nav a:visited,
nav a:active
{
    color: var(--text-mid);
    font-style: normal;
}

nav a:hover
{
    color: var(--text-dark);
}

.fan-joined-category-nav a,
.fan-owned-category-nav a,
.fan-size-nav a,
.fan-country-nav a,
.fan-pagination a,
.fan-pagination span,
.fan-donate-toggle,
.fan-form button[type=submit]
{
    font-style: normal;
}

/* ============================================
   FanUpdate
   ============================================ */

div#fanupdate
{
    animation: fadeUp 1s 0.2s ease both;
}

div#fanupdate h1
{
    font-size: 2.6rem;
    text-align: left;
}

div#fanupdate h2
{
    font-size: 1.9rem;
    text-align: left;
}

div#fanupdate h3
{
    font-size: 1.3rem;
    margin-top: 2rem;
}

div#fanupdate h4
{
    font-size: 1.1rem;
    margin-top: 1.6rem;
}

div#fanupdate h5
{
    margin-top: 1.4rem;
}

div#fanupdate h6
{
    margin-top: 1.2rem;
}

/* heading links (e.g. the post-title permalink in h2) — all states */
div#fanupdate h1 a,
div#fanupdate h2 a,
div#fanupdate h3 a,
div#fanupdate h4 a,
div#fanupdate h5 a,
div#fanupdate h6 a
{
    color: var(--text-dark);
    font-style: normal;
    text-decoration: none;
    transition: color 0.25s ease;
}

div#fanupdate h1 a:visited,
div#fanupdate h2 a:visited,
div#fanupdate h3 a:visited,
div#fanupdate h4 a:visited,
div#fanupdate h5 a:visited,
div#fanupdate h6 a:visited
{
    color: var(--text-mid);
}

div#fanupdate h1 a:hover,
div#fanupdate h2 a:hover,
div#fanupdate h3 a:hover,
div#fanupdate h4 a:hover,
div#fanupdate h5 a:hover,
div#fanupdate h6 a:hover
{
    color: #c47a6a;
    text-decoration: underline;
    text-decoration-color: #e8b8a8;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

div#fanupdate h1 a:active,
div#fanupdate h2 a:active,
div#fanupdate h3 a:active,
div#fanupdate h4 a:active,
div#fanupdate h5 a:active,
div#fanupdate h6 a:active
{
    color: #c49060;
    transform: translateY(1px);
}

div#fanupdate h1 a:focus,
div#fanupdate h2 a:focus,
div#fanupdate h3 a:focus,
div#fanupdate h4 a:focus,
div#fanupdate h5 a:focus,
div#fanupdate h6 a:focus
{
    border-radius: 2px;
    outline: 2px dashed #abc8de;
    outline-offset: 4px;
}

/* -- Entries -- */

/* Each post — set via Admin -> Templates -> entry_template, which wraps
   {{title}}/{{catfile}}/{{body}} in <div class="fu-entry">...</div>. Without
   that wrapper this rule matches nothing and posts fall back to plain flow. */
#fanupdate .fu-entry
{
    background: rgba(255, 211, 199, 0.16);
    border: 1px solid rgba(255, 211, 199, 0.35);
    border-radius: 18px;
    box-shadow: 0 4px 18px var(--shadow);
    margin-bottom: 1.6rem;
    padding: 1.8rem 2rem;
}

#fanupdate .fu-entry:last-of-type
{
    margin-bottom: 0;
}

p.catfile
{
    color: var(--text-light);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.2rem;
    margin-top: -0.6rem;
    padding: 0;
    text-transform: uppercase;
}

/* Entry date in the category archive listing (show-cat.php). */
span.date
{
    color: var(--text-light);
    font-family: 'Arima', cursive;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
}

/* -- Archives (?view=archive) -- */

#fanupdate .fu-archive-list
{
    list-style: none;
    margin: 0 0 1.6rem;
    padding: 0;
}

#fanupdate .fu-archive-item
{
    border-bottom: 1px solid var(--border);
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-bottom: 0;
    padding: 0.7rem 0;
}

#fanupdate .fu-archive-item:last-child
{
    border-bottom: none;
}

#fanupdate .fu-archive-count
{
    color: var(--text-light);
    font-family: 'Arima', cursive;
    font-size: 0.72rem;
    margin-left: 0.3rem;
}

/* -- Images -- */

a.fu-lightbox
{
    border: 1px solid var(--border);
    border-radius: 12px;
    display: inline-block;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

a.fu-lightbox:hover,
a.fu-lightbox:focus
{
    box-shadow: 0 8px 24px var(--shadow);
    transform: translateY(-2px);
}

a.fu-lightbox img
{
    cursor: zoom-in;
    display: block;
    height: auto;
    max-width: 100%;
    transition: opacity 0.2s ease;
}

a.fu-lightbox:hover img,
a.fu-lightbox:focus img
{
    opacity: 0.9;
}

a.fu-lightbox.fu-img-left
{
    float: left;
    margin: 0 1.25em 0.75em 0;
}

a.fu-lightbox.fu-img-right
{
    float: right;
    margin: 0 0 0.75em 1.25em;
}

a.fu-lightbox.fu-img-center
{
    display: block;
    margin: 0.75em auto;
}

/* -- Comments -- */

div#comments
{
    border-top: 1px solid var(--border);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
}

/* Shown in place of the comment list/form when comments are off. */
p.comments-closed
{
    color: var(--text-light);
    font-style: italic;
}

/* Comment validation/spam-guard error messages. */
p.error,
ul.error
{
    background: rgba(196, 122, 106, 0.1);
    border: 1px solid rgba(196, 122, 106, 0.3);
    border-radius: 12px;
    color: #a15142;
    font-size: 0.92rem;
    list-style: none;
    margin-bottom: 1.2rem;
    padding: 0.9rem 1.3rem;
}

ul.error li
{
    color: inherit;
    font-size: inherit;
    margin: 0;
}

ul.error li + li
{
    margin-top: 0.3rem;
}

/* Every comment always carries both "comment" and "fu-comment" — the
   latter follows the fu- prefix used elsewhere (fu-entry, fu-lightbox)
   and is the selector to style against going forward. */
#fanupdate .fu-comment
{
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 16px;
    clear: both;
    margin-bottom: 0.8rem;
    padding: 1.2rem 1.5rem;
}

#fanupdate .fu-comment p
{
    font-size: 0.95rem;
    margin-bottom: 0;
    padding: 0;
}

#fanupdate .fu-comment p.commenter
{
    color: var(--text-light);
    font-family: 'Arima', cursive;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.6rem;
    padding: 0;
    text-transform: uppercase;
}

div#newComment
{
    border-top: 1px solid var(--border);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
}

img.gravatar
{
    border: 1px solid var(--border);
    border-radius: 50%;
    float: right;
    height: 46px;
    margin: 0 0 1rem 1.2rem;
    width: 46px;
}

/* -- Comment Form -- */

form#comments-form {}

h3#postcomment
{
    margin-top: 2rem;
}

p#cmt-rules,
p#cmt-moderation
{
    color: var(--text-light);
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

/* Moderation notice in the built-in fallback comment form template. */
p.hint
{
    color: var(--text-light);
    font-size: 0.78rem;
    font-style: italic;
    margin: 0.4rem 0 1rem;
}

/* "Remember me" checkbox label. */
label.checkbox
{
    float: none;
    font-size: 0.85rem;
    letter-spacing: normal;
    text-align: left;
    text-transform: none;
    width: auto;
}

/* Comment form submit button. */
.submit
{
    background: var(--white-glass);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-dark);
    cursor: pointer;
    font-family: 'Arima', cursive;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    padding: 0.55rem 1.6rem;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.submit:hover
{
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
}

#captcha-img
{
    border: 1px solid var(--border);
    border-radius: 8px;
    display: block;
    margin: 0.4rem 0 0.8rem;
}

label
{
    color: var(--text-light);
    display: block;
    float: left;
    font-family: 'Arima', cursive;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    margin: 0 0.5em 0 0;
    padding-top: 0.6rem;
    text-align: right;
    text-transform: uppercase;
    width: 9em;
}

input,
textarea,
select,
option
{
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-dark);
    font-family: 'Arima', cursive;
    font-size: 0.95rem;
    outline: none;
    padding: 0.5rem 0.85rem;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus
{
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--g4);
    box-shadow: 0 0 0 3px rgba(255, 211, 199, 0.25);
}

textarea
{
    min-height: 120px;
    resize: vertical;
    width: 100%;
}

/* -- Footer (FanUpdate) -- */

a.rss
{
    background: var(--white-glass);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    padding: 0.32rem 0.9rem;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

a.rss:hover
{
    background: rgba(255, 255, 255, 0.65);
    color: var(--text-dark);
}

div.archivelink
{
    color: var(--text-light);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    margin: 2rem 0 0;
    text-align: right;
    text-transform: uppercase;
}

div.archivelink a
{
    color: var(--text-mid);
    font-style: normal;
}

div.credit
{
    border-top: 1px solid var(--border);
    clear: both;
    margin: 1.5rem 0 0;
    padding-top: 1.2rem;
    text-align: center;
}

div.credit p
{
    color: var(--text-light);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    margin: 0;
    opacity: 0.7;
    text-transform: uppercase;
}

/* -- footer -- */
footer
{
    animation: fadeUp 1s 0.4s ease both;
    border-top: 1px solid var(--border);
    margin-top: 5rem;
    padding: 2.5rem 0;
    text-align: center;
}

.footer-logo
{
    color: var(--text-mid);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 0.8rem;
}

footer p
{
    color: var(--text-light);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    line-height: 2;
}

footer a
{
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover
{
    color: var(--text-dark);
    text-decoration: underline;
}

.skin-credit
{
    color: var(--text-light);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    margin-top: 0.5rem;
    opacity: 0.6;
    text-align: center;
    text-transform: uppercase;
}

/* -- fanatically credit line -- */
.fanatically-credit
{
    border-top: 1px solid var(--border) !important;
    color: var(--text-light) !important;
    display: block !important;
    font-family: 'Arima', cursive !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.12em !important;
    margin: 4rem auto 0 !important;
    max-width: fit-content !important;
    opacity: 0.7;
    padding-top: 1.2rem !important;
    text-align: center !important;
    text-transform: uppercase !important;
    transition: opacity 0.3s ease;
}

.fanatically-credit a,
.fanatically-credit span
{
    border: none !important;
    color: var(--text-light) !important;
    font-size: inherit !important;
    text-decoration: none !important;
}

.fanatically-credit:hover
{
    opacity: 1;
}

.fanatically-credit a:hover
{
    color: var(--text-dark) !important;
    text-decoration: underline !important;
}

/* -- FANS FANS FANS banner exchange -- */

.fff-collective-badge {
    text-align: center;
}
/* -- animations -- */
@keyframes fadeDown
{
    from
    {
        opacity: 0;
        transform: translateY(-18px);
    }

    to
    {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp
{
    from
    {
        opacity: 0;
        transform: translateY(18px);
    }

    to
    {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -- SiteSkin Redux -- */
p.siteskin-redux-skin
{
    text-align: center;
}

img.siteskin-redux-skin-thumb
{
    backdrop-filter: blur(8px); /* Optional: creates a frosted glass effect */
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(199, 187, 219, 0.3); /* Soft lavender-tinted shadow */
    display: inline;
    height: auto;
    margin: 0 auto;
    max-width: 100%;
    width: 150px;
}

/* -- responsive -- */

@media (prefers-reduced-motion: no-preference)
{
    html
    {
        scroll-behavior: smooth;
    }
}

@media (max-width: 768px)
{
    .wrapper
    {
        padding: 0 1.4rem 3rem;
    }

    .site-panel,
    .content-card
    {
        padding: 2rem 2rem;
    }
}

@media (max-width: 560px)
{
    body
    {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    header
    {
        padding: 3rem 0 2rem;
    }

    .site-eyebrow
    {
        margin-bottom: 0.7rem;
    }

    .site-tagline
    {
        margin-top: 0.7rem;
    }

    .ornament
    {
        margin: 1.4rem 0 0;
    }

    nav
    {
        margin: 1.5rem 0 0;
    }

    .site-panel,
    .content-card
    {
        padding: 1.6rem 1.4rem;
    }

    .site-section-header,
    .section-label
    {
        margin: 2.5rem 0 1rem;
    }

    footer
    {
        margin-top: 3rem;
        padding: 1.8rem 0;
    }

    .fan-joined-page,
    .fan-owned-page,
    .fan-owned-listings-page,
    .fan-member-page,
    .fan-codes-page,
    .fan-wishlist-page,
    .fan-form-page
    {
        padding: 1.6rem 1.4rem;
    }

    .site-grid,
    .fl-grid
    {
        grid-template-columns: 1fr;
    }

    .site-stats,
    .stats-row
    {
        gap: 0.6rem;
    }

    img
    {
        display: block;
        height: auto;
        max-width: 100%;
    }

    img.skin
    {
        max-width: 80% !important;
        width: 80% !important;
    }

    nav a
    {
        align-items: center;
        display: inline-flex;
        font-size: 0.65rem;
        min-height: 44px;
        padding: 0.35rem 0.8rem;
    }

    .site-tagline
    {
        font-size: 0.52rem;
        letter-spacing: 0.15em;
    }
}
