:root {
    --noir: #0d0509;
    --midnight: #1a0a10;
    --parchment: #fffaf8;
    --blush: #fff2f4;
    --petal: #edd5da;
    --rose: #c8506a;
    --rose-deep: #a73d56;
    --dusty: #9b7a84;
    --warm-white: #f2e8e4;
    --text-dark: #1a0a10;
}

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

html,
body {
    min-height: 100%;
    width: 100%;
}

body {
    font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--parchment);
    overflow-x: hidden;
    transition: background-color 320ms ease, color 320ms ease;
}

body.theme-dark {
    background:
        radial-gradient(1200px 700px at 85% -5%, rgba(200, 80, 106, 0.14), transparent 55%),
        radial-gradient(900px 620px at 5% 110%, rgba(200, 80, 106, 0.1), transparent 58%),
        var(--noir);
    color: var(--warm-white);
}

body.theme-light {
    background:
        radial-gradient(1200px 700px at 85% -5%, rgba(200, 80, 106, 0.06), transparent 60%),
        radial-gradient(900px 620px at 5% 110%, rgba(200, 80, 106, 0.05), transparent 62%),
        var(--parchment);
    color: var(--text-dark);
}

.hearts-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-heart {
    position: absolute;
    font-size: var(--float-size, 16px);
    color: rgba(155, 122, 132, 0.34);
    animation: float var(--float-duration, 7s) ease-in-out infinite;
    animation-delay: var(--float-delay, 0s);
    filter: blur(0.1px);
}

body.theme-dark .floating-heart {
    color: rgba(242, 232, 228, 0.2);
}

.app-shell {
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    padding: 22px;
    transition: opacity 260ms ease, transform 260ms ease;
}

.app-shell.page-fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.app-shell.page-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.screen-wrap {
    width: min(680px, 94vw);
    margin: 0 auto;
}

.card {
    border-radius: 26px;
    border: 1px solid var(--petal);
    background: rgba(255, 250, 248, 0.78);
    backdrop-filter: blur(4px);
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    animation: bounceIn 420ms ease both;
}

body.theme-dark .card {
    border-color: rgba(242, 232, 228, 0.16);
    background: rgba(26, 10, 16, 0.5);
}

.center {
    text-align: center;
}

.display-title,
.question-title,
.trap-title,
.success-title,
.modal-title {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.display-title {
    font-size: clamp(40px, 6vw, 58px);
    line-height: 1.08;
    text-wrap: balance;
}

.subtle-text {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 300;
    color: var(--dusty);
    text-wrap: pretty;
}

body.theme-dark .display-title,
body.theme-dark .subtle-text,
body.theme-dark .footer-note,
body.theme-dark .question-sub,
body.theme-dark .trap-no-caption {
    color: var(--warm-white);
}

.footer-note {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 300;
    color: var(--dusty);
    text-align: center;
}

.bear-gif {
    width: 112px;
    height: 112px;
    object-fit: contain;
    margin: 0 auto 14px;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

.pill-btn,
.build-btn,
.answer-btn {
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    transition: transform 200ms ease, opacity 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.pill-btn:hover,
.build-btn:hover,
.answer-btn:hover {
    transform: translateY(-2px);
    opacity: 0.93;
}

.pill-btn:active,
.build-btn:active,
.answer-btn:active {
    transform: translateY(0);
}

.pill-btn {
    width: 100%;
    padding: 13px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose) 0%, #d7647f 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.08);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--rose-deep) 0%, #c8506a 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.35);
    color: var(--dusty);
    border-color: var(--petal);
}

.btn-secondary:hover {
    border-color: var(--rose);
    color: var(--rose);
}

body.theme-dark .btn-secondary {
    background: rgba(13, 5, 9, 0.22);
    color: var(--warm-white);
    border-color: rgba(242, 232, 228, 0.45);
}

.choice-stack {
    margin-top: 18px;
    display: grid;
    gap: 11px;
}

.choice-stack .pill-btn {
    white-space: nowrap;
}

.tooltip-note {
    margin-top: 8px;
    min-height: 18px;
    font-size: 12px;
    color: var(--dusty);
}

.gate-card {
    padding-top: 40px;
    padding-bottom: 38px;
}

.gate-subtitle {
    margin-top: 10px;
}

.gate-card .pill-btn {
    font-size: 14px;
    padding: 13px 16px;
}

.gate-footer {
    margin-top: 18px;
}

.setup-page {
    width: min(570px, 94vw);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.topbar-back {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--dusty);
    font-size: 24px;
    cursor: pointer;
}

.topbar-spacer {
    width: 36px;
    height: 36px;
}

.setup-subheading {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 300;
    color: var(--dusty);
    text-align: center;
}

.form-card {
    margin-top: 18px;
    border: 1px solid var(--petal);
    border-radius: 22px;
    padding: 26px 22px;
    background: rgba(255, 255, 255, 0.3);
}

.form-grid {
    display: grid;
    gap: 14px;
}

.date-time-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.field-label {
    display: block;
    margin-bottom: 7px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #b9959e;
}

.text-input,
.ig-field {
    border: 1px solid var(--petal);
    border-radius: 12px;
    background: var(--blush);
    transition: border-color 200ms ease, background-color 200ms ease;
}

.text-input {
    width: 100%;
    padding: 11px 12px;
    font-size: 14px;
    color: var(--text-dark);
    font-family: inherit;
}

.text-input[type="date"],
.text-input[type="time"] {
    min-height: 44px;
}

.text-input[type="date"]::-webkit-calendar-picker-indicator,
.text-input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0.78;
    cursor: pointer;
}

.text-input:focus {
    outline: none;
    border-color: var(--rose);
    background: #fff7f8;
}

.ig-field {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: center;
    padding: 11px 12px;
}

.ig-field:focus-within {
    border-color: var(--rose);
    background: #fff7f8;
}

.ig-prefix {
    color: var(--rose);
    font-weight: 500;
}

.ig-field input {
    border: 0;
    background: transparent;
    outline: none;
    font: inherit;
    color: var(--text-dark);
}

.build-btn {
    margin-top: 8px;
    width: 100%;
    padding: 13px 12px;
    background: linear-gradient(135deg, var(--rose) 0%, #d7647f 100%);
    color: #fff;
}

.helper-text {
    display: none;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 30;
    background: rgba(13, 5, 9, 0.55);
    display: grid;
    place-items: center;
    padding: 16px;
}

.modal-card {
    width: min(520px, 94vw);
    border: 1px solid var(--petal);
    border-radius: 22px;
    background: var(--parchment);
    padding: 26px;
    animation: fadeSlideUp 280ms ease both;
}

.modal-title {
    font-size: clamp(32px, 5vw, 42px);
    color: var(--text-dark);
    text-align: center;
    line-height: 1.08;
}

.modal-sub {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
    color: var(--dusty);
    text-align: center;
}

.link-box {
    width: 100%;
    margin-top: 14px;
    border: 1px solid var(--petal);
    border-radius: 10px;
    background: var(--blush);
    padding: 11px;
    font-size: 11px;
    color: var(--text-dark);
    font-family: Consolas, Monaco, "Courier New", monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-actions {
    margin-top: 10px;
    display: grid;
    gap: 8px;
}

.copy-btn {
    margin-top: 0;
    background: #2f2230;
    color: #fff;
}

.fine-note {
    margin-top: 10px;
    font-size: 12px;
    color: var(--dusty);
    text-align: center;
    line-height: 1.5;
}

.quiz-card {
    width: min(700px, 94vw);
    min-height: 440px;
    padding: 24px 24px 20px;
}

.progress-dots {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    margin-bottom: 12px;
}

.dot {
    height: 2px;
    border-radius: 2px;
    background: var(--petal);
    transition: background-color 300ms ease;
}

.dot.active {
    background: var(--rose);
}

.question-body {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#questionInner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.question-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.question-animate-out {
    animation: fadeOutUp 300ms ease forwards;
}

.question-animate-in {
    animation: fadeSlideUp 300ms ease both;
}

.question-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--blush);
    color: #8f6f79;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
}

.question-title {
    font-size: clamp(44px, 6.2vw, 66px);
    line-height: 1.08;
    color: var(--text-dark);
    text-align: center;
    max-width: 13ch;
    margin: 0 auto;
    text-wrap: balance;
}

.question-sub {
    margin: 0;
    font-size: 16px;
    line-height: 1.62;
    font-weight: 300;
    color: #92757f;
    text-align: center;
    font-style: italic;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

.answer-row {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.answer-btn {
    min-height: 52px;
    padding: 12px 14px;
    text-align: center;
    font-size: 15px;
}

.answer-yes {
    background: linear-gradient(135deg, var(--rose) 0%, #d7647f 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.08);
}

.answer-modest {
    background: var(--blush);
    border-color: var(--petal);
    color: var(--rose-deep);
}

.answer-hint {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    color: #9b7f88;
    text-align: center;
    font-style: italic;
}

.reaction-pop {
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translateX(-50%);
    pointer-events: none;
    font-size: 18px;
    animation: microBurst 600ms ease forwards;
}

.trap-title {
    color: var(--warm-white);
}

.name-accent {
    color: #ff8fab;
}

.trap-actions {
    margin: 0;
    min-height: 210px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    position: relative;
    padding: 8px 10px 10px;
}

.trap-yes {
    width: min(460px, 100%);
    padding: 14px 14px;
    font-size: 15px;
    animation: pulse 2s ease-in-out infinite;
    z-index: 42;
    transition: font-size 260ms ease, padding 260ms ease;
}

.trap-no {
    border: 1.5px solid rgba(255, 195, 215, 0.95);
    background: linear-gradient(145deg, #7d3752 0%, #693046 100%);
    color: #fff7fa;
    border-radius: 100px;
    font-size: 18px;
    letter-spacing: 0.01em;
    line-height: 1.15;
    padding: 11px 22px;
    font-weight: 500;
    opacity: 1;
    white-space: nowrap;
    position: relative;
    z-index: 41;
    transition: left 260ms cubic-bezier(0.22, 1, 0.36, 1), top 260ms cubic-bezier(0.22, 1, 0.36, 1), font-size 220ms ease;
    will-change: left, top;
}

.trap-no:hover {
    transform: none;
    opacity: 1;
}

.trap-no-floating {
    position: absolute;
}

.trap-no-surrender {
    position: absolute;
    z-index: 39;
    opacity: 0.2;
}

.success-wrap {
    text-align: center;
}

.success-gif {
    width: 138px;
    height: 138px;
    object-fit: contain;
    margin: 0 auto 8px;
}

.success-title {
    font-size: clamp(42px, 6.4vw, 70px);
    line-height: 1.05;
    color: var(--text-dark);
}

.success-sub {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--dusty);
    line-height: 1.6;
}

.date-panel {
    margin-top: 20px;
    margin-bottom: 14px;
    background: var(--blush);
    border: 1px solid var(--petal);
    border-radius: 16px;
    padding: 18px 20px;
    text-align: left;
}

.date-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    font-weight: 500;
    color: var(--dusty);
}

.date-line {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-dark);
    text-transform: capitalize;
}

.insta-btn {
    margin: 18px auto 0;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--midnight);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.08);
    font-size: 13px;
}

.insta-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.ig-caption {
    margin-top: 8px;
    font-size: 11px;
    color: var(--dusty);
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-18px) rotate(8deg);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-12px);
    }
}

@keyframes microBurst {
    0% {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -32px) scale(1.4);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.86);
        opacity: 0;
    }
    60% {
        transform: scale(1.02);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@media (max-width: 900px) {
    .question-title {
        font-size: clamp(44px, 8vw, 68px);
    }
}

@media (max-width: 768px) {
    .app-shell {
        padding: 16px;
    }

    .screen-wrap,
    .setup-page,
    .quiz-card {
        width: 94vw;
    }

    .card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .gate-card .pill-btn {
        white-space: normal;
    }

    .display-title {
        font-size: clamp(34px, 8vw, 48px);
    }

    .subtle-text,
    .setup-subheading,
    .question-sub,
    .success-sub {
        font-size: 14px;
    }

    .quiz-card {
        min-height: 420px;
        padding: 20px 16px 16px;
    }

    .question-body {
        min-height: 280px;
    }

    .question-title {
        font-size: clamp(36px, 8.2vw, 50px);
        max-width: 11ch;
    }

    .answer-btn {
        min-height: 48px;
        font-size: 14px;
        padding: 11px 12px;
    }

    .trap-yes {
        font-size: 14px;
    }

    .question-sub {
        font-size: 15px;
    }

    .answer-hint {
        font-size: 14px;
    }

    .trap-no {
        font-size: 16px;
        padding: 10px 16px;
    }

    .trap-no-caption {
        font-size: 13px;
    }

    .trap-actions {
        min-height: 190px;
    }
}

@media (max-width: 560px) {
    .question-title {
        font-size: clamp(32px, 10.2vw, 42px);
    }

    .answer-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .answer-btn {
        min-height: 46px;
        font-size: 14px;
    }

    #questionInner,
    .question-stack {
        gap: 20px;
    }

    .question-sub {
        font-size: 14px;
    }

    .answer-hint {
        font-size: 13px;
    }

    .date-time-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 420px) {
    .app-shell {
        padding: 12px;
    }

    .card {
        padding: 18px 13px;
    }

    .bear-gif {
        width: 96px;
        height: 96px;
    }

    .display-title {
        font-size: clamp(30px, 10.4vw, 42px);
    }

    .subtle-text,
    .setup-subheading,
    .question-sub,
    .success-sub {
        font-size: 13px;
    }

    .question-title {
        font-size: clamp(30px, 10.6vw, 38px);
    }

    .question-badge {
        font-size: 11px;
    }

    .answer-btn {
        font-size: 13px;
        min-height: 44px;
        padding: 10px 12px;
    }

    .answer-hint {
        font-size: 12px;
    }

    .trap-no {
        font-size: 15px;
        padding: 9px 14px;
    }

    .trap-actions {
        min-height: 170px;
    }

    .date-panel {
        padding: 15px 13px;
    }

    .insta-btn {
        font-size: 12px;
        padding: 10px 16px;
    }

}

/* ===== Dual mode + contact platform controls ===== */
body.mode-her {
    --her-bg: #FFFAF8;
    --her-dark-bg: #0D0509;
    --her-card: #FFF2F4;
    --her-border: #EDD5DA;
    --her-accent: #C8506A;
    --her-muted: #9B7A84;
    --her-label: #C0A0A8;
    --her-dim: #3D1E2A;
    --her-warm-white: #F2E8E4;
    --her-text: #1A0A10;
}

body.mode-her .question-badge {
    background: #FFF2F4;
    color: #C8506A;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 9px;
    font-weight: 500;
}

body.mode-her .question-sub {
    font-size: 12px;
    color: #9B7A84;
}

body.mode-her .trap-badge {
    background: transparent;
    color: #5A2E3A;
    border: 1px solid #3D1E2A;
}

body.mode-her.theme-dark {
    background: #0D0509;
}

body.mode-her.theme-dark .dot {
    background: #2A1520;
}

body.mode-her .dot.active {
    background: #C8506A;
}

body.mode-her.theme-dark .trap-title {
    color: #F2E8E4;
}

body.mode-her.theme-dark .question-sub {
    color: #6A3A46;
}

body.mode-her .trap-no {
    background: #2A1520;
    color: #f8b8c7;
    border: 1.5px solid #6e3145;
    font-size: 17px;
    letter-spacing: 0.01em;
    padding: 11px 24px;
}

body.mode-her .trap-no-caption {
    font-size: 9px;
    color: #3D1E2A;
}

.platform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.platform-pill {
    border-radius: 100px;
    border: 1.5px solid #EDD5DA;
    background: transparent;
    color: #9B7A84;
    font-size: 12px;
    font-weight: 500;
    padding: 11px 0;
    cursor: pointer;
    transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.platform-pill.active {
    background: #C8506A;
    border-color: #C8506A;
    color: #fff;
}

.platform-pill.active-wa {
    background: #25D366;
    border-color: #25D366;
}

.contact-input-wrap {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: center;
    gap: 6px;
    border-radius: 10px;
    border: 1px solid #EDD5DA;
    background: #FFF2F4;
    padding: 8px 11px;
    transition: opacity 150ms ease, border-color 150ms ease;
}

.contact-input-wrap.switching {
    opacity: 0.55;
}

.contact-input-wrap.input-error {
    border-color: #E24B4A;
}

.contact-prefix {
    color: #C8506A;
    font-weight: 500;
}

.contact-prefix.wa {
    color: #25D366;
}

.contact-input {
    border: 0;
    background: transparent;
    font: inherit;
    color: var(--text-dark);
    outline: none;
}

.contact-helper {
    margin-top: 6px;
    font-size: 10px;
    font-style: italic;
    font-weight: 300;
    color: #C0A0A8;
}

.contact-error {
    margin-top: 4px;
    min-height: 14px;
    font-size: 10px;
    font-weight: 300;
    color: #E24B4A;
}

/* ===== Shared CTA on success ===== */
@keyframes ctaPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.93; }
}

.cta-btn {
    width: 100%;
    border: none;
    border-radius: 100px;
    padding: 18px 0;
    font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #fff;
    cursor: pointer;
    animation: ctaPulse 2.5s ease-in-out infinite;
}

.cta-her.cta-ig { background: #C8506A; }
.cta-her.cta-wa { background: #25D366; }
.cta-him.cta-ig { background: #1A2840; }
.cta-him.cta-wa { background: #25D366; }

.success-eyebrow {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #C0A0A8;
    font-weight: 500;
}

.success-frame {
    margin-top: 6px;
    margin-bottom: 16px;
    font-size: 13px;
    font-style: italic;
    font-weight: 300;
    text-align: center;
    color: #9B7A84;
}

.him-frame,
.him-pre {
    color: #3A5A7A;
}

.cta-pre {
    margin-top: 4px;
    margin-bottom: 14px;
    font-size: 11px;
    font-style: italic;
    font-weight: 300;
    text-align: center;
    color: #9B7A84;
}

.cta-reassure {
    margin-top: 8px;
    text-align: center;
    font-size: 9px;
    font-weight: 300;
}

.cta-reassure.her { color: #C0A0A8; }
.cta-reassure.him { color: #2A4A6A; }

body.mode-her .her-date-panel {
    background: #FFF2F4;
    border-radius: 14px;
}

body.mode-her .her-date-panel .date-line {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6A3040;
    font-size: 12px;
    line-height: 2;
}

@media (max-width: 560px) {
    .platform-row { grid-template-columns: 1fr; }
}

/* ===== Meta button (landing + success) ===== */
.meta-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    border: 1.5px solid rgba(200, 80, 106, 0.55);
    background: rgba(255, 242, 244, 0.75);
    color: #8E5A67;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    padding: 10px 16px;
    letter-spacing: 0.01em;
    transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease, color 180ms ease;
}

.meta-link-btn.top {
    margin: 0 auto 12px;
}

.meta-link-btn.bottom {
    margin: 12px auto 0;
}

.meta-link-btn:hover {
    transform: translateY(-1px);
    opacity: 0.9;
    border-color: var(--rose);
    color: var(--rose);
}

body.theme-dark .meta-link-btn {
    color: var(--warm-white);
    border-color: rgba(242, 232, 228, 0.6);
    background: rgba(26, 10, 16, 0.45);
}

@media (max-width: 560px) {
    .meta-link-btn {
        width: 100%;
        font-size: 12px;
        padding: 10px 14px;
    }
}
