/* ═══════════════════════════════════════════════
   RESET & VARIABLES
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --blue:       #0052A5;
  --blue-50:    #EFF6FF;
  --blue-100:   #DBEAFE;
  --blue-600:   #1D4ED8;
  --sau:        #006633;
  --sau-50:     #F0FDF4;
  --sau-100:    #DCFCE7;

  /* Legacy aliases (admin/community pages) */
  --subu:       #0052A5;
  --subu-pale:  #EFF6FF;

  /* Neutrals */
  --white:    #FFFFFF;
  --bg:       #F8FAFC;
  --border:   #E2E8F0;
  --border-2: #F1F5F9;

  /* Text */
  --ink:   #0F172A;
  --ink-2: #475569;
  --ink-3: #94A3B8;

  /* Semantic */
  --success: #059669;
  --error:   #DC2626;
  --warning: #D97706;

  /* Shape */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Shadow */
  --sh-xs: 0 1px 2px rgba(0,0,0,0.05);
  --sh-sm: 0 1px 4px rgba(0,0,0,0.06);
  --sh:    0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --sh-md: 0 4px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
  --sh-lg: 0 10px 32px rgba(0,0,0,0.09), 0 4px 12px rgba(0,0,0,0.04);
  --sh-blue: 0 4px 14px rgba(0,82,165,0.25);

  /* Layout */
  --nav-h: 60px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-icon {
  width: 34px; height: 34px;
  background: var(--blue);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; color: #fff; flex-shrink: 0;
  letter-spacing: -0.5px;
}
.brand-icon.small  { width: 28px; height: 28px; font-size: 12px; border-radius: 7px; }
.brand-icon.large  { width: 52px; height: 52px; font-size: 20px; border-radius: 13px; }

.brand-logo-img { height: 34px; width: auto; flex-shrink: 0; object-fit: contain; mix-blend-mode: multiply; }
.brand-logo-img.large { height: 52px; }
.brand-logo-img.hero  { height: 72px; margin-bottom: 1.5rem; }

.brand-texts { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text  { font-size: 1.05rem; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.brand-sub   { font-size: 0.6rem; color: var(--ink-3); font-weight: 500; margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: 2px; }

.nav-link {
  padding: 0.42rem 0.9rem;
  color: var(--ink-2); font-size: 0.86rem; font-weight: 500;
  border-radius: var(--r-sm);
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover { background: var(--bg); color: var(--ink); }

.nav-btn {
  background: var(--blue); color: #fff;
  border: none; padding: 0.46rem 1.1rem;
  border-radius: var(--r-sm); font-size: 0.84rem; font-weight: 600;
  cursor: pointer; transition: background 0.15s, transform 0.1s;
  margin-left: 0.5rem; font-family: inherit;
}
.nav-btn:hover { background: var(--blue-600); transform: translateY(-1px); }
.nav-btn.wa { background: #25D366; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3); }
.nav-btn.wa:hover { background: #1fb457; }
.nav-btn.danger { background: var(--error); }
.nav-btn.danger:hover { background: #b91c1c; }

.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  width: 36px; height: 36px;
  background: none; border: 1px solid var(--border);
  border-radius: var(--r-sm); cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--ink-2); border-radius: 2px;
}

.nav-mobile {
  display: none; flex-direction: column;
  padding: 0.5rem 1.5rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.7rem 0; color: var(--ink-2); font-size: 0.9rem; font-weight: 500;
  border-bottom: 1px solid var(--border-2); transition: color 0.15s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--blue); }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero-new {
  background: linear-gradient(180deg, #EEF2FF 0%, #F5F7FF 35%, #FFFFFF 75%);
  border-bottom: 1px solid var(--border);
  padding: 4rem 1.5rem 3.5rem;
  text-align: center;
}

.hero-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Partner Bar */
.partner-bar {
  display: inline-flex; align-items: center;
  gap: 1.25rem; flex-wrap: wrap; justify-content: center;
  padding: 0.7rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  box-shadow: var(--sh-xs);
}

.partner-item { display: flex; align-items: center; gap: 0.6rem; }
.partner-logo { width: 36px; height: 36px; flex-shrink: 0; }
.partner-logo svg { width: 100%; height: 100%; }
.partner-info { display: flex; flex-direction: column; text-align: left; line-height: 1.2; }
.partner-name { font-size: 0.74rem; font-weight: 700; color: var(--ink); }
.partner-type { font-size: 0.62rem; color: var(--ink-3); }
.partner-x { font-size: 1rem; color: var(--ink-3); font-weight: 300; }

/* Hero Content */
.hero-content-new { }

.hero-title-new {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.gradient-text-new {
  background: linear-gradient(135deg, var(--blue) 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc-new {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

.hero-ctas {
  display: flex; gap: 0.75rem;
  justify-content: center; flex-wrap: wrap;
}

.cta-primary {
  padding: 0.75rem 1.75rem;
  background: var(--blue); color: #fff;
  border-radius: var(--r); font-weight: 700; font-size: 0.9rem;
  box-shadow: var(--sh-blue);
  transition: background 0.15s, transform 0.1s;
  display: inline-flex; align-items: center; gap: 0.4rem;
  border: none; cursor: pointer; font-family: inherit;
}
.cta-primary:hover { background: var(--blue-600); transform: translateY(-1px); }

.cta-secondary {
  padding: 0.75rem 1.75rem;
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--ink-2); border-radius: var(--r); font-weight: 600; font-size: 0.9rem;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.cta-secondary:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-50); }

/* Apply button in communities */
.cta-apply {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 1.1rem;
  padding: 0.55rem 1.3rem;
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--ink-2); border-radius: var(--r); font-weight: 600; font-size: 0.85rem;
  cursor: pointer; font-family: inherit;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.cta-apply:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-50); }

/* Hero — işletmeler için reklam başvurusu */
.hero-biz {
  margin-top: 1.3rem;
  font-size: 0.84rem;
  color: var(--ink-3);
}
.hero-biz a {
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed rgba(37, 211, 102, 0.5);
  transition: border-color 0.15s, color 0.15s;
}
.hero-biz a:hover { border-bottom-color: #25D366; }

/* Hero Stats */
.hero-stats-new {
  display: inline-flex; align-items: center; gap: 2.5rem;
  padding: 1rem 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.hstat { text-align: center; }
.hstat-n { display: block; font-size: 1.75rem; font-weight: 900; color: var(--blue); letter-spacing: -0.03em; line-height: 1; }
.hstat-l { font-size: 0.67rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; display: block; }
.hstat-div { width: 1px; height: 36px; background: var(--border); }

/* ═══════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════ */
.section { padding: 5rem 0; }
.about-section { background: var(--bg); }
.communities-section-new { background: var(--white); }

.section-head { text-align: center; margin-bottom: 3rem; }

.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  color: var(--blue); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.section-title-main {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800; color: var(--ink);
  letter-spacing: -0.02em; margin-bottom: 0.5rem;
}

.section-sub { color: var(--ink-2); font-size: 0.93rem; }

/* ═══════════════════════════════════════════════
   UNIVERSITY CARDS — NEW SIDE-BY-SIDE GRID
═══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-card2 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.about-card2:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
}
.subu-card2:hover { border-color: var(--blue); }
.sau-card2:hover  { border-color: var(--sau); }

.acard-header {
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.blue-header  { background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%); }
.green-header { background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%); }

.acard-circle {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 900;
  flex-shrink: 0; letter-spacing: 0.02em;
  box-shadow: var(--sh-sm);
}
.blue-circle  { background: var(--blue); color: #fff; }
.green-circle { background: var(--sau); color: #fff; }

.acard-nums { display: flex; gap: 1.5rem; flex: 1; justify-content: center; }
.astat2 { text-align: center; }
.as2-v { display: block; font-size: 1.5rem; font-weight: 900; color: var(--blue); line-height: 1.1; letter-spacing: -0.02em; }
.as2-v.green-v { color: var(--sau); }
.as2-k { display: block; font-size: 0.62rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; }

.acard-body { padding: 1.5rem 1.75rem 1.75rem; }

.about-tag {
  display: inline-block; padding: 0.18rem 0.7rem;
  border-radius: 50px; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.04em; margin-bottom: 0.65rem;
}
.blue-tag  { background: var(--blue-50);  border: 1px solid var(--blue-100); color: var(--blue); }
.green-tag { background: var(--sau-50);   border: 1px solid var(--sau-100);  color: var(--sau); }

.about-heading { font-size: 1.2rem; font-weight: 800; color: var(--ink); margin-bottom: 0.75rem; letter-spacing: -0.01em; line-height: 1.3; }
.about-text { color: var(--ink-2); font-size: 0.875rem; line-height: 1.75; margin-bottom: 1.1rem; }

.about-features {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem;
}
.afeat {
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.28rem 0.65rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-sm); font-size: 0.76rem; color: var(--ink-2);
}

.about-link {
  display: inline-flex; align-items: center; gap: 0.2rem;
  font-size: 0.84rem; font-weight: 600;
  transition: opacity 0.15s;
}
.about-link:hover { opacity: 0.7; }
.blue-link  { color: var(--blue); }
.green-link { color: var(--sau); }

/* Legacy about-card styles (kept for any remaining usage) */
.about-card { display: none; }

/* ═══════════════════════════════════════════════
   COMMUNITIES
═══════════════════════════════════════════════ */
.filter-bar {
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}

.search-wrap {
  position: relative; flex: 1; min-width: 180px; max-width: 320px;
}
.si {
  position: absolute; left: 0.8rem; top: 50%; transform: translateY(-50%);
  width: 15px; height: 15px; color: var(--ink-3); pointer-events: none;
}
.search-input-new {
  width: 100%; padding: 0.6rem 0.85rem 0.6rem 2.4rem;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); color: var(--ink); font-size: 0.86rem;
  outline: none; font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.search-input-new:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,82,165,0.1); }
.search-input-new::placeholder { color: var(--ink-3); }

.filter-tabs-new { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.ftab {
  padding: 0.35rem 0.8rem; border-radius: 50px;
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--ink-2); font-size: 0.78rem; font-weight: 500;
  cursor: pointer; font-family: inherit;
  transition: all 0.15s;
}
.ftab:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-50); }
.ftab.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* Community Grid */
.communities-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.com-card-new {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--sh-xs);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.com-card-new:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: var(--blue-100);
}

.com-logo-link {
  position: relative; display: block;
  height: 140px; overflow: hidden; cursor: pointer;
  background: linear-gradient(160deg, var(--blue-50) 0%, #e8f4fd 100%);
}
.com-logo-new {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.com-logo-new img { max-width: 65%; max-height: 65%; object-fit: contain; }
.cf { font-size: 2.8rem; font-weight: 900; color: var(--blue); opacity: 0.5; }
.com-logo-link:hover .com-logo-new { transform: scale(1.05); }

.com-logo-overlay {
  position: absolute; inset: 0;
  background: rgba(0,82,165,0.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.com-logo-overlay span { color: #fff; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.02em; }
.com-logo-link:hover .com-logo-overlay { opacity: 1; }

.com-card-body { padding: 1.1rem; display: flex; flex-direction: column; flex: 1; gap: 0.5rem; }

.com-card-top { display: flex; flex-direction: column; gap: 0.3rem; }
.com-card-name { font-size: 0.95rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
.com-cat-badge {
  display: inline-block; align-self: flex-start;
  background: var(--blue-50); border: 1px solid var(--blue-100);
  color: var(--blue); padding: 0.1rem 0.5rem;
  border-radius: 5px; font-size: 0.67rem; font-weight: 600;
}

.com-card-desc { font-size: 0.8rem; color: var(--ink-2); line-height: 1.55; flex: 1; }

.com-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 0.55rem; border-top: 1px solid var(--border-2);
  font-size: 0.75rem; color: var(--ink-3);
}

.com-detail-btn {
  display: block; margin-top: 0.45rem;
  padding: 0.5rem 1rem; text-align: center;
  background: var(--bg); border: 1px solid var(--border);
  color: var(--ink-2); border-radius: var(--r-sm);
  font-size: 0.79rem; font-weight: 600;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.com-detail-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer-new {
  background: #0F172A;
  padding: 3.5rem 0 1.75rem;
  color: #94A3B8;
}

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1.5rem;
}
.footer-brand-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-brand { display: flex; align-items: center; gap: 0.65rem; }
.footer-brand-text,
.footer-brand .brand-text { font-size: 1.05rem; font-weight: 800; color: var(--white) !important; }
.footer-brand-col p { font-size: 0.82rem; color: #64748B; line-height: 1.6; max-width: 240px; }
.footer-partners { display: flex; align-items: center; gap: 0.5rem; }

.fp-tag {
  background: rgba(0,82,165,0.2); border: 1px solid rgba(0,82,165,0.35);
  color: #93C5FD; padding: 0.18rem 0.6rem; border-radius: 5px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.03em;
}
.fp-tag.green {
  background: rgba(0,102,51,0.2); border-color: rgba(0,102,51,0.35);
  color: #86EFAC;
}
.fp-x { color: #334155; font-size: 0.75rem; }

.footer-links-col { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-links-col h4 {
  font-size: 0.72rem; font-weight: 700; color: #475569;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem;
}
.footer-links-col a { font-size: 0.82rem; color: #64748B; transition: color 0.15s; }
.footer-links-col a:hover { color: var(--white); }

.footer-bottom { font-size: 0.74rem; color: #334155; text-align: center; }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1/-1; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   STATE: LOADING / EMPTY / ERROR
═══════════════════════════════════════════════ */
.loading-state, .empty-state, .error-state {
  grid-column: 1/-1; text-align: center;
  padding: 4rem 2rem; color: var(--ink-3);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.spinner {
  width: 32px; height: 32px;
  border: 3px solid var(--border); border-top-color: var(--blue);
  border-radius: 50%; animation: spin 0.75s linear infinite;
}
.spinner.large-spin { width: 48px; height: 48px; border-width: 4px; }
@keyframes spin { to { transform: rotate(360deg); } }

.loading-full {
  min-height: 60vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  color: var(--ink-3);
}

/* ═══════════════════════════════════════════════
   ADMIN / AUTH
═══════════════════════════════════════════════ */
.auth-screen {
  min-height: 100vh; display: flex;
  align-items: center; justify-content: center;
  padding: 2rem 1rem;
  background: linear-gradient(160deg, var(--blue-50) 0%, var(--bg) 60%);
}
.auth-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2.5rem;
  width: 100%; max-width: 440px;
  box-shadow: var(--sh-lg);
}
.auth-logo { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.auth-title { text-align: center; font-size: 1.4rem; font-weight: 800; color: var(--ink); margin-bottom: 0.4rem; }
.auth-subtitle { text-align: center; color: var(--ink-2); font-size: 0.86rem; margin-bottom: 2rem; line-height: 1.55; }
.auth-note { text-align: center; color: var(--ink-3); font-size: 0.76rem; margin-top: 1.5rem; line-height: 1.6; }

/* Forms */
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink-2); margin-bottom: 0.35rem; }
.form-input {
  width: 100%; padding: 0.68rem 0.9rem;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-sm); color: var(--ink); font-size: 0.875rem;
  outline: none; transition: border-color 0.15s, box-shadow 0.15s; font-family: inherit;
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,82,165,0.1); }
.form-input::placeholder { color: var(--ink-3); }
.form-input.small { padding: 0.45rem 0.7rem; font-size: 0.82rem; }
textarea.form-input { resize: vertical; }
.input-wrapper { position: relative; }
.toggle-pass {
  position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; font-size: 1rem; color: var(--ink-3);
}
.toggle-pass:hover { color: var(--ink-2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-actions {
  display: flex; justify-content: flex-end; gap: 0.75rem;
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid var(--border-2);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.65rem 1.4rem; border-radius: var(--r-sm);
  font-size: 0.875rem; font-weight: 600; cursor: pointer; border: none;
  transition: all 0.15s; font-family: inherit; text-decoration: none;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn.full-width { width: 100%; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--sh-blue); }
.btn-primary:hover:not(:disabled) { background: var(--blue-600); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; border: 1.5px solid var(--border);
  color: var(--ink-2);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-50); }
.btn-spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.75s linear infinite;
}
.btn-icon {
  background: none; border: none; cursor: pointer;
  padding: 0.35rem 0.45rem; border-radius: var(--r-sm);
  font-size: 1rem; transition: background 0.15s; opacity: 0.65; flex-shrink: 0;
}
.btn-icon:hover { background: var(--bg); opacity: 1; }
.btn-icon.danger:hover { background: #FEE2E2; }

/* Alerts */
.alert { padding: 0.7rem 1rem; border-radius: var(--r-sm); font-size: 0.84rem; margin-bottom: 1rem; line-height: 1.5; }
.alert-error   { background: #FEF2F2; border: 1px solid #FECACA; color: var(--error); }
.alert-success { background: #F0FDF4; border: 1px solid #BBF7D0; color: var(--success); }

/* Dashboard */
.dashboard-header {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  background: linear-gradient(160deg, var(--blue-50) 0%, var(--white) 70%);
}
.dh-left { display: flex; align-items: center; gap: 1.25rem; }
.dh-logo {
  width: 68px; height: 68px; border-radius: 18px; overflow: hidden;
  background: var(--white); border: 2px solid var(--border);
  box-shadow: var(--sh);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 800; color: var(--blue);
}
.dh-logo img { width: 100%; height: 100%; object-fit: cover; }
.dh-name { font-size: 1.4rem; font-weight: 800; color: var(--ink); margin-bottom: 0.3rem; letter-spacing: -0.02em; }
.dh-meta { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; font-size: 0.82rem; color: var(--ink-2); }
.dot { color: var(--border); }
.dh-badge {
  background: var(--blue-50); color: var(--blue);
  padding: 0.15rem 0.5rem; border-radius: 5px; font-size: 0.68rem; font-weight: 600;
}

.tabs-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: var(--nav-h); z-index: 50;
}
.tabs { display: flex; overflow-x: auto; }
.tab {
  padding: 0.85rem 1.2rem; background: none; border: none;
  color: var(--ink-2); font-size: 0.85rem; font-weight: 500;
  cursor: pointer; border-bottom: 2px solid transparent;
  transition: all 0.15s; white-space: nowrap; font-family: inherit;
}
.tab:hover { color: var(--ink); background: var(--bg); }
.tab.active { color: var(--blue); border-bottom-color: var(--blue); font-weight: 600; }

.panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.panel-header h2 { font-size: 1.1rem; font-weight: 700; color: var(--ink); }
.section-title { font-size: 0.82rem; font-weight: 600; color: var(--ink-2); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }

.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.5rem; box-shadow: var(--sh-xs);
}
.card-title { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 1.2rem; }
.empty-card { padding: 3rem 1rem; text-align: center; color: var(--ink-3); font-size: 0.87rem; }

.event-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r);
  margin-bottom: 0.65rem; box-shadow: var(--sh-xs);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.event-row:hover { border-color: var(--blue-100); box-shadow: var(--sh); }
.event-row.past { opacity: 0.6; }
.event-row-img { width: 76px; height: 56px; object-fit: cover; border-radius: var(--r-sm); flex-shrink: 0; }
.event-row-img.placeholder { display: flex; align-items: center; justify-content: center; background: var(--bg); font-size: 1.4rem; }
.event-row-body { flex: 1; min-width: 0; }
.event-row-title { font-weight: 600; font-size: 0.9rem; color: var(--ink); margin-bottom: 0.25rem; }
.event-row-meta { display: flex; gap: 0.8rem; font-size: 0.76rem; color: var(--ink-2); margin-bottom: 0.2rem; flex-wrap: wrap; }
.event-row-desc { font-size: 0.76rem; color: var(--ink-2); line-height: 1.4; }
.badge-upcoming { display: inline-block; background: #F0FDF4; border: 1px solid #BBF7D0; color: var(--success); padding: 0.1rem 0.45rem; border-radius: 4px; font-size: 0.64rem; font-weight: 600; margin-left: 0.35rem; }
.badge-past     { display: inline-block; background: var(--bg); color: var(--ink-3); padding: 0.1rem 0.45rem; border-radius: 4px; font-size: 0.64rem; font-weight: 600; margin-left: 0.35rem; }

.members-stats { display: flex; gap: 0.5rem; flex-wrap: wrap; padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--border-2); }
.stat-pill {
  background: var(--blue-50); border: 1px solid var(--blue-100);
  padding: 0.3rem 0.75rem; border-radius: 50px;
  font-size: 0.78rem; color: var(--ink-2);
}
.stat-pill strong { color: var(--blue); }
.search-small { width: 200px; }

.table-header { display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr; padding: 0.45rem 0.75rem; gap: 1rem; border-bottom: 2px solid var(--border-2); }
.th { font-size: 0.68rem; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.07em; }
.table-row { display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr; padding: 0.7rem 0.75rem; gap: 1rem; align-items: center; border-bottom: 1px solid var(--border-2); transition: background 0.12s; }
.table-row:hover { background: var(--bg); }
.member-cell { display: flex; align-items: center; gap: 0.5rem; }
.member-avatar { width: 30px; height: 30px; border-radius: 50%; overflow: hidden; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.member-avatar img { width: 100%; height: 100%; object-fit: cover; }
.member-name { font-weight: 600; font-size: 0.85rem; color: var(--ink); }
.member-dept { font-size: 0.76rem; color: var(--ink-2); }
.member-xp .xp-badge { background: #FFFBEB; border: 1px solid #FDE68A; color: #B45309; padding: 0.15rem 0.45rem; border-radius: 4px; font-size: 0.7rem; font-weight: 600; }
.member-date { font-size: 0.76rem; color: var(--ink-3); }

/* ═══════════════════════════════════════════════
   COMMUNITY DETAIL PAGE
═══════════════════════════════════════════════ */
.breadcrumb {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.76rem; color: var(--ink-3); margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--ink-2); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span:last-child { color: var(--ink); font-weight: 500; }

.com-hero-banner {
  background: linear-gradient(160deg, var(--blue-50) 0%, #f0f9ff 50%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0 3rem;
  position: relative;
}
.com-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px; opacity: 0.3;
}
.com-hero-inner { display: flex; align-items: center; gap: 2rem; position: relative; }
.com-hero-logo {
  width: 96px; height: 96px; border-radius: 20px; overflow: hidden; flex-shrink: 0;
  background: var(--white); border: 2px solid var(--border);
  box-shadow: var(--sh);
  display: flex; align-items: center; justify-content: center;
}
.com-hero-logo img { width: 100%; height: 100%; object-fit: cover; }
.com-hero-initial { font-size: 2.4rem; font-weight: 900; color: var(--blue); }
.com-hero-cat {
  display: inline-block; margin-bottom: 0.4rem;
  background: var(--blue-50); border: 1px solid var(--blue-100);
  color: var(--blue); padding: 0.15rem 0.65rem;
  border-radius: 5px; font-size: 0.71rem; font-weight: 600;
}
.com-hero-name { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 900; color: var(--ink); margin-bottom: 0.65rem; letter-spacing: -0.02em; }
.com-hero-meta { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; font-size: 0.82rem; color: var(--ink-2); }
.com-hero-meta .dot { color: var(--border); }

@media (max-width: 600px) {
  .com-hero-inner { flex-direction: column; align-items: flex-start; }
  .com-hero-logo { width: 76px; height: 76px; }
}

.com-page-body { padding: 2.5rem 0 5rem; }
.com-page-layout { display: grid; grid-template-columns: 1fr 290px; gap: 2rem; align-items: start; }
@media (max-width: 940px) {
  .com-page-layout { grid-template-columns: 1fr; }
  .com-side-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 540px) { .com-side-col { grid-template-columns: 1fr; } }

.com-block {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.75rem;
  margin-bottom: 1.25rem; box-shadow: var(--sh-xs);
}
.com-block.full-block { grid-column: 1/-1; }
.com-block-title { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 1.1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border-2); }
.com-about-text { color: var(--ink-2); line-height: 1.85; font-size: 0.88rem; white-space: pre-wrap; }

.com-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); gap: 0.55rem; }
.gallery-item { aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden; position: relative; cursor: pointer; background: var(--bg); border: 1px solid var(--border); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,82,165,0.75); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; opacity: 0; transition: opacity 0.2s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.posts-list { display: flex; flex-direction: column; gap: 0.9rem; }
.post-item { display: flex; gap: 0.85rem; padding: 1rem; background: var(--bg); border: 1px solid var(--border-2); border-radius: var(--r-sm); }
.post-img { width: 74px; height: 64px; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; }
.post-img img { width: 100%; height: 100%; object-fit: cover; }
.post-body { flex: 1; }
.post-text { font-size: 0.82rem; color: var(--ink-2); line-height: 1.55; margin-bottom: 0.35rem; }
.post-foot { display: flex; gap: 1rem; font-size: 0.72rem; color: var(--ink-3); }

.side-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.15rem; margin-bottom: 1rem; box-shadow: var(--sh-xs); }
.side-card-title { font-size: 0.7rem; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.9rem; }
.side-empty { font-size: 0.81rem; color: var(--ink-3); }

.team-member-row { display: flex; align-items: center; gap: 0.7rem; padding: 0.7rem; background: #FFFBEB; border: 1px solid #FDE68A; border-radius: var(--r-sm); }
.team-avatar.crown { font-size: 1.4rem; }
.team-member-role { font-size: 0.64rem; color: #B45309; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.team-member-name { font-size: 0.86rem; font-weight: 600; color: var(--ink); }

.contact-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--ink); padding: 0.55rem 0.7rem; background: var(--bg); border-radius: var(--r-sm); }
.contact-icon { font-size: 1rem; }

.event-side-item { padding: 0.65rem 0; border-bottom: 1px solid var(--border-2); }
.event-side-item:last-child { border-bottom: none; padding-bottom: 0; }
.event-side-img { width: 100%; height: 88px; object-fit: cover; border-radius: var(--r-sm); margin-bottom: 0.45rem; }
.event-side-title { font-size: 0.84rem; font-weight: 600; color: var(--ink); margin-bottom: 0.22rem; }
.event-side-meta { font-size: 0.72rem; color: var(--ink-2); }
.event-side-desc { font-size: 0.72rem; color: var(--ink-2); margin-top: 0.18rem; line-height: 1.4; }

.stats-list { display: flex; flex-direction: column; }
.stat-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid var(--border-2); font-size: 0.81rem; }
.stat-row:last-child { border-bottom: none; }
.stat-row span { color: var(--ink-2); }
.stat-row strong { color: var(--ink); font-weight: 700; }

.events-grid-full { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1rem; }
.event-full-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-xs); }
.event-full-card.past-ev { opacity: 0.7; }
.event-full-img { width: 100%; height: 128px; object-fit: cover; }
.event-full-img-placeholder { height: 68px; background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.event-full-body { padding: 0.85rem; }
.event-full-title { font-size: 0.86rem; font-weight: 600; color: var(--ink); margin-bottom: 0.25rem; }
.event-full-meta { font-size: 0.73rem; color: var(--ink-2); }
.event-full-desc { font-size: 0.74rem; color: var(--ink-2); margin-top: 0.25rem; line-height: 1.4; }

.not-found { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; text-align: center; padding: 2rem; }
.not-found h2 { font-size: 1.5rem; font-weight: 700; color: var(--ink); }
.not-found p { color: var(--ink-2); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.88); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lb-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; width: 34px; height: 34px; border-radius: var(--r-sm);
  cursor: pointer; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.lb-close:hover { background: rgba(255,255,255,0.2); }
.lb-inner { max-width: 880px; width: 100%; text-align: center; }
.lb-inner img { max-width: 100%; max-height: 70vh; object-fit: contain; border-radius: var(--r); box-shadow: 0 0 60px rgba(0,0,0,0.5); }
.lb-caption { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 0.9rem; line-height: 1.5; }
.lb-date { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 0.25rem; }

/* ═══════════════════════════════════════════════
   TEMA CANVAS
═══════════════════════════════════════════════ */
#themeCanvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  display: none;
  width: 100vw;
  height: 100vh;
}

/* ===============================================
   ILETISIM - Bizimle Iletisime Gecin
=============================================== */
.contact-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
}

.contact-fab-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--blue);
  border: none; cursor: pointer;
  font-size: 1.1rem;
  box-shadow: var(--sh-blue), 0 4px 16px rgba(0,0,0,0.22);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.contact-fab-btn:hover { transform: scale(1.1); }

.contact-panel {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0.9rem 0.9rem 1rem;
  box-shadow: var(--sh-lg);
  display: none; flex-direction: column; gap: 0.55rem;
  width: 250px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.contact-panel.open {
  display: flex;
  animation: contactPanelIn 0.17s ease;
}
@keyframes contactPanelIn {
  from { opacity: 0; transform: translateY(6px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.contact-panel-title {
  font-size: 0.85rem; font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.contact-panel-note {
  font-size: 0.72rem; font-weight: 400;
  color: var(--ink-3);
  margin: 0; line-height: 1.45;
}

.contact-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0.65rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg);
  font-size: 0.8rem; font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: all 0.15s;
}
.contact-item:hover { border-color: var(--blue); color: var(--ink); background: var(--blue-50); }

.contact-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--r-sm);
  background: var(--blue);
  color: var(--white);
  font-size: 0.8rem; font-weight: 600;
  text-decoration: none;
  box-shadow: var(--sh-blue);
  transition: transform 0.15s, box-shadow 0.15s;
}
.contact-btn:hover { transform: translateY(-1px); }

/* WhatsApp yeşil varyantı */
.contact-item.wa { border-color: rgba(37, 211, 102, 0.4); }
.contact-item.wa:hover { border-color: #25D366; background: rgba(37, 211, 102, 0.12); color: var(--ink); }
.contact-btn.wa { background: #25D366; box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35); }
.contact-btn.wa:hover { box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4); }
/* ═══════════════════════════════════════════════
   TEMA: GEOMETRİK — NOKTALAR & BAĞLANTI AĞLARI
═══════════════════════════════════════════════ */
[data-theme="geometric"] {
  --blue:     #6366F1;
  --blue-50:  rgba(99,102,241,0.07);
  --blue-100: rgba(99,102,241,0.14);
  --blue-600: #4F46E5;
  --sau:      #8B5CF6;
  --sau-50:   rgba(139,92,246,0.07);
  --sau-100:  rgba(139,92,246,0.13);
  --white:    #ffffff;
  --bg:       #f5f5ff;
  --border:   rgba(99,102,241,0.2);
  --border-2: rgba(99,102,241,0.1);
  --ink:      #1e1b4b;
  --ink-2:    #4338ca;
  --ink-3:    #8182c0;
  --sh-blue:  0 4px 14px rgba(99,102,241,0.25);
}

[data-theme="geometric"] body { background: #f5f5ff; }

[data-theme="geometric"] .brand-icon { background: #6366F1; }

[data-theme="geometric"] .hero-new {
  background: linear-gradient(180deg,
    rgba(230,230,255,0.65) 0%,
    rgba(245,245,255,0.45) 65%,
    rgba(255,255,255,0.25) 100%);
  border-color: rgba(99,102,241,0.14);
}
[data-theme="geometric"] .gradient-text-new {
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
[data-theme="geometric"] .partner-bar {
  background: rgba(255,255,255,0.82);
  border-color: rgba(99,102,241,0.18);
  backdrop-filter: blur(8px);
}
[data-theme="geometric"] .partner-bar svg circle { fill: rgba(99,102,241,0.08); stroke: #6366F1; }
[data-theme="geometric"] .partner-bar svg text   { fill: #6366F1; }
[data-theme="geometric"] .hero-stats-new {
  background: rgba(255,255,255,0.82);
  border-color: rgba(99,102,241,0.18);
  backdrop-filter: blur(8px);
}

[data-theme="geometric"] .about-section           { background: rgba(245,245,255,0.72); }
[data-theme="geometric"] .communities-section-new { background: rgba(255,255,255,0.78); }

[data-theme="geometric"] .about-card2   { border-color: rgba(99,102,241,0.15); }
[data-theme="geometric"] .subu-card2:hover { border-color: #6366F1; }
[data-theme="geometric"] .sau-card2:hover  { border-color: #8B5CF6; }
[data-theme="geometric"] .blue-header  {
  background: linear-gradient(135deg, rgba(99,102,241,0.07) 0%, rgba(99,102,241,0.13) 100%);
}
[data-theme="geometric"] .green-header {
  background: linear-gradient(135deg, rgba(139,92,246,0.06) 0%, rgba(139,92,246,0.12) 100%);
}
[data-theme="geometric"] .blue-circle          { background: #6366F1; }
[data-theme="geometric"] .green-circle         { background: #8B5CF6; }
[data-theme="geometric"] .as2-v                { color: #6366F1; }
[data-theme="geometric"] .as2-v.green-v        { color: #8B5CF6; }
[data-theme="geometric"] .blue-tag  { background: rgba(99,102,241,0.07); border-color: rgba(99,102,241,0.16); color: #6366F1; }
[data-theme="geometric"] .green-tag { background: rgba(139,92,246,0.07); border-color: rgba(139,92,246,0.16); color: #8B5CF6; }
[data-theme="geometric"] .afeat    { background: rgba(99,102,241,0.05); border-color: rgba(99,102,241,0.14); }
[data-theme="geometric"] .blue-link  { color: #6366F1; }
[data-theme="geometric"] .green-link { color: #8B5CF6; }

[data-theme="geometric"] .com-logo-link    { background: linear-gradient(160deg, rgba(99,102,241,0.08) 0%, rgba(230,230,255,0.7) 100%); }
[data-theme="geometric"] .com-logo-overlay { background: rgba(79,70,229,0.88); }
[data-theme="geometric"] .cf               { color: #6366F1; opacity: 0.5; }
[data-theme="geometric"] .com-cat-badge    { background: rgba(99,102,241,0.08); border-color: rgba(99,102,241,0.16); color: #6366F1; }
[data-theme="geometric"] .com-detail-btn:hover { background: #6366F1; border-color: #6366F1; }

[data-theme="geometric"] .ftab.active { background: #6366F1; border-color: #6366F1; }
[data-theme="geometric"] .ftab:hover  { border-color: #6366F1; color: #6366F1; background: rgba(99,102,241,0.07); }
[data-theme="geometric"] .search-input-new:focus { border-color: #6366F1; box-shadow: 0 0 0 3px rgba(99,102,241,0.1); }
[data-theme="geometric"] .form-input:focus       { border-color: #6366F1; box-shadow: 0 0 0 3px rgba(99,102,241,0.1); }

[data-theme="geometric"] .footer-new { background: #1e1b4b; }
[data-theme="geometric"] .fp-tag       { background: rgba(99,102,241,0.2); border-color: rgba(99,102,241,0.35); color: #a5b4fc; }
[data-theme="geometric"] .fp-tag.green { background: rgba(139,92,246,0.2); border-color: rgba(139,92,246,0.35); color: #c4b5fd; }

[data-theme="geometric"] .com-hero-banner {
  background: linear-gradient(160deg,
    rgba(230,230,255,0.55) 0%,
    rgba(245,245,255,0.35) 60%,
    rgba(255,255,255,0.15) 100%);
  border-color: rgba(99,102,241,0.12);
}
[data-theme="geometric"] .com-hero-bg {
  background-image: linear-gradient(rgba(99,102,241,0.07) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(99,102,241,0.07) 1px, transparent 1px);
  opacity: 0.5;
}
[data-theme="geometric"] .com-hero-cat { background: rgba(99,102,241,0.08); border-color: rgba(99,102,241,0.18); color: #6366F1; }

[data-theme="geometric"] .auth-screen {
  background: linear-gradient(160deg, rgba(99,102,241,0.07) 0%, #f5f5ff 60%);
}
[data-theme="geometric"] .dashboard-header {
  background: linear-gradient(160deg, rgba(99,102,241,0.07) 0%, #ffffff 70%);
  border-color: rgba(99,102,241,0.12);
}
[data-theme="geometric"] .dh-badge    { background: rgba(99,102,241,0.1); color: #6366F1; }
[data-theme="geometric"] .tabs-bar    { border-color: rgba(99,102,241,0.12); }
[data-theme="geometric"] .tab.active  { color: #6366F1; border-bottom-color: #6366F1; }
[data-theme="geometric"] .spinner     { border-top-color: #6366F1; }
[data-theme="geometric"] .stat-pill   { background: rgba(99,102,241,0.08); border-color: rgba(99,102,241,0.18); }
[data-theme="geometric"] .stat-pill strong { color: #6366F1; }


