/* Base theme variables */
:root {
    --bg: #0a0a0a;
    --panel: #111214;
    --text: #f3f4f6;
    --muted: #c7c9ce;
    --line: rgba(255, 255, 255, .12);
    --line-2: rgba(255, 255, 255, .2);

    /* Layout */
    --container-max: 72rem;
    --container-max-xl: 110rem;
    --card-target-width: 20rem;
    /* ~352px target card width */
    --card-gap: 0.5rem;
    --header-h: 6.8rem;

    /* Accent (default: green / cannabis) */
    --accent: #22c55e;
    --accent-soft: rgba(34, 197, 94, 0.18);
    --accent-strong: rgba(34, 197, 94, 0.5);

    --accent-badge-bg: rgba(34, 197, 94, 0.18);
    --accent-badge-border: rgba(34, 197, 94, 0.55);

    /* Inputs */
    --input-bg: #0f1012;
    --input-border: var(--line);
    --input-border-focus: var(--line-2);
}

/* Optional: pink theme override (e.g. breast cancer awareness month) */
/* body.theme-pink {
    --accent: #ec4899;
    --accent-soft: rgba(236, 72, 153, 0.18);
    --accent-strong: rgba(236, 72, 153, 0.5);

    --accent-badge-bg: rgba(236, 72, 153, 0.18);
    --accent-badge-border: rgba(236, 72, 153, 0.65);

    --input-border-focus: rgba(236, 72, 153, 0.65);
} */

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    padding: 0;
}

body.app {
    margin: 0;
    background: radial-gradient(circle at top, #10141b 0, var(--bg) 55%);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

a {
    color: inherit;
    text-decoration: none
}

a:hover {
    text-decoration: underline;
}

.mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem
}

/* On large displays, let main content get wider so more columns fit */
@media (min-width: 1200px) {
    .container--xl {
        max-width: var(--container-max-xl);
    }
}

@media (min-width: 1600px) {
    .container--xl {
        max-width: 130rem;
        /* optional extra step-up */
    }
}

.muted {
    color: var(--muted)
}

.mb {
    margin-bottom: 1rem
}

/* Header */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: color-mix(in oklab, var(--bg), #000 10%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.app-header__row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
    justify-content: space-between;
    padding: .8rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}

.brand__logo {
    width: 110px;
    height: auto;
    display: block;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Controls */
.controls {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: .5rem;
}

.controls__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    color: var(--muted);
    transition: color 140ms ease-out, background 140ms ease-out;
}

.social-link:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.input {
    background: var(--input-bg);
    color: var(--text);
    border: 1px solid var(--input-border);
    padding: .5rem .7rem;
    border-radius: .75rem;
    outline: none;
    font-size: .9rem;
    transition: border-color 120ms ease-out, box-shadow 120ms ease-out, background 120ms ease-out;
}

.input::placeholder {
    color: rgba(199, 201, 206, 0.7);
}

.input:focus {
    border-color: var(--input-border-focus);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .06);
    background: #090a0c;
}

.input--wide {
    width: 98%;
    max-width: none;
}

/* Main & mission */
.main {
    padding: var(--header-h) 0.25rem 1.25rem;
}

/* mission card */
.mission {
    margin: 1rem;
    padding: 1.25rem;
    border-radius: 0.75rem;
    background: #0e1a10;
    /* dark “card” style */
    border: 1px solid var(--accent-soft);
    color: #d8ecd8;
    font-size: 0.9rem;
    line-height: 1.45;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.mission p {
    margin: 0 0 0.5rem;
}

.mission p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.mission__link {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 140ms ease-out;
}

.mission__link:hover {
    border-bottom-color: var(--accent);
}

/* --- Grid container (aligned rows) --- */
#grid.mode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(var(--card-target-width), 1fr));
    gap: var(--card-gap);
}

/* Items in grid mode */
#grid.mode-grid>article {
    display: block;
    margin: 0;
}

/* Optional: on very small screens, ensure cards fill width nicely */
@media (max-width: 640px) {
    #grid.mode-grid {
        grid-template-columns: 1fr;
    }
}

/* Masonry container (spare, not used now but kept) */
#grid.masonry {
    column-gap: var(--card-gap);
    column-width: var(--card-target-width);
}

#grid.masonry>article {
    break-inside: avoid;
    margin-bottom: var(--card-gap);
    display: inline-block;
    width: 100%;
}

@media (max-width: 640px) {
    #grid.masonry {
        column-width: 100%;
    }
}

/* Empty state */
.empty[hidden] {
    display: none;
}

.empty {
    border: 1px dashed var(--line);
    background: color-mix(in oklab, var(--panel), #fff 2%);
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
}

.empty__title {
    margin: 0 0 .25rem;
    font-size: 1rem;
    font-weight: 700;
}

.empty__body {
    margin: 0 0 .75rem;
    color: var(--muted);
}

.empty__actions button {
    background: #0f1012;
    color: var(--text);
    border: 1px solid var(--line);
    padding: .45rem .75rem;
    border-radius: .6rem;
    cursor: pointer;
}

.empty__actions button:hover {
    border-color: var(--line-2);
}

/* Card */
.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
    position: relative;
    transition:
        transform 140ms ease-out,
        box-shadow 140ms ease-out,
        border-color 140ms ease-out,
        background 140ms ease-out;
}

/* Subtle accent strip on event cards (not ads), tied to theme */
.card:not(.card--ad)::before {
    content: "";
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    top: 0.55rem;
    height: 2px;
    border-radius: 9999px;
    background: linear-gradient(90deg, var(--accent-strong), transparent);
    opacity: 0.65;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-2px);
    border-color: var(--line-2);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.4),
        0 0 0 1px var(--accent-soft);
    background: color-mix(in oklab, var(--panel), #ffffff 3%);
}

/* Ad cards: slightly different border + subtle tint */
.card--ad {
    border-style: dashed;
    border-color: var(--accent-badge-border);
    background: radial-gradient(circle at top, var(--accent-soft), var(--panel) 55%);
}

.card--ad:hover {
    background: radial-gradient(circle at top, var(--accent-strong), var(--panel) 55%);
}

.card__body {
    padding: .75rem;
    display: flex;
    flex-direction: column;
    gap: .55rem
}

.title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Event description (optional, shown when present) */
.description {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.4;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

/* Media frame (uniform, shorter to show badges) */
.media {
    width: 100%;
    aspect-ratio: 4 / 5;
    /* Safety cap: never let a card image exceed ~60vh so text fits below */
    max-height: 60vh;
    background: #0a0a0a;
    display: block;
    overflow: hidden;
}

.media>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    image-rendering: auto;
}

img[data-loaded="false"] {
    filter: blur(6px)
}

/* Meta row */
.meta {
    align-items: flex-start;
}

.when {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.when__date {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.8rem;
    color: var(--accent);
}

.when__time {
    font-size: .85rem;
    color: var(--muted);
}

.where {
    margin-left: auto;
    text-align: right;
    color: var(--muted);
    font-size: 0.8rem;
}

/* Badges & chips */
.badges {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem
}

.badge {
    font-size: .72rem;
    background: rgba(255, 255, 255, .10);
    padding: .25rem .5rem;
    border-radius: 9999px;
    opacity: .9;
    border: 1px solid var(--line);
    white-space: nowrap;
}

.badge:hover {
    background: rgba(255, 255, 255, .18)
}

/* Ad badge uses theme accent */
.badge--ad {
    background: var(--accent-badge-bg);
    border-color: var(--accent-badge-border);
    color: var(--text);
}

/* Chips (tags) */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem
}

.chip {
    font-size: .72rem;
    color: #dfe3ea;
    background: rgba(255, 255, 255, .08);
    padding: .2rem .6rem;
    border-radius: 9999px;
    border: 1px solid transparent;
}

/* pointer only on clickable tag chips (not adChip spans) */
button.chip {
    cursor: pointer;
}

/* hover/focus for clickable chips */
button.chip:hover {
    border-color: var(--accent-soft);
    background: rgba(255, 255, 255, .12);
}

.chip:focus-visible {
    outline: 2px solid var(--accent-soft);
    outline-offset: 2px;
}

/* Explicitly keep ad titles bold but reuse same size */
.card--ad .title {
    font-weight: 700;
}

/* Ad client/source text */
.ad-client {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Ad card description */
.card--ad .description {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.4;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .85);
    z-index: 70
}

.lightbox.open {
    display: flex
}

.lightbox figure {
    margin: 0;
    max-width: 92vw;
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

/* Lightbox – make the preview as large as possible */
.lightbox img {
    max-width: 98vw;
    max-height: 98vh;
    object-fit: contain;
    display: block;
}

.lightbox .close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: rgba(255, 255, 255, .12);
    border: 1px solid var(--line);
    backdrop-filter: blur(6px);
    padding: .35rem .6rem;
    border-radius: .6rem;
    color: #fff;
    cursor: pointer;
}

@media (max-width:640px) {
    .lightbox .close {
        top: -2.5rem
    }
}

body.no-scroll {
    overflow: hidden
}

/* Footer */
.footer {
    color: var(--muted);
    text-align: center;
    padding: 3rem 0
}

/* Deep linking highlight effect */
@keyframes highlight-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 var(--accent-strong);
        border-color: var(--line);
    }
    50% {
        box-shadow: 0 0 20px 4px var(--accent-strong);
        border-color: var(--accent);
    }
}

.card--highlighted {
    animation: highlight-pulse 1.5s ease-in-out 2;
    border-color: var(--accent);
    background: color-mix(in oklab, var(--panel), var(--accent) 8%);
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    background: var(--input-bg);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 140ms ease-out;
    white-space: nowrap;
}

.btn:hover {
    border-color: var(--accent);
    background: color-mix(in oklab, var(--input-bg), var(--accent) 8%);
    box-shadow: 0 0 0 2px var(--accent-soft);
}

.btn--primary {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.btn--primary:hover {
    background: color-mix(in oklab, var(--accent), #fff 15%);
    box-shadow: 0 0 0 2px var(--accent-soft), 0 4px 12px rgba(34, 197, 94, 0.25);
}

.btn svg {
    flex-shrink: 0;
}

/* Responsive button text */
@media (max-width: 640px) {
    .btn__text {
        display: none;
    }

    .btn {
        padding: 0.5rem;
    }
}

.btn--submit {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    z-index: 80;
    padding: 1rem;
    overflow-y: auto;
}

.modal.open {
    display: flex;
}

.modal__content {
    background: var(--panel);
    border: 1px solid var(--line-2);
    border-radius: 1rem;
    max-width: 48rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin: auto;
}

.modal__header {
    position: sticky;
    top: 0;
    background: color-mix(in oklab, var(--panel), #000 10%);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.modal__title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.modal__close {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 140ms ease-out;
}

.modal__close:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--line-2);
}

.modal__body {
    padding: 1.5rem;
}

.modal__body section {
    margin-bottom: 2rem;
}

.modal__body section:last-child {
    margin-bottom: 0;
}

.modal__body h3 {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.modal__body h4 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.modal__body p {
    margin: 0 0 1rem;
    line-height: 1.6;
    color: var(--muted);
}

/* Submission guide */
.submission-guide {
    background: color-mix(in oklab, var(--panel), var(--accent) 3%);
    border: 1px solid var(--accent-soft);
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.guide-checklist {
    background: var(--bg);
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem 0;
}

.guide-checklist ul {
    margin: 0.5rem 0 0;
    padding-left: 1.5rem;
}

.guide-checklist li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: var(--text);
}

.guide-checklist li:last-child {
    margin-bottom: 0;
}

.guide-note {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent);
    padding: 0.75rem 1rem;
    margin: 1rem 0 0;
    border-radius: 0.25rem;
    font-size: 0.9rem;
}

/* Form styles */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.required {
    color: var(--accent);
}

.form-input {
    width: 100%;
    background: var(--input-bg);
    color: var(--text);
    border: 1px solid var(--input-border);
    padding: 0.65rem 0.85rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 120ms ease-out, box-shadow 120ms ease-out;
}

.form-input::placeholder {
    color: rgba(199, 201, 206, 0.5);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-soft);
}

textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

.form-hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: var(--muted);
}

/* Alternative submission methods */
.submission-alt {
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
}

.alt-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.alt-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: color-mix(in oklab, var(--panel), #fff 2%);
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    transition: all 140ms ease-out;
    text-decoration: none;
}

.alt-method:hover {
    border-color: var(--accent);
    background: color-mix(in oklab, var(--panel), var(--accent) 5%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.alt-method svg {
    flex-shrink: 0;
    color: var(--accent);
}

.alt-method div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.alt-method strong {
    font-size: 1rem;
    color: var(--text);
}

.alt-method span {
    font-size: 0.85rem;
    color: var(--muted);
}

.alt-note {
    font-size: 0.85rem;
    font-style: italic;
}

/* Responsive adjustments for controls */
@media (max-width: 768px) {
    .controls {
        flex: 1;
        min-width: 0;
    }

    .input--wide {
        width: 100%;
    }

    .social-links {
        gap: 0;
    }

    .social-link {
        width: 2rem;
        height: 2rem;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 640px) {
    .modal__content {
        max-height: 95vh;
        border-radius: 0.75rem;
    }

    .modal__header {
        padding: 1rem;
    }

    .modal__title {
        font-size: 1.25rem;
    }

    .modal__body {
        padding: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* =================================
   SHARE BUTTON & MODAL
   ================================= */

/* Share button in event cards */
.card__actions {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.btn-share {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-share:hover {
    background: var(--card-bg);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
}

.btn-share svg {
    flex-shrink: 0;
}

/* Share modal */
.share-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    padding: 1rem;
}

.share-modal__content {
    background: var(--card-bg);
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 100%;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.share-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.share-modal__header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
}

.share-modal__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--muted);
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.share-modal__close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.share-modal__body {
    padding: 1.25rem;
}

.share-modal__title {
    margin: 0 0 1.25rem 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
}

.share-modal__buttons {
    display: grid;
    gap: 0.75rem;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    color: var(--text);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateX(4px);
}

.share-btn svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.share-btn--facebook {
    color: #1877f2;
}

.share-btn--facebook:hover {
    background: rgba(24, 119, 242, 0.1);
    border-color: #1877f2;
}

.share-btn--twitter {
    color: #1da1f2;
}

.share-btn--twitter:hover {
    background: rgba(29, 161, 242, 0.1);
    border-color: #1da1f2;
}

.share-btn--whatsapp {
    color: #25d366;
}

.share-btn--whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25d366;
}

.share-btn--sms {
    color: #5856d6;
}

.share-btn--sms:hover {
    background: rgba(88, 86, 214, 0.1);
    border-color: #5856d6;
}

.share-btn--instagram {
    color: #e4405f;
}

.share-btn--instagram:hover {
    background: rgba(228, 64, 95, 0.1);
    border-color: #e4405f;
}

.share-btn--copy {
    color: var(--accent);
}

.share-btn--copy:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: var(--accent);
}

.share-btn--success {
    background: rgba(34, 197, 94, 0.15);
    border-color: var(--accent);
    color: var(--accent);
}

.share-btn__hint {
    margin-left: auto;
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .share-modal__content {
        max-width: 100%;
        border-radius: 0.75rem;
    }

    .share-modal__header {
        padding: 1rem;
    }

    .share-modal__body {
        padding: 1rem;
    }

    .share-btn {
        padding: 0.75rem;
    }
}