/* ================================================
   AI Tools ID — Custom Stylesheet (Dark Mode Base)
   ai-tools.css
   ================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800&display=swap');

/* ================================================
   CSS Custom Properties
   ================================================ */
:root {
  --bg-dark:          #0B0A1A;
  --bg-dark-2:        #12102A;
  --surface-1:        #171530;
  --surface-2:        #1C1A38;
  --accent-purple:    #A855F7;
  --accent-purple-dk: #7C3AED;
  --accent-blue:      #3B82F6;
  --accent-cyan:      #22D3EE;
  --text-primary:     #FFFFFF;
  --text-secondary:   #9CA3AF;
  --text-muted:       #8B8AA7;
  --border:           rgba(255,255,255,0.08);
  --shadow-card:      0 4px 24px rgba(0,0,0,0.35);
  --glow-purple:      0 0 24px rgba(168,85,247,0.25);
  --font-display:     'Sora', sans-serif;
  --font-body:        'Plus Jakarta Sans', sans-serif;
  --radius-card:      16px;
  --radius-btn:       50px;
  --transition:       0.3s ease;
}

/* ================================================
   Typography Override
   ================================================ */
body {
  font-family: var(--font-body) !important;
}
h1, h2, h3, h4, h5, h6,
.section-title .title,
.banner-content .title,
.top-seller-content h5,
.collection-item-top .name,
.latest-news-content h4,
.footer-widget h4,
.auth-title,
.page-header-content h1 {
  font-family: var(--font-display) !important;
}

/* ================================================
   Theme Toggle Button
   ================================================ */
.theme-toggle-btn {
  background: rgba(168,85,247,0.1);
  border: 1.5px solid rgba(168,85,247,0.35);
  color: #A855F7;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-left: 8px;
  vertical-align: middle;
}
.theme-toggle-btn:hover {
  background: rgba(168,85,247,0.25);
  box-shadow: var(--glow-purple);
}
.header-action ul {
  display: flex !important;
  align-items: center !important;
  gap: 8px;
}

/* ================================================
   Page Header / Breadcrumb
   ================================================ */
.page-header-area {
  background: linear-gradient(135deg, #12102A 0%, #1A1535 100%);
  padding: 90px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-header-area::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(168,85,247,0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-header-area::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-header-content { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.page-header-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.page-header-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 18px;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.breadcrumb-nav li      { color: var(--text-secondary); font-size: 13px; }
.breadcrumb-nav li a    { color: var(--accent-purple); text-decoration: none; transition: var(--transition); }
.breadcrumb-nav li a:hover { color: var(--accent-cyan); }
.breadcrumb-nav .sep    { color: #444; }

/* ================================================
   Search Bar
   ================================================ */
.search-bar-wrap {
  position: relative;
  max-width: 600px;
  width: 100%;
}
.search-bar-wrap input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(168,85,247,0.22);
  border-radius: 50px;
  padding: 13px 58px 13px 22px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
}
.search-bar-wrap input::placeholder { color: var(--text-muted); }
.search-bar-wrap input:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.15);
  background: rgba(168,85,247,0.06);
}
.search-bar-wrap .search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}
.search-bar-wrap .search-btn:hover {
  box-shadow: 0 4px 14px rgba(168,85,247,0.45);
}

/* ================================================
   Filter Tabs
   ================================================ */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}
.filter-tab-btn {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--text-secondary);
  padding: 7px 18px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--font-body);
  transition: var(--transition);
}
.filter-tab-btn:hover {
  border-color: rgba(168,85,247,0.4);
  color: #fff;
}
.filter-tab-btn.active {
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 3px 12px rgba(168,85,247,0.35);
}

/* ================================================
   Tool Cards (Grid view)
   ================================================ */
.tool-card {
  background: var(--surface-1);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
  padding: 20px;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tool-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168,85,247,0.3);
  box-shadow: 0 10px 36px rgba(168,85,247,0.14);
}
.tool-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.tool-card-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,0.08);
}
.tool-card-info { flex: 1; min-width: 0; }
.tool-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tool-card-title a { color: inherit; text-decoration: none; }
.tool-card-title a:hover { color: var(--accent-purple); }
.tool-card-badges { display: flex; gap: 5px; flex-wrap: wrap; }
.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 50px;
  display: inline-block;
  line-height: 1.5;
}
.badge-category {
  background: rgba(168,85,247,0.14);
  color: #C084FC;
  border: 1px solid rgba(168,85,247,0.2);
}
.badge-featured {
  background: linear-gradient(135deg, #F59E0B, #EF4444);
  color: #fff;
}
.badge-free {
  background: rgba(34,197,94,0.15);
  color: #22C55E;
  border: 1px solid rgba(34,197,94,0.2);
}
.badge-new {
  background: rgba(59,130,246,0.15);
  color: #60A5FA;
  border: 1px solid rgba(59,130,246,0.2);
}
.tool-card-desc {
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tool-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.btn-tool-cta {
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  color: #fff !important;
  border: none;
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-tool-cta:hover {
  box-shadow: 0 5px 16px rgba(168,85,247,0.45);
  transform: translateY(-1px);
}
.btn-tool-cta.promo { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.btn-tool-cta.promo:hover { box-shadow: 0 5px 16px rgba(239,68,68,0.35); }
.btn-tool-cta.btn-lg {
  padding: 13px 28px;
  font-size: 15px;
}
.fav-btn {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 14px;
}
.fav-btn:hover { color: #F87171; border-color: rgba(248,113,113,0.4); }
.fav-btn.active {
  color: #EF4444;
  border-color: rgba(239,68,68,0.4);
  background: rgba(239,68,68,0.1);
}
.fav-btn i { font-size: 14px; line-height: 1; pointer-events: none; }
.star-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  color: #F59E0B;
}
.star-rating span { color: var(--text-muted); margin-left: 3px; }

/* ================================================
   Tool Detail Page
   ================================================ */
.tool-detail-wrap { padding: 50px 0 70px; }
.tool-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.tool-detail-logo {
  width: 86px;
  height: 86px;
  border-radius: 20px;
  object-fit: cover;
  border: 2px solid rgba(168,85,247,0.3);
  box-shadow: 0 0 24px rgba(168,85,247,0.2);
  flex-shrink: 0;
}
.tool-detail-meta h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.tool-detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.tool-tag {
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.2);
  color: #C084FC;
  padding: 4px 13px;
  border-radius: 50px;
  font-size: 12px;
}
.tool-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 16px; }
.btn-access {
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  color: #fff !important;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.btn-access:hover {
  box-shadow: 0 6px 20px rgba(168,85,247,0.5);
  transform: translateY(-2px);
}
.btn-access.promo { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.tool-content-card {
  background: var(--surface-1);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
  padding: 28px 30px;
  margin-bottom: 20px;
}
.tool-content-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.tool-content-card p, .tool-content-card li {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 15px;
}
.tool-content-card ul { padding-left: 20px; }
.tool-content-card ul li { margin-bottom: 8px; }
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pros-block, .cons-block {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 16px;
}
.pros-block { border-left: 3px solid #22C55E; }
.cons-block { border-left: 3px solid #EF4444; }
.pros-block h4 { color: #22C55E; font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.cons-block h4 { color: #EF4444; font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.pros-list, .cons-list { list-style: none; padding: 0; margin: 0; }
.pros-list li { color: var(--text-secondary); font-size: 14px; padding: 5px 0 5px 20px; position: relative; }
.pros-list li::before { content: '✓'; color: #22C55E; position: absolute; left: 0; font-weight: 700; }
.cons-list li { color: var(--text-secondary); font-size: 14px; padding: 5px 0 5px 20px; position: relative; }
.cons-list li::before { content: '✗'; color: #EF4444; position: absolute; left: 0; font-weight: 700; }
.tool-screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.tool-screenshots img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  cursor: pointer;
}
.tool-screenshots img:hover {
  border-color: rgba(168,85,247,0.4);
  transform: scale(1.02);
}

/* ================================================
   Koleksi Page
   ================================================ */
.koleksi-card {
  background: var(--surface-1);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.koleksi-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168,85,247,0.3);
  box-shadow: 0 10px 36px rgba(168,85,247,0.14);
}
.koleksi-card-img  { width: 100%; height: 200px; object-fit: cover; }
.koleksi-card-body { padding: 22px; }
.koleksi-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.5;
}
.koleksi-card-title a       { color: inherit; text-decoration: none; }
.koleksi-card-title a:hover { color: var(--accent-purple); }
.koleksi-logo-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  align-items: center;
}
.koleksi-logo-row img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
}
.koleksi-count { color: var(--text-muted); font-size: 13px; margin-bottom: 16px; }

/* ================================================
   Article / Blog Cards
   ================================================ */
.article-card {
  background: var(--surface-1);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168,85,247,0.3);
  box-shadow: 0 10px 36px rgba(168,85,247,0.12);
}
.article-card-img  { width: 100%; height: 200px; object-fit: cover; }
.article-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.article-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.article-date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
}
.article-cat {
  font-size: 11px;
  background: rgba(168,85,247,0.12);
  color: #C084FC;
  border: 1px solid rgba(168,85,247,0.2);
  padding: 2px 10px;
  border-radius: 50px;
}
.article-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 10px;
}
.article-card-title a       { color: inherit; text-decoration: none; transition: var(--transition); }
.article-card-title a:hover { color: var(--accent-purple); }
.article-card-excerpt {
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ================================================
   Kamus AI Dictionary Items
   ================================================ */
.kamus-item {
  background: var(--surface-1);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 10px;
  transition: var(--transition);
  cursor: default;
}
.kamus-item:hover { border-color: rgba(168,85,247,0.3); }
.kamus-term {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-purple);
  margin-bottom: 6px;
}
.kamus-def {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ================================================
   Auth Pages (Login / Daftar)
   ================================================ */
.auth-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.auth-section::before {
  content: '';
  position: absolute;
  top: 10%; right: 5%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(168,85,247,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.auth-section::after {
  content: '';
  position: absolute;
  bottom: 5%; left: 5%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.auth-card {
  background: var(--surface-1);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 44px 40px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  text-decoration: none;
}
.auth-logo img    { height: 30px; }
.auth-title       { font-size: 1.7rem; font-weight: 800; color: #fff; text-align: center; margin-bottom: 6px; }
.auth-subtitle    { color: var(--text-secondary); text-align: center; font-size: 14px; margin-bottom: 32px; }
.form-group       { margin-bottom: 20px; }
.form-group label { display: block; color: var(--text-secondary); font-size: 13.5px; font-weight: 600; margin-bottom: 8px; }
.form-control-ai {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 13px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
  display: block;
}
.form-control-ai::placeholder { color: #555470; }
.form-control-ai:focus {
  outline: none;
  border-color: var(--accent-purple);
  background: rgba(168,85,247,0.06);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.12);
}
.btn-submit-auth {
  width: 100%;
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  border: none;
  border-radius: 12px;
  padding: 14px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  margin-top: 8px;
}
.btn-submit-auth:hover {
  opacity: 0.9;
  box-shadow: 0 8px 24px rgba(168,85,247,0.4);
  transform: translateY(-1px);
}
.auth-divider {
  text-align: center;
  position: relative;
  color: #444360;
  font-size: 13px;
  margin: 22px 0;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: rgba(255,255,255,0.07);
}
.auth-divider::before { left: 0; }
.auth-divider::after  { right: 0; }
.auth-bottom  { text-align: center; color: var(--text-secondary); font-size: 14px; margin-top: 20px; }
.auth-link    { color: var(--accent-purple); text-decoration: none; font-weight: 600; }
.auth-link:hover { text-decoration: underline; }

/* ================================================
   Dashboard
   ================================================ */
.page-header-area.dashboard-page {
  background: none;
  padding: 40px 0 30px 20px;
}
.page-header-area.dashboard-page-bare { margin-top: 0; }
.main-content-bare { padding-top: 24px; }
.page-header-area::before, .page-header-area::after { display: none; }
.dashboard-section { padding: 10px 0 70px; min-height: calc(100vh - 160px); }
.dashboard-user-card {
  background: linear-gradient(135deg, #1C1A38, #271F4A);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.dashboard-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A855F7, #3B82F6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.dashboard-user-info h3 { font-family: var(--font-display); color: #fff; font-size: 1.2rem; margin-bottom: 4px; }
.dashboard-user-info p  { color: var(--text-secondary); font-size: 14px; margin: 0; }
.dashboard-stats        { margin-left: auto; display: flex; gap: 24px; flex-wrap: wrap; }
.stat-item              { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #A855F7, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { color: var(--text-secondary); font-size: 12px; }
.dash-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 0;
  width: fit-content;
  flex-wrap: wrap;
}
.dash-tab {
  padding: 9px 22px;
  border-radius: 8px;
  border: none;
  background: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.dash-tab.active              { background: linear-gradient(135deg, #A855F7, #7C3AED); color: #fff; }
.dash-tab:hover:not(.active)  { color: #fff; }
.dash-tab-avatar { padding: 7px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.dash-panel        { display: none; }
.dash-panel.active { display: block; }
.dash-verify-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 24px;
}
.dash-verify-banner-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FBBF24;
  font-size: 14px;
}
.dash-verify-banner-text i { font-size: 16px; flex-shrink: 0; }
.dash-verify-banner-text strong { color: #fff; }
.dash-verify-banner-form { flex-shrink: 0; }
.dash-verify-banner-btn {
  background: none;
  border: 1px solid rgba(245,158,11,0.4);
  color: #FBBF24;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.dash-verify-banner-btn:hover { background: rgba(245,158,11,0.15); }

/* ================================================
   Navbar User Menu
   ================================================ */
.user-menu-item { position: relative; list-style: none; }
.user-menu-toggle {
  background: rgba(168,85,247,0.1);
  border: 1.5px solid rgba(168,85,247,0.35);
  color: #A855F7;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.user-menu-toggle:hover { background: rgba(168,85,247,0.25); box-shadow: var(--glow-purple); }
.user-menu-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 210px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow-card);
  z-index: 200;
}
.user-menu-dropdown.open { display: block; }
.user-menu-dropdown a,
.user-menu-dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  background: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}
.user-menu-dropdown a:hover,
.user-menu-dropdown button:hover { background: rgba(255,255,255,0.06); color: #fff; text-decoration: none; }
.user-menu-dropdown a i,
.user-menu-dropdown button i { width: 16px; text-align: center; color: var(--accent-purple); font-size: 13px; }
.user-menu-dropdown form { margin: 0; }
.user-menu-divider { height: 1px; background: var(--border); margin: 6px 4px; }
.dash-tool-card { height: 100%; display: flex; flex-direction: column; }
.dash-tool-card .tool-card-header { flex: 1; align-items: flex-start; margin: 0px;}
.tool-card-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.empty-state       { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state i     { font-size: 48px; color: #3D3A5C; display: block; margin-bottom: 16px; }
.empty-state h4    { font-family: var(--font-display); color: #6B7280; margin-bottom: 8px; font-size: 1.1rem; }
.empty-state p     { font-size: 14px; }

/* ================================================
   Gradient Text
   ================================================ */
.gradient-text {
  background: linear-gradient(135deg, #A855F7, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-blue {
  background: linear-gradient(135deg, #22D3EE, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================
   Dot Grid Decorative Background
   ================================================ */
.dot-bg {
  background-image: radial-gradient(rgba(168,85,247,0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ================================================
   Pagination
   ================================================ */
.pagination-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-1);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--font-body);
  transition: var(--transition);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active {
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  border-color: transparent;
  color: #fff;
}

/* ================================================
   Utility
   ================================================ */
.section-wrap    { padding: 60px 0; }
.section-wrap-sm { padding: 40px 0; }
.text-gradient {
  background: linear-gradient(135deg, #A855F7, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================
   Tool Detail Page
   ================================================ */
.tool-detail-wrap { padding: 50px 0 70px; }

.tool-content-card p,
.tool-content-card ol,
.tool-content-card ol li,
.tool-content-card ul li,
.pros-list li,
.cons-list li {
  font-size: 1.08rem !important;
  color: rgba(255,255,255,0.88) !important;
  line-height: 1.85 !important;
}
body.light-mode .tool-content-card p,
body.light-mode .tool-content-card ol li,
body.light-mode .tool-content-card ul li,
body.light-mode .pros-list li,
body.light-mode .cons-list li { color: rgba(26,21,53,0.85) !important; }

.tool-info-bar { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; }
.info-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50px;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.info-pill span   { color: #8B8AA7; }
.info-pill strong { color: #fff; font-weight: 600; }
.info-pill strong.green { color: #22C55E; }
body.light-mode .info-pill { background: rgba(124,58,237,0.06); border-color: rgba(124,58,237,0.15); }
body.light-mode .info-pill span   { color: #6B7280; }
body.light-mode .info-pill strong { color: #1A1535; }

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.screenshots-grid img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
  cursor: pointer;
}
.screenshots-grid img:hover {
  border-color: rgba(168,85,247,0.45);
  transform: scale(1.02);
}

.related-tools-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.related-tool-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  text-decoration: none;
  transition: 0.3s ease;
}
.related-tool-card:hover {
  border-color: rgba(168,85,247,0.35);
  background: rgba(168,85,247,0.06);
  transform: translateY(-3px);
}
.related-tool-card img   { width: 52px; height: 52px; border-radius: 12px; object-fit: cover; }
.related-tool-card .rtc-name { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: #fff; }
.related-tool-card .rtc-cat  { font-size: 11px; color: #8B8AA7; }
.related-tool-card .rtc-btn  { font-size: 12px; color: #A855F7; font-weight: 600; }
body.light-mode .related-tool-card { background: rgba(124,58,237,0.04); border-color: rgba(124,58,237,0.12); }
body.light-mode .related-tool-card .rtc-name { color: #1A1535; }

/* Rating row */
.tool-rating-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.star-rating     { font-size: 16px; }
.star-score      { color: #fff; font-weight: 700; margin-left: 4px; }
.star-count      { color: #8B8AA7; font-size: 13px; }
.tool-status     { color: #22C55E; font-size: 13px; }
.tool-status i   { font-size: 8px; margin-right: 4px; }

/* Nav login link */
.nav-login-link {
  color: #A855F7;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 4px;
}

/* Card icon accent */
.card-icon { color: #A855F7; }

/* How to use list */
.how-to-list { color: #9CA3AF; line-height: 2; padding-left: 20px; }
.how-to-list strong { color: #C084FC; }

/* Tip box */
.tip-box {
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 16px;
}
.tip-box p { margin: 0; color: #C084FC; font-size: 14px; }

/* Pricing cards */
.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.price-card-featured {
  background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(59,130,246,0.15));
  border-color: rgba(168,85,247,0.3);
}
.price-card-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.price-card-name.accent { color: #A855F7; }
.price-card-amount { font-size: 1.8rem; font-weight: 800; color: #fff; }
.price-card-amount.green { color: #22C55E; }
.price-card-amount .price-period { font-size: 14px; color: #9CA3AF; }
.price-card-desc { color: #9CA3AF; font-size: 13px; margin: 10px 0 0; }

/* Info table */
.info-table { width: 100%; color: #9CA3AF; font-size: 14px; }
.info-table td { padding: 10px 0; }
.info-table td:last-child { text-align: right; }
.info-table tr { border-bottom: 1px solid rgba(255,255,255,0.05); }
.info-table tr:last-child { border-bottom: none; }
.info-table .td-label { color: #8B8AA7; }
.info-table .td-value { color: #fff; }
.info-table .td-value.green { color: #22C55E; font-weight: 700; }

/* Similar tools list */
.similar-tool-item { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); transition: background .2s; text-decoration: none; }
.similar-tool-item:hover { background: rgba(255,255,255,0.08); }
.similar-tool-img,
.similar-tool-logo  { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.similar-tool-name { font-weight: 700; color: #fff; font-size: 14px; }
.similar-tool-cat  { color: #8B8AA7; font-size: 12px; }
.similar-tool-link { color: #A855F7; font-size: 12px; text-decoration: none; margin-left: auto; flex-shrink: 0; }
body.light-mode .similar-tool-name { color: #1A1535; }

/* btn-access full-width variant */
.btn-access-block { display: block; text-align: center; }

/* p spacing within tool-content-card */
.tool-content-card .p-mt { margin-top: 12px; }

/* ================================================
   404 Page
   ================================================ */
.error-page-wrap { min-height: calc(100vh - 200px); display: flex; align-items: center; position: relative; overflow: hidden; }
.error-container  { position: relative; z-index: 1; }
.error-content    { text-align: center; max-width: 580px; margin: 0 auto; padding: 60px 20px; }
.error-number { font-family: var(--font-display); font-size: clamp(6rem,20vw,10rem); font-weight: 800; line-height: 1; background: linear-gradient(135deg,#A855F7,#3B82F6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; user-select: none; }
.error-dots  { position: absolute; inset: 0; background-image: radial-gradient(rgba(168,85,247,0.1) 1px,transparent 1px); background-size: 24px 24px; pointer-events: none; }
.error-glow-1 { position: absolute; top: 20%; left: 20%; width: 300px; height: 300px; background: radial-gradient(circle,rgba(168,85,247,0.12) 0%,transparent 70%); border-radius: 50%; pointer-events: none; }
.error-glow-2 { position: absolute; bottom: 20%; right: 20%; width: 250px; height: 250px; background: radial-gradient(circle,rgba(59,130,246,0.1) 0%,transparent 70%); border-radius: 50%; pointer-events: none; }
.error-title  { font-family: var(--font-display); font-size: clamp(1.4rem,3vw,1.8rem); font-weight: 800; color: #fff; margin-bottom: 14px; }
.error-desc   { color: #9CA3AF; font-size: 15px; line-height: 1.7; margin-bottom: 36px; }
.error-links  { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 40px; }
.error-link-secondary { background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.1); color: #fff; padding: 10px 24px; border-radius: 50px; font-size: 13px; font-weight: 700; text-decoration: none; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.error-link-secondary:hover { border-color: rgba(168,85,247,0.4); color: #A855F7; }
.error-search-wrap { max-width: 420px; margin: 0 auto; }
.error-back-btn { background: none; border: none; color: #8B8AA7; font-size: 14px; cursor: pointer; margin-top: 28px; }

/* ================================================
   Article Detail Page
   ================================================ */
.article-body { max-width: 780px; }
.article-body p { color: var(--text-secondary); font-size: 15.5px; line-height: 1.85; margin-bottom: 20px; }
.article-body h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: #fff; margin: 32px 0 14px; }
.article-body h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: #C084FC; margin: 24px 0 12px; }
.article-body ul, .article-body ol { color: var(--text-secondary); font-size: 15.5px; line-height: 1.85; padding-left: 22px; margin-bottom: 20px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote { border-left: 3px solid #A855F7; padding: 14px 20px; background: rgba(168,85,247,0.06); border-radius: 0 10px 10px 0; margin: 24px 0; }
.article-body blockquote p { margin: 0; font-style: italic; color: #C084FC; }
.article-body img { width: 100%; border-radius: 12px; margin: 24px 0; border: 1px solid rgba(255,255,255,0.07); }
.article-highlight { background: rgba(168,85,247,0.08); border: 1px solid rgba(168,85,247,0.2); border-radius: 12px; padding: 20px 24px; margin: 24px 0; }
.article-highlight p { margin: 0; color: #C084FC; font-size: 14px; }
body.light-mode .article-body h2 { color: #1A1535; }
body.light-mode .article-body p, body.light-mode .article-body li { color: #4B5563; }
.article-meta-row  { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.article-main-title { font-family: var(--font-display); font-size: clamp(1.5rem,3.5vw,2rem); font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 20px; }
.article-hero-img  { width: 100%; border-radius: 16px; margin-bottom: 28px; border: 1px solid rgba(255,255,255,0.07); }
.article-tags      { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); }
.article-strong-accent { color: #C084FC; }
.author-row     { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 24px; }
.author-avatar  { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,#A855F7,#3B82F6); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-family: var(--font-display); flex-shrink: 0; }
.author-name    { color: #fff; font-weight: 600; font-size: 14px; }
.author-date    { color: #8B8AA7; font-size: 12px; }
.author-actions { margin-left: auto; display: flex; gap: 8px; }
.share-btn      { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: #9CA3AF; padding: 6px 14px; border-radius: 50px; font-size: 12px; cursor: pointer; }
.share-btn:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
.sidebar-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.07); }
body.light-mode .sidebar-card-title { color: #1A1535; border-bottom-color: rgba(0,0,0,0.08); }
.related-article-list  { display: flex; flex-direction: column; gap: 16px; }
.related-article-item  { display: flex; gap: 12px; text-decoration: none; align-items: flex-start; }
.related-article-thumb { width: 70px; height: 55px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.related-article-title { color: #fff; font-size: 13px; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.related-article-date  { color: #8B8AA7; font-size: 11px; }
body.light-mode .related-article-title { color: #1A1535; }
.newsletter-cta-card  { background: linear-gradient(135deg,rgba(168,85,247,0.12),rgba(59,130,246,0.12)); border: 1px solid rgba(168,85,247,0.2); border-radius: 16px; padding: 24px; text-align: center; }
.newsletter-cta-icon  { font-size: 28px; color: #A855F7; margin-bottom: 12px; display: block; }
.newsletter-cta-title { font-family: var(--font-display); color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.newsletter-cta-desc  { color: #9CA3AF; font-size: 13px; margin-bottom: 16px; }
.newsletter-cta-input { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 10px 14px; color: #fff; font-size: 13px; margin-bottom: 10px; font-family: var(--font-body); }

.toc-card-wrap { width: 100%; }
.toc-card  { position: fixed; top: 110px; width: 295px; max-height: calc(100vh - 130px); overflow-y: auto; }
@media (max-width: 991px) { .toc-card { position: static; width: auto; max-height: none; overflow-y: visible; } }
.article-body h2, .article-body h3 { scroll-margin-top: 100px; }
.toc-list  { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.toc-item  { border-left: 2px solid transparent; }
.toc-link  { display: block; padding: 7px 10px; color: #8B8AA7; font-size: 13px; line-height: 1.4; text-decoration: none; border-radius: 6px; transition: color .15s, background .15s; }
.toc-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
.toc-link.active { color: #A855F7; font-weight: 600; }
.toc-item:has(.toc-link.active) { border-left-color: #A855F7; }
body.light-mode .toc-link { color: #6B7280; }
body.light-mode .toc-link:hover { color: #1A1535; background: rgba(0,0,0,0.04); }
body.light-mode .toc-link.active { color: #A855F7; }

/* ================================================
   Auth Pages (Login / Daftar / Lupa Password)
   ================================================ */
.auth-bg-glow        { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; }
.auth-bg-glow-purple { top: 10%; right: 5%; width: 400px; height: 400px; background: radial-gradient(circle,rgba(168,85,247,0.08),transparent 70%); }
.auth-bg-glow-blue   { bottom: 10%; left: 5%; width: 300px; height: 300px; background: radial-gradient(circle,rgba(59,130,246,0.07),transparent 70%); }
.auth-section-padded { padding: 50px 0 60px; }
.auth-label-flex     { display: flex; justify-content: space-between; }
.auth-label-link     { font-weight: 400; font-size: 13px; }
.auth-remember-row   { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.auth-remember-checkbox { width: 16px; height: 16px; accent-color: #A855F7; cursor: pointer; }
.auth-remember-label { color: #9CA3AF; font-size: 14px; cursor: pointer; margin: 0; }
.auth-social-row     { display: flex; gap: 12px; justify-content: center; margin-bottom: 20px; }
.auth-social-btn     { flex: 1; background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 12px; color: #fff; cursor: pointer; font-family: var(--font-body); font-size: 14px; text-decoration: none; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; }
.auth-social-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); text-decoration: none; }
.icon-google   { color: #EA4335; font-size: 16px; }
.icon-facebook { color: #1877F2; font-size: 16px; }
.auth-demo-link   { text-align: center; margin-top: 12px; }
.auth-demo-link a { color: #555470; font-size: 12px; text-decoration: none; }
.auth-agree-row      { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
.auth-agree-checkbox { width: 16px; height: 16px; accent-color: #A855F7; cursor: pointer; margin-top: 2px; flex-shrink: 0; }
.auth-agree-label    { color: #9CA3AF; font-size: 13px; cursor: pointer; margin: 0; line-height: 1.5; }
.auth-terms-note     { color: #9CA3AF; font-size: 12px; line-height: 1.5; margin: -8px 0 20px; }
.auth-benefits       { display: flex; flex-direction: column; gap: 16px; }
.auth-benefit-item   { display: flex; align-items: flex-start; gap: 16px; }
.auth-benefit-icon   { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.auth-benefit-icon-purple { background: rgba(168,85,247,0.15); }
.auth-benefit-icon-blue   { background: rgba(59,130,246,0.15); }
.auth-benefit-icon-cyan   { background: rgba(34,211,238,0.12); }
.auth-benefit-icon-green  { background: rgba(34,197,94,0.12); }
.icon-purple { color: #A855F7; font-size: 18px; }
.icon-blue   { color: #3B82F6; font-size: 18px; }
.icon-cyan   { color: #22D3EE; font-size: 18px; }
.icon-green  { color: #22C55E; font-size: 18px; }
.auth-benefit-title  { font-family: var(--font-display); font-weight: 700; color: #fff; margin-bottom: 4px; }
.auth-benefit-desc   { color: #9CA3AF; font-size: 14px; }
.auth-heading        { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.auth-subheading     { color: #9CA3AF; font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.register-benefits-panel { display: flex; flex-direction: column; justify-content: center; align-self: stretch; }

/* ================================================
   Deals Page
   ================================================ */
.deal-card       { background: var(--surface-1); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-card); overflow: hidden; transition: var(--transition); height: 100%; position: relative; }
.deal-card:hover { transform: translateY(-5px); border-color: rgba(245,158,11,0.4); box-shadow: 0 10px 36px rgba(245,158,11,0.12); }
.deal-badge-wrap { position: absolute; top: 14px; right: 14px; z-index: 2; }
.deal-percent    { background: linear-gradient(135deg,#F59E0B,#EF4444); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; padding: 6px 14px; border-radius: 50px; }
.deal-card-body  { padding: 22px; }
.deal-timer      { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); border-radius: 8px; padding: 8px 14px; display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.deal-timer i    { color: #F59E0B; font-size: 14px; }
.deal-timer span { color: #F59E0B; font-size: 13px; font-weight: 600; }
.deal-price-old  { color: #6B7280; font-size: 13px; text-decoration: line-through; }
.deal-price-new  { color: #22C55E; font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; }
body.light-mode .deal-card  { background: #fff; border-color: rgba(245,158,11,0.15); }
body.light-mode .deal-timer { background: rgba(245,158,11,0.08); }
.deal-card-img   { width: 100%; height: 180px; object-fit: cover; }
.deal-tool-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.deal-tool-logo   { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.deal-tool-name   { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 15px; }
.deal-tool-cat    { color: #8B8AA7; font-size: 12px; }
.deal-card-desc   { color: #9CA3AF; font-size: 13.5px; line-height: 1.6; margin-bottom: 16px; }
.deal-price-row   { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.deal-cta-full    { display: block; text-align: center; padding: 10px; }
.affiliate-disclosure { background: rgba(59,130,246,0.06); border: 1px solid rgba(59,130,246,0.2); border-radius: 10px; padding: 12px 18px; margin-bottom: 28px; display: flex; align-items: flex-start; gap: 10px; }
.disclosure-icon  { color: #60A5FA; margin-top: 2px; flex-shrink: 0; }
.disclosure-text  { color: #9CA3AF; font-size: 13px; margin: 0; line-height: 1.6; }
.disclosure-link  { color: #A855F7; text-decoration: none; }
.disclosure-text strong { color: #60A5FA; }
.newsletter-deals       { text-align: center; margin-top: 56px; padding: 48px 24px; background: linear-gradient(135deg,rgba(245,158,11,0.08),rgba(239,68,68,0.08)); border: 1px solid rgba(245,158,11,0.2); border-radius: 20px; }
.newsletter-deals-icon  { font-size: 32px; color: #F59E0B; margin-bottom: 16px; display: block; }
.newsletter-deals-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.newsletter-deals-desc  { color: #9CA3AF; font-size: 15px; max-width: 440px; margin: 0 auto 24px; }

/* ================================================
   Legal Pages
   ================================================ */
.legal-body h2 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: #fff; margin: 32px 0 12px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.legal-body p, .legal-body li { color: var(--text-secondary); font-size: 15px; line-height: 1.85; margin-bottom: 12px; }
.legal-body ul { padding-left: 22px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a  { color: #A855F7; text-decoration: none; }
.legal-body strong { color: #C084FC; }
body.light-mode .legal-body h2 { color: #1A1535; border-color: rgba(0,0,0,0.08); }
body.light-mode .legal-body p, body.light-mode .legal-body li { color: #4B5563; }
.legal-nav-links         { text-align: center; margin-top: 24px; }
.legal-nav-links a       { font-size: 14px; text-decoration: none; }
.legal-nav-links .link-primary { color: #A855F7; margin-right: 24px; }
.legal-nav-links .link-muted   { color: #9CA3AF; }

/* ================================================
   Kontak Page
   ================================================ */
.card-section-title    { font-family: var(--font-display); color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.card-section-title-sm { font-family: var(--font-display); color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.07); }
body.light-mode .card-section-title, body.light-mode .card-section-title-sm { color: #1A1535; border-bottom-color: rgba(0,0,0,0.08); }
.form-label      { display: block; color: #9CA3AF; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; }
.select-cursor   { cursor: pointer; }
.textarea-resize { resize: vertical; min-height: 120px; }
.contact-success       { display: none; text-align: center; padding: 24px; }
.contact-success-icon  { font-size: 48px; color: #22C55E; margin-bottom: 16px; display: block; }
.contact-success-title { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.contact-info-cards   { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.contact-card         { border-radius: 14px; padding: 20px; display: flex; align-items: flex-start; gap: 16px; }
.contact-card-purple  { background: rgba(168,85,247,0.06); border: 1px solid rgba(168,85,247,0.15); }
.contact-card-blue    { background: rgba(59,130,246,0.06); border: 1px solid rgba(59,130,246,0.15); }
.contact-card-green   { background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.15); }
.contact-icon-wrap        { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon-wrap-purple { background: rgba(168,85,247,0.15); }
.contact-icon-wrap-blue   { background: rgba(59,130,246,0.15); }
.contact-icon-wrap-green  { background: rgba(34,197,94,0.12); }
.contact-card-title { font-family: var(--font-display); font-weight: 700; color: #fff; margin-bottom: 4px; }
.contact-card-value { color: #9CA3AF; font-size: 14px; }
.contact-card-sub   { color: #8B8AA7; font-size: 12px; margin-top: 2px; }
body.light-mode .contact-card-title { color: #1A1535; }
.faq-items    { display: flex; flex-direction: column; gap: 14px; }
.faq-question { color: #C084FC; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.faq-answer   { color: #9CA3AF; font-size: 13px; line-height: 1.6; }

.faq-accordion-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-accordion-item:last-child { margin-bottom: 0; }
.faq-accordion-item:has(.faq-accordion-button:not(.collapsed)) {
  border-color: rgba(168,85,247,0.35);
  background: rgba(168,85,247,0.06);
}
.faq-accordion-button {
  background: transparent;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 18px 22px;
  box-shadow: none !important;
  transition: var(--transition);
}
.faq-accordion-button:hover { color: #C084FC; }
.faq-accordion-button:not(.collapsed) { color: #C084FC; background: transparent; }
.faq-accordion-button::after {
  filter: none;
  background-image: none;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f078";
  font-size: 13px;
  color: #A855F7;
  width: auto;
  height: auto;
  background-size: 0;
  transition: transform 0.3s ease;
}
.faq-accordion-button:not(.collapsed)::after { transform: rotate(180deg); }
.faq-accordion-body {
  color: #9CA3AF;
  font-size: 14px;
  line-height: 1.75;
  padding: 0 22px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: -1px;
  padding-top: 14px;
}
body.light-mode .faq-accordion-item { background: rgba(124,58,237,0.03); border-color: rgba(0,0,0,0.08); }
body.light-mode .faq-accordion-item:has(.faq-accordion-button:not(.collapsed)) {
  border-color: rgba(124,58,237,0.3);
  background: rgba(124,58,237,0.06);
}
body.light-mode .faq-accordion-button { color: #1A1535; background: transparent; }
body.light-mode .faq-accordion-button:hover { color: #7C3AED; }
body.light-mode .faq-accordion-button:not(.collapsed) { color: #7C3AED; background: transparent; }
body.light-mode .faq-accordion-button::after { color: #7C3AED; }
body.light-mode .faq-accordion-body { color: #4B5563; border-top-color: rgba(0,0,0,0.06); }

/* ================================================
   Belajar Page
   ================================================ */
.section-heading { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.section-sub     { color: #9CA3AF; font-size: 14px; }
.kamus-category-sidebar .filter-tabs     { flex-direction: column; gap: 6px; }
.kamus-category-sidebar .filter-tab-btn { text-align: left; }

/* Dashboard logo size */
.dash-logo-lg { width: 80px; height: 80px; border-radius: 16px; }

/* Featured article (berita.html) */
.featured-article-card  { background: linear-gradient(135deg,#171530,#1C1A38); border: 1px solid rgba(168,85,247,0.2); border-radius: 20px; overflow: hidden; margin-bottom: 32px; }
.featured-article-img   { width: 100%; height: 300px; object-fit: cover; }
.featured-article-body  { padding: 36px; }
.featured-article-meta  { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.featured-article-date  { color: #8B8AA7; font-size: 12px; }
.featured-badge  { background: rgba(239,68,68,0.15); color: #F87171; border: 1px solid rgba(239,68,68,0.2); font-size: 11px; font-weight: 700; padding: 2px 10px; border-radius: 50px; }
.featured-article-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: #fff; line-height: 1.4; margin-bottom: 16px; }
.featured-article-desc  { color: #9CA3AF; font-size: 14px; line-height: 1.7; margin-bottom: 24px; }

/* Lupa Password page */
.forgot-icon-center  { text-align: center; margin-bottom: 24px; }
.forgot-icon-wrap    { width: 64px; height: 64px; border-radius: 50%; background: rgba(168,85,247,0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.forgot-icon         { font-size: 24px; color: #A855F7; }
.forgot-step2        { display: none; text-align: center; }
.forgot-success-wrap { width: 72px; height: 72px; border-radius: 50%; background: rgba(34,197,94,0.12); border: 2px solid rgba(34,197,94,0.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.forgot-success-icon { font-size: 28px; color: #22C55E; }
.forgot-info-box     { background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.15); border-radius: 10px; padding: 14px; margin-bottom: 24px; }
.forgot-info-box p   { color: #22C55E; font-size: 13px; margin: 0; }
.forgot-cta-full     { display: block; text-align: center; padding: 13px; }
.forgot-resend-row   { margin-top: 16px; }
.forgot-resend-text  { color: #8B8AA7; font-size: 13px; }
.forgot-resend-btn   { background: none; border: none; color: #A855F7; font-size: 13px; font-weight: 600; cursor: pointer; padding: 0; }

/* Dashboard panels */
.dash-card-title      { font-family: var(--font-display); color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.dash-activity-list   { display: flex; flex-direction: column; gap: 12px; }
.dash-activity-item   { display: flex; align-items: center; gap: 16px; padding: 12px; background: rgba(255,255,255,0.03); border-radius: 10px; }
.dash-activity-logo   { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.dash-activity-icon   { width: 40px; height: 40px; border-radius: 10px; background: rgba(168,85,247,0.15); display: flex; align-items: center; justify-content: center; color: #A855F7; font-size: 16px; flex-shrink: 0; }
.dash-activity-info   { flex: 1; }
.dash-activity-title  { color: #fff; font-size: 14px; font-weight: 600; }
.dash-activity-date   { color: #8B8AA7; font-size: 12px; }
.dash-security-list   { display: flex; flex-direction: column; gap: 12px; }
.dash-security-item   { display: flex; justify-content: space-between; align-items: center; padding: 14px; background: rgba(255,255,255,0.03); border-radius: 10px; }
.dash-security-label  { color: #fff; font-size: 14px; font-weight: 600; }
.dash-security-sub    { color: #8B8AA7; font-size: 12px; }
.dash-btn-edit        { background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.2); color: #A855F7; padding: 6px 14px; border-radius: 50px; font-size: 12px; cursor: pointer; }
.dash-btn-enable      { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); color: #22C55E; padding: 6px 14px; border-radius: 50px; font-size: 12px; cursor: pointer; }
.dash-btn-logout      { width: 100%; background: rgba(239,68,68,0.1); border: 1.5px solid rgba(239,68,68,0.2); color: #F87171; padding: 12px; border-radius: 10px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; margin-top: 8px; }
.dash-koleksi-actions { display: flex; gap: 8px; }
.dash-btn-delete      { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: #F87171; padding: 6px 14px; border-radius: 50px; font-size: 12px; cursor: pointer; }
.dash-add-new         { display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(168,85,247,0.05); border: 2px dashed rgba(168,85,247,0.25); border-radius: 16px; padding: 40px 20px; text-align: center; text-decoration: none; min-height: 200px; transition: var(--transition); }
.dash-add-new:hover   { border-color: rgba(168,85,247,0.5); }
.dash-add-icon  { font-size: 32px; color: #A855F7; margin-bottom: 12px; }
.dash-add-title { font-family: var(--font-display); font-weight: 700; color: #A855F7; font-size: 15px; }
.dash-add-sub   { color: #8B8AA7; font-size: 13px; margin-top: 4px; }

/* Koleksi count badge */
.koleksi-more-badge { width: 34px; height: 34px; border-radius: 8px; background: rgba(168,85,247,0.15); display: flex; align-items: center; justify-content: center; color: #A855F7; font-size: 12px; font-weight: 700; }

/* Button outline variant */
.btn-outline-auth { background: none !important; border: 1.5px solid rgba(168,85,247,0.5) !important; color: #A855F7 !important; }

/* CTA banner (koleksi.html purple variant) */
.cta-banner-purple { text-align: center; margin-top: 56px; padding: 48px; background: linear-gradient(135deg,rgba(168,85,247,0.1),rgba(59,130,246,0.1)); border: 1px solid rgba(168,85,247,0.2); border-radius: 20px; }
.cta-banner-title  { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 12px; }

/* Utility */
.btn-full { width: 100%; }

/* Collection meta bar (koleksi-detail.html) */
.collection-meta     { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; padding: 20px 24px; background: rgba(168,85,247,0.06); border: 1px solid rgba(168,85,247,0.15); border-radius: 16px; }
.collection-meta-img { width: 80px; height: 60px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.collection-meta-info { flex: 1; }
.collection-meta-title { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.1rem; margin-bottom: 4px; }
.collection-meta-sub   { color: #9CA3AF; font-size: 14px; }
.back-link { text-align: center; margin-top: 48px; }
.back-link a { color: #A855F7; text-decoration: none; font-size: 15px; font-weight: 600; }

/* ================================================
   Responsive
   ================================================ */
@media (max-width: 991px) {
  .pros-cons-grid  { grid-template-columns: 1fr; }
  .dashboard-stats { margin-left: 0; }
}
@media (max-width: 767px) {
  .page-header-area { padding: 70px 0 40px; }
  .auth-card        { padding: 28px 20px; }
  .tool-detail-header { gap: 16px; }
  .tool-detail-logo   { width: 64px; height: 64px; }
  .filter-tabs      { gap: 6px; }
  .filter-tab-btn   { padding: 6px 14px; font-size: 13px; }
  .dash-tabs        { width: 100%; }
  .dash-tab         { padding: 8px 16px; font-size: 13px; }
  .screenshots-grid    { grid-template-columns: 1fr 1fr; }
  .related-tools-grid  { flex-direction: column; }
}
@media (max-width: 480px) {
  .screenshots-grid    { grid-template-columns: 1fr; }
}
