
:root { 
  --primary: #8E2C8D; /* Alinhado ao Roxo The Logo */
  --bg: #f8f9fa; 
  --text: #1a1a1a; 
  --muted: #6b7280; 
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--bg); display: flex; flex-direction: column; align-items: center; padding: 24px; min-height: 100vh; }

.logo img { height: 42px; margin-bottom: 24px; object-fit: contain; }

.status { background: #fdf5ff; color: var(--primary); padding: 16px; border-radius: 12px; width: 100%; max-width: 540px; text-align: center; margin-bottom: 24px; font-weight: 500; font-size: 14px; border: 1px solid rgba(142, 44, 141, 0.1); }
.progress { height: 4px; background: rgba(142, 44, 141, 0.15); margin-top: 12px; border-radius: 4px; overflow: hidden; }
#bar { height: 100%; width: 0%; background: var(--primary); transition: width 1s linear; }

.card { background: #fff; width: 100%; max-width: 540px; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.03); margin-bottom: 24px; border: 1px solid rgba(0,0,0,0.04); }
.preview img { width: 100%; height: 210px; object-fit: cover; display: block; border-bottom: 1px solid #f0f0f0; background:#f4f4f4;}
.content { padding: 20px; }
.title { font-weight: 600; font-size: 17px; margin-bottom: 6px; color: var(--text); line-height: 1.3; }
.url { font-size: 13px; color: var(--muted); margin-bottom: 10px; word-break: break-all; }
.desc { font-size: 14px; color: #444; margin-bottom: 16px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.btn { display: inline-block; background: var(--primary); color: #fff; padding: 12px 24px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 14px; transition: opacity 0.2s, transform 0.2s; text-align: center; }
.btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* Melhorias no Ad-Card sem o Domínio / Extrapolando Título */
.ad-card { background: var(--primary); padding: 12px; margin: 0 0 20px 0; border-radius: 14px; display: flex; align-items: center; gap: 16px; width: 100%; max-width: 540px; text-decoration: none; box-shadow: 0 8px 20px rgba(142, 44, 141, 0.2); transition: transform 0.2s; }
.ad-card:hover { transform: translateY(-2px); }
.ad-card img { width: 72px; height: 72px; border-radius: 10px; object-fit: cover; background: #fff; padding: 2px; flex-shrink: 0;}
.ad-info { display: flex; flex-direction: column; justify-content: center; flex: 1; min-width: 0; }
.ad-tag { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;}
.ad-title { font-size: 15px; font-weight: 600; color: #fff; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; padding-right: 10px;}
.ad-arrow { flex-shrink: 0; opacity: 0.8; }

.footer { margin-top: 10px; font-size: 13px; color: var(--muted); text-align: center; }
.footer a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* CSS Exclusivo para a Home/Hub (Sem ID) */
.hub-wrapper { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; max-width: 500px; text-align: center; }
.hub-wrapper h1 { font-size: 28px; color: var(--text); margin-bottom: 12px; font-weight: 800; letter-spacing: -0.03em; }
.hub-wrapper p { font-size: 15px; color: var(--muted); margin-bottom: 32px; line-height: 1.6; }
.hub-card { background: #fff; border: 1px solid rgba(0,0,0,0.05); padding: 40px 30px; border-radius: 24px; box-shadow: 0 15px 35px rgba(0,0,0,0.03); width: 100%;}
