@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   Design System & Temas (Light e Dark Mode)
   ========================================================================== */
:root {
    /* Tema Claro (Padrão) */
    --bg-page: #f4d974;
    --bg-card: #ffffff;
    --bg-input: #ffffff;
    --bg-subtle: #f1f5f9;
    --border-subtle: #f1f5f9;
    --border-button: #e2e8f0;
    --border-hover: #cbd5e1;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-subtle: #94a3b8;
    --accent-primary: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-light: #eff6ff;
    --success-bg: #dcfce7;
    --success-text: #166534;
    --danger-bg: #fee2e2;
    --danger-text: #991b1b;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 24px -4px rgba(15, 23, 42, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* Base resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

img {
    pointer-events: none;
    -webkit-user-drag: none;
}

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    transition: background-color 0.45s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: calc(24px + env(safe-area-inset-top, 0px)) 0 0;
    background-color: var(--bg-page);
    transition: background-color 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-x: hidden;
}

/* Tema Shopee (Transição Dinâmica Laranja #fd5d15) */
body.theme-shopee {
    --bg-page: #fd5d15;
    background-color: #fd5d15;
}

body.theme-shopee .container h1 {
    color: #ffffff;
    transition: color 0.35s ease;
}

body.theme-shopee .profile-subtitle {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    transition: color 0.35s ease;
}

/* ==========================================================================
   Componentes de Botões & Form Control
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    user-select: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--bg-subtle);
    color: var(--text-main);
    border-color: var(--border-button);
}

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

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-button);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-copy {
    background-color: #10b981;
    color: #ffffff;
    border: none;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.25);
}

.btn-copy:hover {
    background-color: #059669;
    transform: translateY(-1px);
}

.btn-copy.copied {
    background-color: #047857 !important;
    transform: scale(1.02);
}

.btn-danger {
    background-color: var(--danger-bg);
    color: var(--danger-text);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-danger:hover {
    background-color: #ef4444;
    color: #ffffff;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: var(--radius-sm);
}

.btn-icon {
    padding: 8px;
    border-radius: var(--radius-md);
    aspect-ratio: 1;
}

input[type="text"],
input[type="url"],
input[type="password"],
input[type="search"],
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-main);
    background-color: var(--bg-input);
    border: 1px solid var(--border-button);
    border-radius: var(--radius-md);
    outline: none;
    transition: all 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-light);
}

/* ==========================================================================
   Layout Principal da Página Bio / Hub (index.html e 404.html)
   ========================================================================== */
.container {
    text-align: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 16px;
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
}

.theme-toggle-btn {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 99;
    background: var(--bg-card);
    border: 1px solid var(--border-button);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.theme-toggle-btn:hover {
    transform: rotate(15deg) scale(1.05);
    border-color: var(--border-hover);
}

.profile-header {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-wrapper {
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
    width: 84px;
    height: 84px;
}

.logo {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ffffff;
    background-color: #ffffff;
    display: block;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.logo-wrapper .logo {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.45s cubic-bezier(0.34, 1.3, 0.64, 1),
                box-shadow 0.4s ease;
    will-change: transform, opacity;
}

.logo-wrapper .logo-default {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    z-index: 2;
    pointer-events: auto;
}

.logo-wrapper .logo-shopee {
    opacity: 0;
    transform: scale(0.75) rotate(-15deg);
    z-index: 1;
    pointer-events: none;
}

/* Transição de Logo no Tema Shopee */
body.theme-shopee .logo-wrapper .logo-default {
    opacity: 0;
    transform: scale(0.75) rotate(15deg);
    z-index: 1;
    pointer-events: none;
}

body.theme-shopee .logo-wrapper .logo-shopee {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    z-index: 2;
    pointer-events: auto;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.container h1 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 4px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--text-main);
    transition: color 0.35s ease;
    text-align: center;
    width: 100%;
}

.title-wrapper {
    display: inline-grid;
    grid-template-areas: "title";
    align-items: center;
    justify-items: center;
}

.title-text {
    grid-area: title;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
    will-change: opacity, transform;
    white-space: nowrap;
    text-align: center;
}

.title-text.title-default {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.title-text.title-shopee {
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
}

/* Transição do Título no Tema Shopee */
body.theme-shopee .title-text.title-default {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
}

body.theme-shopee .title-text.title-shopee {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.verified-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: filter 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
}

/* Selo Verificado Dourado no Tema Shopee */
body.theme-shopee .verified-icon {
    filter: sepia(1) saturate(8) hue-rotate(5deg) brightness(1.2) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
    transform: scale(1.1);
}

.profile-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    margin-top: 8px;
    line-height: 1.45;
    max-width: 380px;
    width: 100%;
    text-align: center;
    transition: color 0.35s ease;
}

.subtitle-wrapper {
    display: inline-grid;
    grid-template-areas: "subtitle";
    align-items: center;
    justify-items: center;
    width: 100%;
}

.subtitle-text {
    grid-area: subtitle;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
    will-change: opacity, transform;
    text-align: center;
}

.subtitle-text.subtitle-default {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.subtitle-text.subtitle-shopee {
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
}

/* Transição do Subtítulo no Tema Shopee */
body.theme-shopee .subtitle-text.subtitle-default {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
}

body.theme-shopee .subtitle-text.subtitle-shopee {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

[data-theme="dark"] .profile-subtitle {
    color: #ffffff;
}

/* Seletor em Pílula Ultra Clean & Minimalista com Slider Deslizante */
.pill-nav-container {
    display: flex;
    justify-content: center;
    margin: 18px 0 24px;
    width: 100%;
}

.pill-nav {
    display: inline-flex;
    align-items: center;
    position: relative;
    background-color: #ffffff;
    padding: 4px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    gap: 4px;
}

[data-theme="dark"] .pill-nav {
    background-color: #141414;
    border-color: rgba(255, 255, 255, 0.15);
}

.pill-indicator {
    position: absolute;
    top: 4px;
    left: 0;
    height: calc(100% - 8px);
    background-color: #000000;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: transform 0.38s cubic-bezier(0.34, 1.25, 0.64, 1), width 0.38s cubic-bezier(0.34, 1.25, 0.64, 1);
    pointer-events: none;
    z-index: 1;
    will-change: transform, width;
}

[data-theme="dark"] .pill-indicator {
    background-color: #ffffff;
}

.tab-btn {
    position: relative;
    z-index: 2;
    border: none;
    background: transparent;
    color: #475569;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: color 0.25s ease;
    user-select: none;
    outline: none;
    letter-spacing: 0.01em;
}

[data-theme="dark"] .tab-btn {
    color: #cbd5e1;
}

.tab-btn:hover {
    color: #0f172a;
}

[data-theme="dark"] .tab-btn:hover {
    color: #ffffff;
}

.tab-btn.active {
    color: #ffffff !important;
    font-weight: 700;
}

[data-theme="dark"] .tab-btn.active {
    color: #000000 !important;
}

/* Alternância de Abas Estável com Animação Fluida */
.tab-content {
    width: 100%;
}

.tab-content.active {
    animation: tabFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.tab-content.hidden {
    display: none !important;
}

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

/* Seção & Titulo */
.groups-section {
    margin-bottom: 24px;
    width: 100%;
}

.section-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    color: var(--text-main);
    text-align: center;
}

/* Cartões de Links Empilhados (Visual Fiel à Imagem de Referência) */
.cards-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 24px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    color: var(--text-main);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    user-select: none;
    min-height: 84px;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
    border-color: rgba(0, 0, 0, 0.1);
}

.link-card:active {
    transform: translateY(0);
}

.card-left {
    display: flex;
    align-items: center;
    flex: 1;
    overflow: hidden;
}

/* Ícones Circulares Grandes e Coloridos (Fundo Sólido / Gradiente + Ícone Branco) */
.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.icon-box .icon {
    width: 26px;
    height: 26px;
    fill: #ffffff;
}

.icon-box.whatsapp {
    background: #25D366;
}

.icon-box.telegram {
    background: #229ED9;
}

.icon-box.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.icon-box.shopee {
    background: #EE4D2D;
}

.icon-box.contato {
    background: #5856D6;
}

/* Linha Divisória Vertical Fina */
.card-divider {
    width: 1px;
    height: 38px;
    background-color: rgba(0, 0, 0, 0.08);
    margin: 0 16px 0 14px;
    flex-shrink: 0;
}

/* Bloco de Texto (Título + Subtítulo) */
.card-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 2px;
}

.card-title {
    font-size: 16px;
    font-weight: 800;
    color: #000000;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.card-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.35;
}

/* Seta Chevron no Lado Direito */
.chevron-arrow {
    color: #1e293b;
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.link-card:hover .chevron-arrow {
    transform: translateX(3px);
    color: #000000;
}

.more-dots {
    color: var(--text-subtle);
    opacity: 0.6;
    flex-shrink: 0;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.link-card:hover .more-dots {
    opacity: 1;
    color: var(--text-main);
}

.posts-footer {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    width: 100%;
}

.link.brinde {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #ffffff;
    color: #0f172a;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 10px 26px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.01em;
}

.link.brinde:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .link.brinde {
    background-color: #1e293b;
    color: #f8fafc;
    border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .link.brinde:hover {
    background-color: #ffffff;
    color: #0f172a;
    border-color: #ffffff;
}

/* Seção de Novidades / Feed (Dividida em Background Branco Reto) */
.posts-section {
    margin-top: 36px;
    background-color: #ffffff;
    border-radius: 0;
    padding: 32px 16px calc(36px + env(safe-area-inset-bottom, 0px));
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-shadow: none;
}

[data-theme="dark"] .posts-section {
    background-color: #1e293b;
}

/* Layout Editorial de Notícias (Inspiração Portal) */
.editorial-news-feed {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
}

/* Post de Destaque no Topo (Imagem Grande + Título em Negrito) */
.featured-post-card {
    display: block;
    text-decoration: none;
    padding-bottom: 16px;
    border-bottom: 2px solid #000000;
    margin-bottom: 12px;
    transition: opacity 0.2s ease;
}

.featured-post-card:hover {
    opacity: 0.9;
}

[data-theme="dark"] .featured-post-card {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.featured-image-container {
    width: 100%;
    height: 210px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--border-subtle);
}

.featured-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-post-title {
    font-size: 19px;
    font-weight: 800;
    color: #000000;
    line-height: 1.28;
    margin-top: 12px;
    margin-bottom: 0;
    text-align: left;
    letter-spacing: -0.01em;
}

[data-theme="dark"] .featured-post-title {
    color: #ffffff;
}

/* Lista de Posts Secundários (Imagem Pequena à Esquerda + Título) */
.remaining-posts-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.list-post-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.list-post-card:last-child {
    border-bottom: none;
}

.list-post-card:hover {
    opacity: 0.85;
}

[data-theme="dark"] .list-post-card {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.list-post-image {
    width: 108px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    background-color: var(--border-subtle);
}

.list-post-title {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    line-height: 1.35;
    margin: 0;
    text-align: left;
    flex: 1;
}

[data-theme="dark"] .list-post-title {
    color: #ffffff;
}

/* Seção de Ofertas & Prova Social Shopee (Fundo Branco da Página) */
.shopee-deals-section {
    margin-top: 36px;
    background-color: #ffffff;
    color: var(--text-main);
    border-radius: 0;
    padding: 36px 16px calc(40px + env(safe-area-inset-bottom, 0px));
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

[data-theme="dark"] .shopee-deals-section {
    background-color: #1e293b;
}

/* Header de Ofertas Imperdíveis Shopee */
.shopee-products-header {
    max-width: 440px;
    margin: 0 auto 16px;
    text-align: center;
}

.shopee-products-header h2 {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--text-main);
}

.shopee-deals-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Grid de Ofertas Shopee com Fotos (2 Colunas) */
.shopee-deals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 440px;
    margin: 0 auto 32px;
    width: 100%;
}

.shopee-deal-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-card);
    border: 1px solid var(--border-button);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.shopee-deal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(238, 77, 45, 0.18);
    border-color: #ee4d2d;
}

.deal-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ee4d2d;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(238, 77, 45, 0.3);
}

.deal-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background-color: var(--bg-subtle);
}

.deal-info {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.deal-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    height: 32px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
}

.deal-price-box {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}

.old-price {
    font-size: 11px;
    color: var(--text-subtle);
    text-decoration: line-through;
}

.new-price {
    font-size: 15px;
    font-weight: 800;
    color: #ee4d2d;
}

.deal-sales {
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.deal-btn {
    display: block;
    width: 100%;
    padding: 8px 0;
    background-color: #ee4d2d;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    margin-top: auto;
    transition: background-color 0.2s ease;
}

.shopee-deal-card:hover .deal-btn {
    background-color: #d73211;
}

.social-proof-wrapper {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
}

/* Card de Prova Social e CTA no Topo Amarelo da Aba Shopee */
.social-proof-top-card {
    max-width: 440px;
    margin: 0 auto 36px;
    padding: 24px 20px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-button);
    display: flex;
    flex-direction: column;
    align-items: center;
}

[data-theme="dark"] .social-proof-top-card {
    background-color: #1e293b;
    border-color: rgba(255, 255, 255, 0.1);
}

.social-proof-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proof-subtitle {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.recent-join-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border: 1px solid var(--border-button);
    padding: 12px 16px;
    border-radius: 18px;
    width: 100%;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 16px;
    transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.recent-join-card.updating {
    opacity: 0;
    transform: translateY(-6px);
}

[data-theme="dark"] .recent-join-card {
    background-color: rgba(255, 255, 255, 0.05);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background-color: var(--border-subtle);
    border: 2px solid #ffffff;
}

[data-theme="dark"] .user-avatar {
    border-color: rgba(255, 255, 255, 0.15);
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex-grow: 1;
}

.user-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.user-action {
    font-size: 12px;
    color: var(--text-muted);
}

.user-time {
    font-size: 12px;
    color: #0284c7;
    font-weight: 600;
    flex-shrink: 0;
}

/* Pill de Pessoas Vendo */
.live-viewers-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    color: #15803d;
    margin-bottom: 20px;
}

[data-theme="dark"] .live-viewers-pill {
    color: #4ade80;
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse 1.8s infinite;
}

/* Barra de Progresso de Vagas */
.vagas-box {
    width: 100%;
    margin-bottom: 24px;
}

.vagas-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}

.vagas-title {
    font-weight: 800;
    color: var(--text-main);
}

.vagas-percent {
    font-weight: 800;
    color: #16a34a;
}

.vagas-bar-bg {
    width: 100%;
    height: 10px;
    background-color: var(--border-subtle);
    border-radius: 9999px;
    overflow: hidden;
}

.vagas-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #22c55e 100%);
    border-radius: 9999px;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.vagas-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(-100%);
    animation: barShimmer 2.8s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes barShimmer {
    0% {
        transform: translateX(-100%);
    }
    55%, 100% {
        transform: translateX(100%);
    }
}

/* Benefícios & Botão CTA WhatsApp */
.shopee-cta-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    width: 100%;
}

.benefits-list li {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    color: #7c3aed;
    font-size: 15px;
}

.cta-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-height: 52px;
    padding: clamp(12px, 3.5vw, 16px) clamp(12px, 4vw, 20px);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-size: clamp(13px, 3.7vw, 15px);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.35;
    text-align: center;
    text-wrap: balance;
    word-break: break-word;
    border-radius: 16px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    box-sizing: border-box;
    user-select: none;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, filter 0.2s ease;
}

.cta-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.5);
    filter: brightness(1.03);
}

.cta-whatsapp-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.35);
}

.cta-subtext {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
    text-align: center;
    margin-top: 14px;
    letter-spacing: 0.02em;
}

[data-theme="dark"] .cta-subtext {
    color: #94a3b8;
}

.subtext-dot {
    color: #cbd5e1;
    font-size: 8px;
    opacity: 0.8;
}

[data-theme="dark"] .subtext-dot {
    color: #475569;
}

.proof-subtitle {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-transform: uppercase;
}



/* Pill de Pessoas Vendo */
.live-viewers-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-subtle);
    border: 1px solid var(--border-button);
    padding: 7px 18px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main);
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse 1.8s infinite;
}

/* Barra de Progresso de Vagas */
.vagas-box {
    width: 100%;
    max-width: 380px;
    margin-top: 4px;
}

.vagas-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
}

.vagas-title {
    font-weight: 700;
    color: var(--text-main);
}

.vagas-percent {
    font-weight: 800;
    color: #22c55e;
}

.vagas-bar-bg {
    width: 100%;
    height: 8px;
    background-color: var(--border-subtle);
    border-radius: 9999px;
    overflow: hidden;
}

.vagas-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #22c55e 100%);
    border-radius: 9999px;
    transition: width 1s ease;
}

/* Ofertas Recentes no Grupo (Grade de 3 Colunas) */
.recent-offers-container {
    max-width: 440px;
    margin: 0 auto 28px;
    width: 100%;
}

.offers-main-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

.offer-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-card);
    border: 1px solid var(--border-button);
    border-radius: 14px;
    padding: 12px 10px;
    text-decoration: none;
    text-align: left;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.offer-card:hover {
    transform: translateY(-2px);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: var(--shadow-md);
}

.offer-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4px;
    margin-bottom: 4px;
}

.offer-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 28px;
}

.offer-badge {
    background-color: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.25);
    font-size: 10px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 6px;
    flex-shrink: 0;
}

.offer-time {
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: block;
}

.offer-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: auto;
    border-top: 1px solid var(--border-subtle);
    padding-top: 8px;
}

.offer-old-price {
    font-size: 10px;
    color: var(--text-subtle);
    text-decoration: line-through;
}

.offer-new-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-main);
}

/* Benefícios & Botão CTA WhatsApp */
.shopee-cta-section {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    width: 100%;
    max-width: 380px;
}

.benefits-list li {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    color: #22c55e;
    font-size: 14px;
}

.cta-whatsapp-btn {
    display: block;
    width: 100%;
    max-width: 380px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #25d366 0%, #10b981 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-align: center;
    border-radius: 14px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.cta-subtext {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
}

@media (max-width: 480px) {
    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .offer-card {
        padding: 8px 6px;
    }

    .offer-title {
        font-size: 11px;
        height: 26px;
    }

    .offer-old-price {
        font-size: 9px;
    }

    .offer-new-price {
        font-size: 12px;
    }
}

.posts-section h2 {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--text-main);
    text-align: center;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.posts-container {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
}

.posts-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.post-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: var(--bg-subtle);
    border: 1px solid var(--border-button);
    transition: all 0.2s ease;
}

.post-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.post-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.92) 0%,
        rgba(15, 23, 42, 0.3) 60%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.post-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.35;
    z-index: 2;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.posts-footer {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

/* Campo de busca no Bio / 404 */
.site-search-wrapper {
    margin-bottom: 20px;
    width: 100%;
}

.site-search-input-group {
    display: flex;
    gap: 8px;
}

.search-results {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.search-result-item {
    background: var(--bg-card);
    border: 1px solid var(--border-button);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.result-info strong {
    display: block;
    font-size: 13px;
    color: var(--text-main);
}

.result-info small {
    font-size: 11px;
    color: var(--text-muted);
}

/* ==========================================================================
   Painel Administrativo (admin.html) - Layout & Dashboard
   ========================================================================== */
.admin-body {
    background-color: var(--bg-page);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    padding: 16px;
}

/* Navbar Admin */
.admin-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-card);
    padding: 14px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-button);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-button);
}

.admin-brand h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
}

.admin-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Grid do Dashboard Admin */
.admin-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 900px) {
    .admin-grid {
        grid-template-columns: 360px 1fr;
    }
}

/* Card Genérico Admin */
.admin-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-button);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.admin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.admin-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Form de Criação de Link */
.create-link-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.form-help {
    font-size: 11px;
    color: var(--text-subtle);
}

.input-with-prefix {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-button);
    border-radius: var(--radius-md);
    background-color: var(--bg-input);
    overflow: hidden;
}

.input-prefix {
    padding: 0 10px;
    font-size: 13px;
    color: var(--text-muted);
    background-color: var(--bg-subtle);
    border-right: 1px solid var(--border-button);
    white-space: nowrap;
    user-select: none;
}

.input-with-prefix input {
    border: none;
    border-radius: 0;
    box-shadow: none !important;
}

/* Banner Feedback de Criação com Botão Copiar Link */
.created-success-banner {
    background: var(--accent-light);
    border: 1px dashed var(--accent-primary);
    padding: 14px;
    border-radius: var(--radius-md);
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.created-success-banner h4 {
    font-size: 14px;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.created-url-display {
    font-family: monospace;
    font-size: 13px;
    background: var(--bg-card);
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-button);
    word-break: break-all;
}

/* Dashboard Metrics / Cards */
.metrics-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.metric-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-button);
    border-radius: var(--radius-md);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
}

/* Tabela e Busca de Links (Alta Performance) */
.link-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.link-search-bar input {
    flex: 1;
    min-width: 200px;
}

.links-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-button);
    border-radius: var(--radius-md);
    background-color: var(--bg-card);
}

.links-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 13px;
}

.links-table th {
    background-color: var(--bg-subtle);
    color: var(--text-muted);
    font-weight: 700;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-button);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.05em;
}

.links-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-main);
    vertical-align: middle;
}

.links-table tr:hover {
    background-color: var(--bg-subtle);
}

.slug-cell {
    font-weight: 700;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.url-cell {
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-muted);
}

.clicks-badge {
    display: inline-block;
    background-color: var(--bg-subtle);
    color: var(--text-main);
    font-weight: 700;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.action-buttons-cell {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Paginação */
.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Modais de QR Code, Import/Export e Senha */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    padding: 16px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-button);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.2s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
}

.qr-code-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #ffffff;
    border-radius: var(--radius-md);
    margin: 14px 0;
    border: 1px solid var(--border-button);
}

.qr-code-box svg, 
.qr-code-box img {
    max-width: 200px;
    height: auto;
}

/* Toast de Notificação */
.toast-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--text-main);
    color: var(--bg-card);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    font-weight: 600;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Spinner e Estados */
.redirect-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-button);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading, .no-posts, .error {
    text-align: center;
    padding: 16px;
    font-size: 13px;
    color: var(--text-muted);
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-button);
}

.hidden {
    display: none !important;
}

/* Responsive Mobile Adjustments */
@media (max-width: 600px) {
    body {
        padding: calc(16px + env(safe-area-inset-top, 0px)) 0 0;
    }
    
    .admin-nav {
        padding: 12px;
    }

    .admin-brand h2 {
        font-size: 15px;
    }

    .action-buttons-cell {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .logo {
        width: 78px;
        height: 78px;
    }

    .container h1 {
        font-size: 19px;
    }

    .profile-subtitle {
        font-size: 12.5px;
        padding: 0 4px;
    }

    .tab-btn {
        padding: 8px 22px;
        font-size: 13px;
    }

    .cards-stack {
        gap: 11px;
    }

    .link-card {
        padding: 14px 16px;
        border-radius: 20px;
        min-height: 74px;
    }

    .icon-box {
        width: 42px;
        height: 42px;
    }

    .icon-box .icon {
        width: 22px;
        height: 22px;
    }

    .card-divider {
        height: 32px;
        margin: 0 12px 0 10px;
    }

    .card-title {
        font-size: 14.5px;
    }

    .card-subtitle {
        font-size: 11.5px;
        line-height: 1.3;
    }

    .card-subtitle br {
        display: none;
    }

    .chevron-arrow {
        width: 18px;
        height: 18px;
        margin-left: 8px;
    }
}

@media (max-width: 360px) {
    .link-card {
        padding: 12px 12px;
        min-height: 68px;
    }

    .icon-box {
        width: 38px;
        height: 38px;
    }

    .icon-box .icon {
        width: 20px;
        height: 20px;
    }

    .card-title {
        font-size: 13.5px;
    }

    .card-subtitle {
        font-size: 11px;
    }
}
