/* ============ HERO ============ */
.hero-section { position: relative; padding: 60px 20px 50px; overflow: hidden; border-radius: 16px; margin-bottom: 32px; background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-shape { position: absolute; border-radius: 50%; opacity: 0.3; filter: blur(60px); }
.shape-1 { width: 300px; height: 300px; background: #ff6b6b; top: -100px; left: -100px; }
.shape-2 { width: 250px; height: 250px; background: #4facfe; bottom: -80px; right: -50px; }
.shape-3 { width: 200px; height: 200px; background: #feca57; top: 50%; left: 60%; }
.hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; text-align: center; color: #fff; }
.hero-title { font-size: 42px; font-weight: 800; margin: 0 0 12px; text-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.hero-subtitle { font-size: 16px; opacity: 0.95; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }

.hero-search { background: #fff; border-radius: 16px; padding: 6px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); max-width: 600px; margin: 0 auto 20px; position: relative; z-index: 5; }
.hero-search .search-form { display: flex; gap: 4px; position: relative; }
.hero-search .search-form input { flex: 1; padding: 12px 16px; border: none; background: transparent; font-size: 15px; outline: none; color: #333; }
.hero-search .search-btn { background: var(--primary, #667eea); color: #fff; border: none; padding: 0 20px; border-radius: 10px; cursor: pointer; font-size: 16px; }
.hero-search .search-btn:hover { opacity: 0.9; }
.hero-search .hero-suggest { top: calc(100% + 4px); text-align: left; }

.hero-stats { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 20px; }
.stat-pill { background: rgba(255,255,255,0.16); backdrop-filter: blur(10px); padding: 4px 11px; border-radius: 999px; color: #fff; text-decoration: none; font-size: 12px; transition: all 0.2s; border: 1px solid rgba(255,255,255,0.25); }
.stat-pill:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }
.stat-pill strong { font-weight: 700; margin-right: 4px; }

/* ============ SECTION ============ */
.home-section { margin-bottom: 36px; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; padding: 0 4px; }
.section-title { font-size: 20px; font-weight: 700; margin: 0; color: var(--text); }
.section-link { color: var(--primary); text-decoration: none; font-size: 13px; font-weight: 500; }
.section-link:hover { text-decoration: underline; }

/* ============ CEVAPLANMAMIŞ SORULAR ============ */

/* ============ KATEGORİLER ============ */
.cat-scroll { display: flex; gap: 10px; overflow-x: auto; padding: 4px 0 8px; scrollbar-width: thin; }
.cat-scroll::-webkit-scrollbar { height: 4px; }
.cat-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.cat-pill { flex-shrink: 0; display: flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; text-decoration: none; color: var(--text); transition: all 0.2s; }
.cat-pill:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.cat-icon { font-size: 20px; }
.cat-name { font-weight: 500; font-size: 14px; }
.cat-count { background: var(--bg); padding: 2px 8px; border-radius: 10px; font-size: 11px; color: var(--muted); }

/* ============ GÜNÜN İÇERİKLERİ ============ */
.daily-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.daily-card { display: flex; flex-direction: column; gap: 10px; padding: 16px; border-radius: 14px; text-decoration: none; color: var(--text); background: var(--card); border: 1px solid var(--border); transition: all 0.25s; min-height: 140px; position: relative; overflow: hidden; }
.daily-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.daily-card.has-cover { color: #fff; border-color: transparent; }
.daily-card.has-cover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
  border-radius: 0 0 13px 13px;
  pointer-events: none;
  z-index: 0;
}
.daily-card.has-cover > * { position: relative; z-index: 1; }
.daily-card.has-cover .daily-head,
.daily-card.has-cover .daily-body { filter: none; }
.daily-card.has-cover .daily-head { filter: drop-shadow(0 1px 3px rgba(0,0,0,.5)); }
.daily-card.has-cover .daily-emoji { filter: drop-shadow(0 2px 4px rgba(0,0,0,.6)); }
.daily-card.has-cover .daily-title,
.daily-card.has-cover .daily-meta { color: #fff; }
.daily-card.has-cover .daily-excerpt { color: rgba(255,255,255,.9); font-size: 11.5px; }
.daily-card.has-cover .daily-body { display: flex; flex-direction: column; justify-content: flex-end; flex: 1; gap: 4px; }
.daily-card.has-cover .daily-head { position: absolute; top: 16px; left: 16px; right: 16px; }
.daily-q { border-top: 3px solid #3b82f6; background: linear-gradient(180deg, rgba(59,130,246,0.12), var(--card) 60%); }
.daily-q:hover { border-color: #3b82f6; }
.daily-q .daily-label { color: #3b82f6; }
.daily-test { border-top: 3px solid #8b5cf6; background: linear-gradient(180deg, rgba(139,92,246,0.12), var(--card) 60%); }
.daily-test:hover { border-color: #8b5cf6; }
.daily-test .daily-label { color: #8b5cf6; }
.daily-test .daily-emoji { color: #8b5cf6; }
.daily-confession { border-top: 3px solid #ec4899; background: linear-gradient(180deg, rgba(236,72,153,0.12), var(--card) 60%); }
.daily-confession:hover { border-color: #ec4899; }
.daily-confession .daily-label { color: #ec4899; }
.daily-guide { border-top: 3px solid #2e7d32; background: linear-gradient(180deg, rgba(46,125,50,0.12), var(--card) 60%); }
.daily-guide:hover { border-color: #2e7d32; }
.daily-guide .daily-label { color: #2e7d32; }
.daily-guide .daily-emoji { color: #2e7d32; }
.daily-poll { border-top: 3px solid #f59e0b; background: linear-gradient(180deg, rgba(245,158,11,0.12), var(--card) 60%); }
.daily-poll:hover { border-color: #f59e0b; }
.daily-poll .daily-label { color: #f59e0b; }
.daily-emoji { font-size: 28px; flex-shrink: 0; line-height: 1; }
.daily-label { font-size: 11px; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.daily-body { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.daily-title { font-size: 15px; font-weight: 700; line-height: 1.3; }
.daily-excerpt { font-size: 12.5px; color: var(--muted); line-height: 1.4; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.daily-test .daily-excerpt { color: rgba(255,255,255,.85); }
.daily-text { font-size: 13px; opacity: 0.85; line-height: 1.4; flex: 1; }
.daily-meta { font-size: 11.5px; color: var(--muted); margin-top: auto; }
.daily-cta { font-size: 12px; font-weight: 600; margin-top: auto; opacity: 0.8; display: block; }
@media (max-width: 860px) {
  .daily-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .daily-card { padding: 14px 12px; gap: 8px; min-height: 140px; }
  .daily-emoji { font-size: 24px; }
  .daily-text { display: none; }
  .daily-title { font-size: 14px; }
  .daily-label { font-size: 10px; }
  .daily-cta { font-size: 11px; }
}
@media (max-width: 480px) {
  .daily-grid { grid-template-columns: 1fr; }
}

/* ============ DUAL COL ============ */
.dual-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.col-half { }

/* ============ TESTLER (trend sorular + trend testler ortak stil) ============ */
.test-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-items: stretch; }
.test-mini-card { display: flex; flex-direction: column; gap: 6px; padding: 14px 12px; border-radius: 10px; text-decoration: none; color: var(--text); transition: all 0.2s; min-height: 110px; background: var(--card); border: 1px solid var(--border); position: relative; overflow: hidden; }
.test-mini-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.test-mini-card.has-cover { color: #fff; border-color: transparent; }
.test-mini-card.has-cover::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
  border-radius: 0 0 9px 9px; pointer-events: none; z-index: 0;
}
.test-mini-card.has-cover > * { position: relative; z-index: 1; }
.test-mini-card.has-cover .test-mini-emoji { filter: drop-shadow(0 1px 3px rgba(0,0,0,.4)); }
.test-mini-card.has-cover .test-mini-label { color: rgba(255,255,255,.9); }
.test-mini-card.has-cover .test-mini-excerpt { color: rgba(255,255,255,.8); }
.test-mini-card.has-cover .test-mini-meta { color: rgba(255,255,255,.7); }
.test-mini-card.has-cover .test-mini-head { filter: drop-shadow(0 1px 3px rgba(0,0,0,.4)); }
.test-mini-card.has-cover .test-mini-body { filter: drop-shadow(0 1px 3px rgba(0,0,0,.3)); }
.test-mini-card:nth-child(4n+1) { border-top: 3px solid #ff6b6b; background: linear-gradient(180deg, rgba(255,107,107,0.08), var(--card) 60%); }
.test-mini-card:nth-child(4n+1):hover { border-color: #ff6b6b; }
.test-mini-card:nth-child(4n+2) { border-top: 3px solid #4facfe; background: linear-gradient(180deg, rgba(79,172,254,0.08), var(--card) 60%); }
.test-mini-card:nth-child(4n+2):hover { border-color: #4facfe; }
.test-mini-card:nth-child(4n+3) { border-top: 3px solid #10b981; background: linear-gradient(180deg, rgba(16,185,129,0.08), var(--card) 60%); }
.test-mini-card:nth-child(4n+3):hover { border-color: #10b981; }
.test-mini-card:nth-child(4n+4) { border-top: 3px solid #f59e0b; background: linear-gradient(180deg, rgba(245,158,11,0.08), var(--card) 60%); }
.test-mini-card:nth-child(4n+4):hover { border-color: #f59e0b; }
.test-mini-head { display: flex; flex-direction: row; align-items: center; gap: 8px; }
.test-mini-emoji { font-size: 22px; flex-shrink: 0; line-height: 1; }
.test-mini-label { font-size: 11px; font-weight: 600; }
.test-mini-card:nth-child(4n+1) .test-mini-label { color: #ff6b6b; }
.test-mini-card:nth-child(4n+2) .test-mini-label { color: #4facfe; }
.test-mini-card:nth-child(4n+3) .test-mini-label { color: #10b981; }
.test-mini-card:nth-child(4n+4) .test-mini-label { color: #f59e0b; }
.test-mini-title { font-weight: 500; font-size: 13.5px; line-height: 1.3; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; flex: 1; }
.test-mini-excerpt { font-size: 12px; color: rgba(255,255,255,.85); line-height: 1.4; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-top: 2px; }
.test-mini-meta { font-size: 11.5px; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }

/* ============ ANKETLER ============ */
.poll-scroll { display: flex; gap: 10px; overflow-x: auto; padding: 4px 0 8px; scrollbar-width: thin; }
.poll-scroll::-webkit-scrollbar { height: 4px; }
.poll-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.poll-mini-card { flex-shrink: 0; width: 280px; display: flex; flex-direction: column; gap: 8px; padding: 14px; background: var(--card); border: 1px solid var(--border); border-radius: 10px; text-decoration: none; color: var(--text); transition: all 0.2s; min-height: 200px; position: relative; overflow: hidden; }
.poll-mini-card.has-cover { color: #fff; border-color: transparent; }
.poll-mini-card.has-cover::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
  border-radius: 0 0 9px 9px; pointer-events: none; z-index: 0;
}
.poll-mini-card.has-cover > * { position: relative; z-index: 1; }
.poll-mini-card.has-cover .poll-title,
.poll-mini-card.has-cover .poll-summary,
.poll-mini-card.has-cover .poll-meta { filter: drop-shadow(0 1px 2px rgba(0,0,0,.4)); }
.poll-mini-card.has-cover .poll-title { color: #fff; }
.poll-mini-card.has-cover .poll-summary { color: rgba(255,255,255,.85); }
.poll-mini-card.has-cover .poll-meta { color: rgba(255,255,255,.75); }
.poll-clr-1 { border-top: 3px solid #ec4899; background: linear-gradient(180deg, rgba(236,72,153,0.06), var(--card) 60%); }
.poll-clr-1:hover { border-color: #ec4899; }
.poll-clr-2 { border-top: 3px solid #8b5cf6; background: linear-gradient(180deg, rgba(139,92,246,0.06), var(--card) 60%); }
.poll-clr-2:hover { border-color: #8b5cf6; }
.poll-clr-3 { border-top: 3px solid #06b6d4; background: linear-gradient(180deg, rgba(6,182,212,0.06), var(--card) 60%); }
.poll-clr-3:hover { border-color: #06b6d4; }
.poll-clr-4 { border-top: 3px solid #14b8a6; background: linear-gradient(180deg, rgba(20,184,166,0.06), var(--card) 60%); }
.poll-clr-4:hover { border-color: #14b8a6; }
.poll-mini-card:hover { border-color: var(--primary); }
.poll-title { font-weight: 500; font-size: 13px; line-height: 1.3; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.poll-emoji-inline { font-size: 16px; margin-right: 4px; }
.poll-summary { font-size: 12px; color: var(--muted); line-height: 1.4; min-height: 36px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-bottom: 4px; }
.poll-options { display: flex; flex-direction: column; gap: 6px; }
.poll-opt { display: flex; flex-direction: column; gap: 3px; }
.poll-opt-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; font-size: 11.5px; }
.poll-opt-text { color: var(--text); line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; min-width: 0; }
.poll-opt-pct { color: var(--primary); font-weight: 600; flex-shrink: 0; }
.poll-opt-bar { height: 4px; background: var(--bg); border-radius: 2px; overflow: hidden; }
.poll-opt-bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--primary), #8b5cf6); border-radius: 2px; transition: width .3s ease; }
.poll-meta { font-size: 11px; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }

/* ============ İTİRAFLAR ============ */
.confession-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.confession-card { display: flex; flex-direction: column; gap: 8px; padding: 16px; background: var(--card); border: 1px solid var(--border); border-radius: 10px; text-decoration: none; color: var(--text); transition: all 0.2s; position: relative; overflow: hidden; }
.confession-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.confession-card.has-cover { color: #fff; border-color: transparent; }
.confession-card.has-cover .confession-head,
.confession-card.has-cover .confession-meta { filter: drop-shadow(0 1px 3px rgba(0,0,0,.4)); }
.confession-card.has-cover .confession-text { color: #fff; filter: drop-shadow(0 1px 2px rgba(0,0,0,.3)); }
.confession-card.has-cover .confession-meta { color: rgba(255,255,255,.8); }
.confession-card.has-cover .confession-user { color: rgba(255,255,255,.95); font-weight: 600; }
.conf-card-clr-1 { border-top: 3px solid #f472b6; background: linear-gradient(180deg, rgba(244,114,182,0.07), var(--card) 60%); }
.conf-card-clr-1:hover { border-color: #f472b6; }
.conf-card-clr-2 { border-top: 3px solid #a78bfa; background: linear-gradient(180deg, rgba(167,139,250,0.07), var(--card) 60%); }
.conf-card-clr-2:hover { border-color: #a78bfa; }
.conf-card-clr-3 { border-top: 3px solid #34d399; background: linear-gradient(180deg, rgba(52,211,153,0.07), var(--card) 60%); }
.conf-card-clr-3:hover { border-color: #34d399; }
.conf-card-clr-4 { border-top: 3px solid #fbbf24; background: linear-gradient(180deg, rgba(251,191,36,0.07), var(--card) 60%); }
.conf-card-clr-4:hover { border-color: #fbbf24; }
.confession-head { display: flex; flex-direction: row; align-items: center; gap: 8px; }
.confession-emoji { font-size: 20px; flex-shrink: 0; }
.confession-label { font-size: 11px; font-weight: 600; }
.conf-card-clr-1 .confession-label { color: #f472b6; }
.conf-card-clr-2 .confession-label { color: #a78bfa; }
.conf-card-clr-3 .confession-label { color: #34d399; }
.conf-card-clr-4 .confession-label { color: #fbbf24; }
.confession-text { font-size: 13px; line-height: 1.5; flex: 1; }
.confession-meta { display: flex; gap: 10px; font-size: 11px; color: var(--muted); flex-wrap: wrap; margin-top: auto; }
.confession-user { color: var(--primary); font-weight: 500; }

/* ============ SON REHBERLER (anasayfa) ============ */
.guide-grid-home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.guide-card-home { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; text-decoration: none; color: var(--text); transition: all 0.2s; border-top: 3px solid #2e7d32; }
.guide-card-home:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); border-color: #2e7d32; }
.guide-card-home-cover { height: 130px; background-size: cover; background-position: center; }
.guide-card-home-nocover { background: linear-gradient(135deg, #667eea, #764ba2); display: flex; align-items: center; justify-content: center; font-size: 40px; }
.guide-card-home-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.guide-card-home-cat { font-size: 11px; color: #2e7d32; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.guide-card-home-title { font-size: 14px; font-weight: 700; line-height: 1.35; }
.guide-card-home-excerpt { font-size: 12.5px; color: var(--muted); line-height: 1.45; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.guide-card-home-meta { font-size: 11px; color: var(--muted); display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }

/* ============ AKTİVİTE ============ */
.activity-feed { background: var(--card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.activity-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text); transition: background 0.15s; }
.activity-item:last-child { border-bottom: none; }
.activity-item:hover { background: var(--bg); }
.activity-icon { font-size: 18px; }
.activity-text { flex: 1; font-size: 14px; }
.activity-ago { font-size: 12px; flex-shrink: 0; }

/* ============ KULLANICILAR ============ */
.users-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.user-card { display: flex; align-items: center; gap: 12px; padding: 12px; background: var(--card); border: 1px solid var(--border); border-radius: 10px; text-decoration: none; color: var(--text); transition: all 0.2s; }
.user-card:hover { border-color: var(--primary); }
.user-card .avatar-lg { width: 48px; height: 48px; flex-shrink: 0; }
.user-card-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.user-card-info b { font-size: 14px; }
.user-card-info .muted { font-size: 11px; }
.user-rep { font-size: 12px; color: var(--primary); font-weight: 600; }

/* ============ CTA ============ */
.cta-section { background: linear-gradient(135deg, #312e81 0%, #4F46E5 60%, #6d28d9 100%); border-radius: 16px; padding: 40px 20px; text-align: center; color: #fff; margin-top: 24px; }
.cta-content h2 { font-size: 28px; margin: 0 0 8px; font-weight: 800; }
.cta-content p { font-size: 16px; opacity: 0.9; margin-bottom: 20px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-btn { padding: 12px 24px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: all 0.2s; }
.cta-primary { background: var(--accent); color: #fff; }
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); background: var(--accent-dark); color: #fff; }
.cta-secondary { background: rgba(255,255,255,0.2); color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.cta-secondary:hover { background: rgba(255,255,255,0.3); }

.empty-mini { text-align: center; padding: 20px; color: var(--muted); font-size: 13px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 14px; }
  .daily-grid { grid-template-columns: repeat(2, 1fr); }
  .dual-col { grid-template-columns: 1fr; }
  .confession-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid-home { grid-template-columns: repeat(2, 1fr); }
  .users-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid-2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-section { padding: 36px 16px 32px; }
  .hero-title { font-size: 24px; }
  .hero-subtitle { font-size: 13px; }
  .hero-stats { gap: 6px; }
  .stat-pill { font-size: 11px; padding: 5px 10px; }
  .daily-grid { grid-template-columns: 1fr; }
  .confession-grid { grid-template-columns: 1fr; }
  .guide-grid-home { grid-template-columns: 1fr; }
  .users-grid { grid-template-columns: 1fr; }
  .test-grid-2 { grid-template-columns: 1fr; }
  .poll-mini-card { width: 200px; }
  .poll-emoji-inline { font-size: 14px; }
  .test-mini-card { min-height: 80px; }
  .test-mini-emoji { font-size: 22px; }
}

/* ============ DARK MODE (kart renkleri) ============ */
[data-theme="dark"] .test-mini-card:nth-child(4n+1),
[data-theme="dark"] .poll-clr-1,
[data-theme="dark"] .conf-card-clr-1 { background: linear-gradient(180deg, rgba(255,107,107,0.18), var(--card) 60%); }
[data-theme="dark"] .test-mini-card:nth-child(4n+2),
[data-theme="dark"] .poll-clr-2,
[data-theme="dark"] .conf-card-clr-2 { background: linear-gradient(180deg, rgba(79,172,254,0.18), var(--card) 60%); }
[data-theme="dark"] .test-mini-card:nth-child(4n+3),
[data-theme="dark"] .poll-clr-3,
[data-theme="dark"] .conf-card-clr-3 { background: linear-gradient(180deg, rgba(16,185,129,0.18), var(--card) 60%); }
[data-theme="dark"] .test-mini-card:nth-child(4n+4),
[data-theme="dark"] .poll-clr-4,
[data-theme="dark"] .conf-card-clr-4 { background: linear-gradient(180deg, rgba(245,158,11,0.18), var(--card) 60%); }
[data-theme="dark"] .test-mini-card:nth-child(4n+1) .test-mini-label { color: #fca5a5; }
[data-theme="dark"] .test-mini-card:nth-child(4n+2) .test-mini-label { color: #7dd3fc; }
[data-theme="dark"] .test-mini-card:nth-child(4n+3) .test-mini-label { color: #6ee7b7; }
[data-theme="dark"] .test-mini-card:nth-child(4n+4) .test-mini-label { color: #fcd34d; }
[data-theme="dark"] .conf-card-clr-1 .confession-label { color: #f9a8d4; }
[data-theme="dark"] .conf-card-clr-2 .confession-label { color: #c4b5fd; }
[data-theme="dark"] .conf-card-clr-3 .confession-label { color: #6ee7b7; }
[data-theme="dark"] .conf-card-clr-4 .confession-label { color: #fcd34d; }
