/* ============================================
   ZAYN ROMANO – LINK PAGE
   ============================================ */

:root {
    --bg: #0a0a0a;
    --surface: #111;
    --surface-hover: #1a1a1a;
    --border: rgba(255,255,255,.08);
    --text: #f0f0f0;
    --text-muted: #777;
    --accent: #e63946;
    --accent-glow: rgba(230, 57, 70, .30);
    --accent-soft: rgba(230, 57, 70, .08);
    --green: #2ecc71;
    --radius: 16px;
    --radius-sm: 12px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.5;
}

/* ── Particle canvas ───────────────────────────────── */
#particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
}

/* ── Container ─────────────────────────────────────── */
.container {
    position: relative;
    z-index: 1;
    max-width: 460px;
    margin: 0 auto;
    padding: 48px 20px 72px;
}

/* ── Scroll-reveal ─────────────────────────────────── */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}
[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════════════════
   PROFILE
   ════════════════════════════════════════════════════ */
.profile {
    text-align: center;
    margin-bottom: 40px;
}

.profile-photo {
    width: 110px;
    height: 110px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
    box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(230,57,70,.10);
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: pulse-ring 2.8s ease-out infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0%   { transform: scale(1);    opacity: .5; }
    100% { transform: scale(1.3);  opacity: 0; }
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.profile-photo:hover img { transform: scale(1.06); }

.profile h1 {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.glitch-text { position: relative; display: inline-block; }
.glitch-text:hover { animation: glitch .3s ease; }

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 1px); }
    40% { transform: translate(2px, -1px); }
    60% { transform: translate(-1px, -2px); }
    80% { transform: translate(1px, 2px); }
}

.tagline {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 6px;
    /* no italic — keep it blunt */
}

/* ════════════════════════════════════════════════════
   SECTION TITLES
   ════════════════════════════════════════════════════ */
.section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.title-accent {
    width: 28px;
    height: 1px;
    background: var(--border);
    display: inline-block;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: -8px;
    margin-bottom: 18px;
    /* no italic — keep it blunt */
}

/* ════════════════════════════════════════════════════
   FEATURED CAROUSEL
   ════════════════════════════════════════════════════ */
.carousel-section { margin-bottom: 40px; }

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    flex: 1;
    padding: 8px 0;
}

.carousel-card {
    flex: 0 0 56%;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: transform .5s cubic-bezier(.22,.68,0,1.1), filter .5s ease, opacity .5s ease;
    cursor: pointer;
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-card .card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    background: linear-gradient(transparent, rgba(0,0,0,.9));
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.carousel-card.side {
    flex: 0 0 26%;
    filter: blur(20px) brightness(0.4);
    opacity: 0.4;
    transform: scale(0.82);
    pointer-events: none;
}

.carousel-card.center {
    filter: blur(6px) brightness(0.8);
    transform: scale(1);
    opacity: 1;
}

.carousel-card.center:hover {
    filter: blur(3px) brightness(0.88);
    transform: scale(1.03);
}

.carousel-card .unlock-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,.7);
    z-index: 2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.unlock-overlay i {
    font-size: 1.5rem;
    transition: transform .3s;
}

.carousel-card.center:hover .unlock-overlay i { transform: scale(1.25); }

.carousel-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .2s;
    font-size: 0.75rem;
}

.carousel-btn:hover {
    color: var(--text);
    border-color: var(--accent);
    transform: scale(1.1);
}

.carousel-btn:active { transform: scale(0.92); }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    cursor: pointer;
    transition: all .25s;
}

.carousel-dot:hover { background: rgba(255,255,255,.3); transform: scale(1.3); }
.carousel-dot.active { background: var(--accent); transform: scale(1.2); }

/* ════════════════════════════════════════════════════
   LINKS
   ════════════════════════════════════════════════════ */
.links-section { margin-bottom: 40px; }

.link-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

/* Shine sweep on hover */
.link-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.04) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform .6s;
}
.link-btn:hover::before { transform: translateX(100%); }

.link-btn:hover {
    background: var(--surface-hover);
    border-color: rgba(230,57,70,.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.4);
}

.link-btn:active { transform: translateY(0) scale(0.98); }

.link-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: transform .25s;
}

.link-btn:hover .link-icon { transform: scale(1.1); }

/* Platform icon colors */
.link-of .link-icon      { background: rgba(0,170,255,.12); color: #00aaff; }
.link-fansly .link-icon   { background: rgba(29,161,242,.12); color: #1da1f2; }
.link-x .link-icon        { background: rgba(255,255,255,.06); color: #e0e0e0; }
.link-ig .link-icon       { background: rgba(225,48,108,.12); color: #e1306c; }
.link-tiktok .link-icon   { background: rgba(255,255,255,.06); color: #fff; }
.link-snap .link-icon     { background: rgba(255,252,0,.10); color: #fffc00; }
.link-telegram .link-icon { background: rgba(0,136,204,.12); color: #0088cc; }
.link-yt .link-icon       { background: rgba(255,0,0,.10); color: #ff0000; }

.link-content { flex: 1; min-width: 0; }

.link-name {
    display: block;
    font-weight: 600;
    font-size: 0.92rem;
}

.link-sub {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 1px;
}

.link-arrow {
    color: rgba(255,255,255,.15);
    font-size: 0.75rem;
    transition: all .25s;
}

.link-btn:hover .link-arrow {
    color: var(--accent);
    transform: translateX(3px);
}

.age-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;
    margin-left: 5px;
    vertical-align: middle;
    letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════
   SMS SIGNUP
   ════════════════════════════════════════════════════ */
.sms-section { margin-bottom: 40px; }

.sms-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow on hover */
.sms-card::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: radial-gradient(circle, var(--accent-soft) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .5s;
    pointer-events: none;
}
.sms-card:hover::before { opacity: 1; }

.sms-icon-wrap {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    animation: icon-float 3s ease-in-out infinite;
    position: relative;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}

.sms-card h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    position: relative;
}

.sms-card > p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.55;
    margin-bottom: 18px;
    position: relative;
}

/* Urgency counter */
.sms-urgency {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(230,57,70,.10);
    border: 1px solid rgba(230,57,70,.20);
    border-radius: 20px;
    padding: 6px 14px;
    margin-bottom: 16px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    position: relative;
    animation: urgency-pulse 2s ease-in-out infinite;
}

.sms-urgency i { font-size: 0.7rem; }

@keyframes urgency-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,.15); }
    50%      { box-shadow: 0 0 0 6px rgba(230,57,70,0); }
}

#sms-form {
    display: flex;
    gap: 8px;
    position: relative;
}

.phone-input-wrap {
    display: flex;
    align-items: center;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    flex: 1;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

.phone-input-wrap:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.phone-prefix {
    padding: 0 8px 0 14px;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
}

#phone {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-size: 0.92rem;
    padding: 13px 12px 13px 0;
    font-family: inherit;
}
#phone::placeholder { color: #444; }

.sms-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0 20px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s;
    font-family: inherit;
    position: relative;
    letter-spacing: 0.02em;
}

.sms-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px var(--accent-glow);
}
.sms-btn:active { transform: translateY(0) scale(0.97); }
.sms-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.sms-status {
    margin-top: 14px;
    font-size: 0.82rem;
    min-height: 1.3em;
    position: relative;
}
.sms-status.success { color: var(--green); }
.sms-status.error   { color: var(--accent); }

.sms-disclaimer {
    color: #444;
    font-size: 0.68rem;
    margin-top: 14px;
    position: relative;
}

/* ════════════════════════════════════════════════════
   SPIN THE WHEEL
   ════════════════════════════════════════════════════ */
.wheel-section { margin-bottom: 40px; }

.wheel-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
}

.wheel-tagline {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 20px;
    /* no italic — keep it blunt */
}

.wheel-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 20px;
}

.wheel-container canvas {
    border-radius: 50%;
    box-shadow: 0 0 30px var(--accent-glow), inset 0 0 20px rgba(0,0,0,.3);
}

.wheel-pointer {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.6rem;
    color: #fff;
    z-index: 2;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
}

.wheel-spin-btn { margin-bottom: 12px; }

.wheel-result {
    font-size: 0.9rem;
    font-weight: 600;
    min-height: 1.4em;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s, transform .4s;
}

.wheel-result.visible {
    opacity: 1;
    transform: translateY(0);
    color: var(--accent);
}

/* ════════════════════════════════════════════════════
   SHARED: NOTE INPUT
   ════════════════════════════════════════════════════ */
.note-input {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.82rem;
    padding: 12px 14px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
    margin-bottom: 8px;
}
.note-input:focus { border-color: var(--accent); }
.note-input::placeholder { color: #444; }

/* ════════════════════════════════════════════════════
   CUSTOM REQUEST: PRIVATE CHECKBOX
   ════════════════════════════════════════════════════ */
.custom-private-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.78rem;
    color: var(--text-muted);
    cursor: pointer;
    justify-content: center;
}

.custom-private-row input[type="checkbox"] {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* ════════════════════════════════════════════════════
   TIP SECTION (STRIPE)
   ════════════════════════════════════════════════════ */
.tip-section { margin-bottom: 40px; }

.tip-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 22px;
    text-align: center;
}

.tip-tagline {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 18px;
    /* no italic — keep it blunt */
}

.tip-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 14px;
}

.tip-amount {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
}

.tip-amount:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
}

.tip-amount.selected {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 14px var(--accent-glow);
}

.tip-amount:active { transform: scale(0.95); }

.tip-custom-wrap {
    display: flex;
    align-items: center;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color .2s;
}
.tip-custom-wrap:focus-within { border-color: var(--accent); }

.tip-custom-dollar {
    padding: 0 4px 0 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.tip-custom {
    width: 68px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-size: 0.88rem;
    padding: 10px 10px 10px 2px;
    font-family: inherit;
    -moz-appearance: textfield;
}
.tip-custom::-webkit-inner-spin-button,
.tip-custom::-webkit-outer-spin-button { -webkit-appearance: none; }

.tip-message {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.82rem;
    padding: 12px 14px;
    font-family: inherit;
    resize: none;
    margin-bottom: 14px;
    outline: none;
    transition: border-color .2s;
}
.tip-message:focus { border-color: var(--accent); }
.tip-message::placeholder { color: #444; }

.tip-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .2s;
    font-family: inherit;
    letter-spacing: 0.01em;
}

.tip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}
.tip-btn:active { transform: translateY(0) scale(0.98); }
.tip-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.tip-btn i { animation: heartbeat 1.6s ease-in-out infinite; }

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14%      { transform: scale(1.3); }
    28%      { transform: scale(1); }
    42%      { transform: scale(1.18); }
}

.tip-status {
    margin-top: 12px;
    font-size: 0.82rem;
    min-height: 1.3em;
}
.tip-status.success { color: var(--green); }
.tip-status.error   { color: var(--accent); }

/* ════════════════════════════════════════════════════
   WISHLIST / GIFTS
   ════════════════════════════════════════════════════ */
.wishlist-section { margin-bottom: 40px; }

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.wishlist-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 14px;
    text-align: center;
    transition: all .25s;
}

.wishlist-item:hover {
    border-color: rgba(230,57,70,.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.wishlist-emoji {
    font-size: 1.7rem;
    margin-bottom: 8px;
    display: block;
}

.wishlist-item h3 {
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.wishlist-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    /* no italic — keep it blunt */
}

.wishlist-price {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.wishlist-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 9px 16px;
    font-size: 0.76rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
    width: 100%;
    letter-spacing: 0.02em;
}

.wishlist-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px var(--accent-glow); }
.wishlist-btn:active { transform: scale(0.97); }
.wishlist-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ════════════════════════════════════════════════════
   CUSTOM REQUESTS
   ════════════════════════════════════════════════════ */
.custom-section { margin-bottom: 40px; }

.custom-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
}

.custom-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--accent), #ff6b81);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
}

.custom-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.custom-card > p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.55;
    margin-bottom: 18px;
}

.custom-message {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.82rem;
    padding: 12px 14px;
    font-family: inherit;
    resize: none;
    margin-bottom: 12px;
    outline: none;
    transition: border-color .2s;
}
.custom-message:focus { border-color: var(--accent); }
.custom-message::placeholder { color: #444; }

.custom-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    font-weight: 500;
}

/* ════════════════════════════════════════════════════
   POLL / INTERACTION
   ════════════════════════════════════════════════════ */
.interact-section { margin-bottom: 40px; }

.poll-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.poll-question {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.poll-options { display: flex; flex-direction: column; gap: 8px; }

.poll-option {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    cursor: pointer;
    overflow: hidden;
    transition: all .2s;
    font-size: 0.85rem;
}

.poll-option:hover:not(.voted) {
    border-color: var(--accent);
    transform: translateX(4px);
}
.poll-option:active:not(.voted) { transform: scale(0.98); }

.poll-option.voted {
    border-color: rgba(230,57,70,.3);
    cursor: default;
}

.poll-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--accent-glow);
    width: 0;
    transition: width .8s cubic-bezier(.22,.68,0,1.1);
    border-radius: var(--radius-sm);
}

.poll-option-text {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}

.poll-pct {
    font-weight: 600;
    opacity: 0;
    transition: opacity .4s .2s;
}
.poll-option.voted .poll-pct { opacity: 1; }

/* ════════════════════════════════════════════════════
   MODAL
   ════════════════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modal-in .3s ease;
}
@keyframes modal-in { from { opacity: 0; } to { opacity: 1; } }

.modal-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 36px;
    text-align: center;
    max-width: 320px;
    width: 90%;
    position: relative;
    animation: modal-card-in .4s cubic-bezier(.22,.68,0,1.1);
}
@keyframes modal-card-in {
    from { transform: scale(0.8) translateY(24px); opacity: 0; }
    to   { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: color .2s;
}
.modal-close:hover { color: var(--text); }

.modal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    animation: heartbeat 1.6s ease-in-out infinite;
}

.modal-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.modal-msg { color: var(--text-muted); font-size: 0.88rem; }

/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: #333;
    font-size: 0.7rem;
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 420px) {
    .container { padding: 32px 16px 56px; }
    .wishlist-grid { grid-template-columns: 1fr; }
    #sms-form { flex-direction: column; }
    .sms-btn { padding: 13px; }
    .carousel-card.side { display: none; }
    .carousel-card.center { flex: 0 0 88%; }
    .tip-amounts { gap: 6px; }
    .tip-amount { padding: 9px 14px; font-size: 0.82rem; }
}
