/* =====================================================
   VioLet Login Teması — Orijinal Violet Renk Paleti
   Dosya: control/login/Default/login.css
   ===================================================== */

/* ── Violet orijinal renk değişkenleri ── */
:root {
  /* Ana renkler (değişmez) */
  --vl-primary:        #7c3aed;
  --vl-primary-light:  #8b5cf6;
  --vl-primary-dark:   #5b21b6;
  --vl-secondary:      #06b6d4;
  --vl-accent:         #f59e0b;
  --vl-danger:         #ef4444;
  --vl-warning:        #f97316;
  --vl-success:        #22c55e;
  --vl-radius:         16px;

  /* ── VARSAYILAN: LIGHT MOD (lavender) ── */
  --vl-bg:             #f3f0ff;
  --vl-bg2:            #ede9fe;
  --vl-bg3:            #ddd6fe;
  --vl-glass:          rgba(255,255,255,0.70);
  --vl-glass-border:   rgba(124,58,237,0.18);
  --vl-text:           #1e1b4b;
  --vl-text-sec:       #4c1d95;
  --vl-text-muted:     #7c3aed;
  --vl-shadow:         0 8px 32px rgba(109,40,217,0.15);
  --vl-shadow-primary: 0 4px 20px rgba(124,58,237,0.30);
}

/* ── GECE MODU ── */
#vl_login_wrap.vl_dark {
  --vl-bg:             #0f0f1a;
  --vl-bg2:            #1a1a2e;
  --vl-bg3:            #16213e;
  --vl-glass:          rgba(255,255,255,0.05);
  --vl-glass-border:   rgba(255,255,255,0.10);
  --vl-text:           #f1f5f9;
  --vl-text-sec:       #94a3b8;
  --vl-text-muted:     #475569;
  --vl-shadow:         0 8px 32px rgba(0,0,0,0.50);
  --vl-shadow-primary: 0 4px 20px rgba(124,58,237,0.40);
}

/* ── Light mod varsayılan arka plan ── */
#vl_login_wrap {
  background: linear-gradient(135deg, #f3f0ff 0%, #ede9fe 50%, #e0d9ff 100%);
}
#vl_login_wrap .vl_topbar {
  background: rgba(243,240,255,0.92);
  border-bottom-color: rgba(124,58,237,0.15);
}

/* ── Reset & wrap ── */
#vl_login_wrap {
  width: 100%;
  min-height: 100vh;
  background: var(--vl-bg);
  color: var(--vl-text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ── Container ── */
.vl_container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================================
   HEADER / NAV
================================================ */
.vl_topbar {
  width: 100%;
  background: rgba(15,15,26,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vl-glass-border);
  position: sticky;
  top: 0;
  z-index: 500;
}

.vl_topbar_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 16px;
}

/* Logo / brand */
.vl_brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--vl-text);
}
.vl_logo_mark {
  width: 56px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--vl-primary), var(--vl-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--vl-shadow-primary);
  overflow: hidden;
}
.vl_logo_img {
  height: 28px;
  width: auto;
  object-fit: contain;
}
.vl_site_name {
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--vl-primary-light), var(--vl-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav links */
.vl_nav {
  display: flex;
  gap: 4px;
}
.vl_nav a {
  color: var(--vl-text-sec);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.vl_nav a:hover {
  color: var(--vl-text);
  background: rgba(124,58,237,0.15);
}

/* Nav actions */
.vl_nav_actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vl_desktop_only { display: flex; }

/* Hamburger */
.vl_hamburger {
  display: none;
  background: var(--vl-glass);
  border: 1px solid var(--vl-glass-border);
  color: var(--vl-text);
  font-size: 1.2rem;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}

/* Mobile menu */
.vl_mobile_menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0 14px;
  border-top: 1px solid var(--vl-glass-border);
}
.vl_mobile_menu a {
  color: var(--vl-text-sec);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 9px 4px;
  border-bottom: 1px solid var(--vl-glass-border);
  transition: color 0.2s;
}
.vl_mobile_menu a:hover { color: var(--vl-text); }
.vl_mobile_menu.vl_open { display: flex; }

/* ================================================
   BUTTONS
================================================ */
.vl_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.vl_btn:active { transform: scale(0.97); }

/* btn-primary: violet gradient */
.vl_btn_primary {
  background:  #111;
  color: #fff;
  box-shadow: var(--vl-shadow-primary);
}
.vl_btn_primary:hover {
  background: linear-gradient(135deg, var(--vl-primary-dark), var(--vl-primary));
  box-shadow: 0 6px 24px rgba(124,58,237,0.55);
  transform: translateY(-1px);
}

/* btn-secondary: şeffaf */
.vl_btn_secondary {
  background: var(--vl-glass);
  border: 1px solid var(--vl-glass-border);
  color: var(--vl-text);
}
.vl_btn_secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(124,58,237,0.4);
}

/* btn-accent: amber/orange */
.vl_btn_accent {
  background: linear-gradient(135deg, var(--vl-accent), var(--vl-warning));
  color: #fff;
  box-shadow: 0 4px 16px rgba(245,158,11,0.35);
}
.vl_btn_accent:hover {
  box-shadow: 0 6px 22px rgba(245,158,11,0.50);
  transform: translateY(-1px);
}

.vl_btn_full {
  width: 100%;
  padding: 13px 20px;
  font-size: 0.95rem;
}

/* ================================================
   GLASS CARD
================================================ */
.vl_glass_card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--vl-glass-border);
  border-radius: var(--vl-radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--vl-shadow);
}

/* ================================================
   HERO
================================================ */
.vl_main { padding: 40px 0 60px; }

.vl_hero_grid {
  display: grid;
  grid-template-columns: calc(50% - 160px) 50%;
  gap: 28px;
  align-items: start;
}

/* Login kartı sola, tanıtım kartı sağa */
.vl_login_card { order: -1; }
.vl_hero_card  { order:  1; }

/* Hero sağ kart: border yok, arka planla aynı, resim arkada */
.vl_hero_card {
  padding: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: calc(100% + 80px);
  margin-left: -80px;
  transform: translateX(120px);
}

/* Arka plan resmi — sağa yaslanmış */
.vl_hero_img_wrap {
  position: absolute;
  top: 0;
  right: -5%;
  width: 85%;
  height: 100%;
  z-index: 0;
}
.vl_hero_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  display: block;
}




/* İçerik overlay'in üstünde */
.vl_hero_content {
  position: relative;
  z-index: 2;
  padding: 24px 32px 32px;
}

.vl_hero_title {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 14px;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25), 0 4px 24px rgba(0,0,0,0.15);
}

.vl_hero_subtitle {
  color: var(--vl-text-sec);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 24px;
}

.vl_features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}

/* ── Sohbet avatarları ── */
.vl_chat_row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.vl_chat_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: vl_float 3s ease-in-out infinite;
}

.vl_chat_item:nth-child(1) { animation-delay: 0s; }
.vl_chat_item:nth-child(2) { animation-delay: 0.6s; }
.vl_chat_item:nth-child(3) { animation-delay: 1.2s; }

@keyframes vl_float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.vl_chat_avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.vl_chat_bubble {
  background: #fff;
  color: #1e1b4b;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 14px 14px 14px 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  white-space: nowrap;
  position: relative;
}
.vl_chat_bubble::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 14px;
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: #fff transparent transparent;
}

.vl_chat_live {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #1e1b4b;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  margin-left: auto;
  white-space: nowrap;
}
.vl_chat_live_dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vl-success);
  box-shadow: 0 0 6px var(--vl-success);
  animation: vl_pulse 2s ease-in-out infinite;
}

.vl_feature {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--vl-text-sec);
}
.vl_feature_icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--vl-primary), var(--vl-secondary));
  color: #fff;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.vl_hero_actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── Login sol kart ── */
.vl_login_card {
  padding: 28px 26px;
}

.vl_login_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.vl_login_header h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: var(--vl-text);
  -webkit-text-fill-color: var(--vl-text);
  background: none;
}
.vl_login_icons {
  display: flex;
  gap: 6px;
}
.vl_icon_btn {
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.vl_icon_btn:hover { background: rgba(124,58,237,0.25); }

.vl_form_body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.vl_register_row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 8px;
}
.vl_register_label {
  font-size: 0.82rem;
  color: var(--vl-text-muted);
}
.vl_register_link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--vl-primary-light);
  cursor: pointer;
  transition: color 0.2s;
}
.vl_register_link:hover { color: #a78bfa; }

/* %100 SEO rozeti + sayfa içi popover kart */
.vl_seo_wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-top: 12px;
}
.vl_seo_badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #22c55e55;
  color: #16a34a;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(34,197,94,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.vl_seo_badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(34,197,94,0.25);
}
.vl_seo_badge i { font-size: 0.7rem; }

.vl_seo_inline {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  width: 280px;
  max-width: 82vw;
  background: #fff;
  color: #1e1b4b;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.22);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.vl_seo_inline.vl_visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vl_seo_card_head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.vl_seo_card_icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 9px;
  background: #f0fdf4;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.vl_seo_card_title { flex: 1; }
.vl_seo_card_title h4 { margin: 0; font-size: 0.92rem; font-weight: 800; color: #1e1b4b; }
.vl_seo_card_title span { font-size: 0.7rem; color: #8b8b9a; }
.vl_seo_card_close {
  background: none;
  border: none;
  font-size: 1.2rem;
  line-height: 1;
  color: #9ca3af;
  cursor: pointer;
  padding: 0 2px;
}
.vl_seo_card_close:hover { color: #1e1b4b; }
.vl_seo_card_bar {
  height: 5px;
  border-radius: 50px;
  background: #e5e7eb;
  overflow: hidden;
  margin-bottom: 14px;
}
.vl_seo_card_bar span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 50px;
}
.vl_seo_card_desc {
  font-size: 0.8rem;
  line-height: 1.55;
  color: #4b4b5a;
  margin: 0 0 14px;
}
.vl_seo_card_desc strong { color: #1e1b4b; }
.vl_seo_card_list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.vl_seo_card_list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #374151;
}
.vl_seo_card_list i { color: #22c55e; font-size: 0.8rem; }
.vl_seo_card_footer {
  text-align: center;
  font-size: 0.68rem;
  color: #9ca3af;
  padding-top: 12px;
  border-top: 1px solid #f0f0f3;
}
.vl_seo_card_footer strong { color: #6b7280; }
@media (max-width: 480px) {
  .vl_seo_inline { right: -10px; width: 260px; }
}

/* Stats bar */
.vl_stats_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.20);
  border-radius: 12px;
  padding: 12px 16px;
  gap: 12px;
}
.vl_online_users {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vl_user_avatars {
  display: flex;
}
.vl_avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--vl-primary-dark);
  overflow: hidden;
  margin-left: -6px;
}
.vl_avatar:first-child { margin-left: 0; }
.vl_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vl_online_indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--vl-text-sec);
}
.vl_online_dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vl-success);
  box-shadow: 0 0 8px var(--vl-success);
  animation: vl_pulse 2s ease-in-out infinite;
}
@keyframes vl_pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* ── İstatistik satırı ── */
.vl_stats_row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.vl_stat_card {
  padding: 22px 18px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.vl_stat_card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.vl_stat_icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.vl_purple { background: linear-gradient(135deg, rgba(124,58,237,0.30), rgba(139,92,246,0.15)); border: 1px solid rgba(124,58,237,0.25); }
.vl_blue   { background: linear-gradient(135deg, rgba(6,182,212,0.25),  rgba(6,182,212,0.10));  border: 1px solid rgba(6,182,212,0.20); }
.vl_orange { background: linear-gradient(135deg, rgba(249,115,22,0.25), rgba(245,158,11,0.10)); border: 1px solid rgba(249,115,22,0.20); }
.vl_green  { background: linear-gradient(135deg, rgba(34,197,94,0.25),  rgba(34,197,94,0.10));  border: 1px solid rgba(34,197,94,0.20); }

.vl_stat_number {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--vl-text);
  line-height: 1;
  margin-bottom: 4px;
}
.vl_stat_label {
  font-size: 0.78rem;
  color: var(--vl-text-sec);
}

/* ================================================
   DİL BUTONU
================================================ */
.vl_lang_btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(124,58,237,0.20);
  border: 1px solid rgba(124,58,237,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(124,58,237,0.30);
  transition: background 0.2s, transform 0.2s;
}
.vl_lang_btn:hover {
  background: rgba(124,58,237,0.35);
  transform: scale(1.08);
}
.vl_lang_btn img {
  width: 26px;
  height: auto;
  border-radius: 3px;
}

/* ================================================
   RESPONSIVE
================================================ */
@media screen and (max-width: 900px) {
  .vl_hero_grid {
    grid-template-columns: 1fr;
  }
  /* Mobilde de login üstte kalsın */
  .vl_login_card { order: -1; }
  .vl_hero_card  { order:  1; min-height: 380px; transform: none; width: 100%; margin-left: 0; }
  .vl_stats_row {
    grid-template-columns: repeat(2, 1fr);
  }
  .vl_nav { display: none; }
  .vl_hamburger { display: flex; }
  .vl_desktop_only { display: none !important; }
}

@media screen and (max-width: 540px) {
  .vl_login_card { padding: 22px 16px; }
  .vl_hero_card  { min-height: 320px; }
  .vl_hero_content { padding: 18px 20px 24px; }
  .vl_hero_title { font-size: 1.4rem; }
  .vl_features { grid-template-columns: 1fr; }
  .vl_stats_bar { flex-direction: column; align-items: flex-start; }
}

/* ================================================
   INPUT ALANLARI
================================================ */
.vl_input_group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vl_input_label_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vl_input_label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--vl-text-sec);
  letter-spacing: 0.3px;
}

.vl_forgot_link {
  font-size: 0.78rem;
  color: var(--vl-primary-light);
  cursor: pointer;
  transition: color 0.2s;
}
.vl_forgot_link:hover { color: #a78bfa; }

/* Input wrap: input + göz butonu */
.vl_input_wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.vl_input {
  width: 100%;
  padding: 11px 44px 11px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--vl-text);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.vl_input::placeholder {
  color: var(--vl-text-muted);
}
.vl_input:focus {
  border-color: var(--vl-primary-light);
  background: rgba(124,58,237,0.10);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.18);
}
/* validForm hata durumu */
.vl_input.onfield {
  border-color: var(--vl-danger);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.20);
}

/* Göz butonu */
.vl_eye_btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--vl-text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 4px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.vl_eye_btn:hover { color: var(--vl-primary-light); }

/* Input grubunun altında giriş yap butonu biraz boşluk */
#login_form_box .vl_btn_full {
  margin-top: 4px;
}

/* ================================================
   YUKARI ÇIK BUTONU
================================================ */
.vl_scroll_top {
  position: fixed;
  bottom: 20px;
  right: 72px; /* bayrak butonunun (42px) sağına 10px boşluk bırakarak */
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(124,58,237,0.20);
  border: 1px solid rgba(124,58,237,0.35);
  color: var(--vl-text);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(124,58,237,0.25);
  transition: background 0.2s, transform 0.2s, opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.vl_scroll_top.vl_visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.vl_scroll_top:hover {
  background: rgba(124,58,237,0.40);
  transform: translateY(-3px);
}

/* ================================================
   TEMA TOGGLE BUTONU
================================================ */
.vl_theme_toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--vl-glass);
  border: 1px solid var(--vl-glass-border);
  color: var(--vl-text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, color 0.2s;
  flex-shrink: 0;
}
.vl_theme_toggle:hover {
  background: rgba(124,58,237,0.25);
  transform: rotate(20deg);
}

/* Light mod artık :root varsayılanı */

/* Gece modunda arka plan ve topbar */
#vl_login_wrap.vl_dark {
  background: #0f0f1a;
}
#vl_login_wrap.vl_dark .vl_topbar {
  background: rgba(15,15,26,0.92);
  border-bottom-color: rgba(255,255,255,0.10);
}

/* Gece modunda nav linkleri */
#vl_login_wrap.vl_dark .vl_nav a {
  color: #94a3b8;
}
#vl_login_wrap.vl_dark .vl_nav a:hover {
  color: #f1f5f9;
  background: rgba(255,255,255,0.06);
}

/* Gece modunda site adı */
#vl_login_wrap.vl_dark .vl_site_name {
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gece modunda glass kartlar */
#vl_login_wrap.vl_dark .vl_glass_card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 8px 32px rgba(0,0,0,0.50);
}

/* Gece modunda hero title */
#vl_login_wrap.vl_dark .vl_hero_title {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
}
#vl_login_wrap.vl_dark .vl_login_header h2 {
  color: #f1f5f9;
  -webkit-text-fill-color: #f1f5f9;
  background: none;
}


/* Gece modunda input */
#vl_login_wrap.vl_dark .vl_input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #f1f5f9;
}
#vl_login_wrap.vl_dark .vl_input::placeholder {
  color: #475569;
}
#vl_login_wrap.vl_dark .vl_input:focus {
  background: rgba(124,58,237,0.10);
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.18);
}
#vl_login_wrap.vl_dark .vl_eye_btn {
  color: #64748b;
}

/* Gece modunda stats bar */
#vl_login_wrap.vl_dark .vl_stats_bar {
  background: rgba(124,58,237,0.08);
  border-color: rgba(124,58,237,0.20);
}

/* Gece modunda istatistik sayıları */
#vl_login_wrap.vl_dark .vl_stat_number {
  color: #f1f5f9;
}
#vl_login_wrap.vl_dark .vl_stat_label {
  color: #94a3b8;
}

/* Gece modunda feature */
#vl_login_wrap.vl_dark .vl_feature {
  color: #94a3b8;
}

/* Gece modunda online indicator */
#vl_login_wrap.vl_dark .vl_online_indicator {
  color: #94a3b8;
}

/* Gece modunda kayıt ol satırı */
#vl_login_wrap.vl_dark .vl_register_label {
  color: #475569;
}

/* Gece modunda hamburger */
#vl_login_wrap.vl_dark .vl_hamburger {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
  color: #f1f5f9;
}

/* Gece modunda mobile menu */
#vl_login_wrap.vl_dark .vl_mobile_menu {
  background: rgba(15,15,26,0.98);
}
#vl_login_wrap.vl_dark .vl_mobile_menu a {
  color: #94a3b8;
  border-bottom-color: rgba(255,255,255,0.08);
}

/* Gece modunda theme toggle */
#vl_login_wrap.vl_dark .vl_theme_toggle {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #f1f5f9;
}

/* Gece modunda scroll & dil butonları */
#vl_login_wrap.vl_dark .vl_scroll_top,
#vl_login_wrap.vl_dark .vl_lang_btn {
  background: rgba(124,58,237,0.20);
  border-color: rgba(124,58,237,0.35);
  color: #f1f5f9;
}
#vl_login_wrap.vl_dark .vl_scroll_top:hover,
#vl_login_wrap.vl_dark .vl_lang_btn:hover {
  background: rgba(124,58,237,0.35);
}

/* Gece modunda secondary buton */
#vl_login_wrap.vl_dark .vl_btn_secondary {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
  color: #f1f5f9;
}
#vl_login_wrap.vl_dark .vl_btn_secondary:hover {
  background: rgba(255,255,255,0.10);
}

/* ================================================
   LOGO GENİŞLETME (header)
================================================ */
.vl_brand_text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.vl_logo_mark {
  width: 62px;
  height: 36px;
  flex-shrink: 0;
}
.vl_logo_img {
  height: 32px;
}
.vl_site_name {
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ================================================
   ALT FOOTER LOGO + AÇIKLAMA
================================================ */
.vl_footer_brand {
  border-top: 1px solid var(--vl-glass-border);
  padding: 28px 0 10px;
  margin-top: 10px;
}

.vl_footer_inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.vl_footer_left { flex: 1 1 300px; max-width: 340px; min-width: 260px; }

/* Sağdaki 3 sütun: Hızlı Linkler / Özellikler / Geliştirici Bilgileri */
.vl_footer_col {
  flex: 1 1 180px;
  min-width: 170px;
}

.vl_footer_col_title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--vl-text);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
}
.vl_footer_col_title i { color: var(--vl-primary); }

.vl_footer_col_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vl_footer_col_list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--vl-text-sec);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.vl_footer_col_list a:hover {
  color: var(--vl-primary);
  transform: translateX(2px);
}
.vl_footer_col_list a i {
  font-size: 0.72rem;
  color: var(--vl-primary);
  width: 14px;
  text-align: center;
}

/* Geliştirici bilgileri bloğu — küçük etiket + değer */
.vl_footer_dev_list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.vl_footer_dev_label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--vl-text-muted);
  text-transform: uppercase;
}

@media screen and (max-width: 900px) {
  .vl_footer_inner { gap: 28px; }
}
@media screen and (max-width: 640px) {
  .vl_footer_inner { flex-direction: column; gap: 26px; }
  .vl_footer_col { width: 100%; }
}

.vl_footer_left {
  display: flex;
  flex-direction: column;
}

.vl_footer_logo {
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.vl_logo_mark_lg {
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  flex-shrink: 0;
}
.vl_logo_mark_lg .vl_logo_img {
  height: 38px !important;
}

.vl_footer_logo .vl_brand_text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 100%;
  min-width: 0;
}

.vl_footer_logo .vl_site_name {
  font-size: 1rem;
  font-weight: 700;
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.35;
}

.vl_site_tagline {
  font-size: 0.82rem;
  color: var(--vl-text-sec);
  line-height: 1.5;
  -webkit-text-fill-color: unset !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

/* Dark modda footer */
#vl_login_wrap.vl_dark .vl_footer_brand {
  border-top-color: rgba(255,255,255,0.08);
}

@media screen and (max-width: 540px) {
  .vl_footer_logo .vl_brand_text { max-width: 100%; }
  .vl_site_tagline { font-size: 0.78rem; }
}

/* ── Nav 5 link kompakt ── */
.vl_nav { gap: 2px; }
.vl_nav a { font-size: 0.82rem; padding: 6px 10px; }

/* ── DJ Bölümü ── */
.vl_dj_section { margin: 0 0 20px 0; padding: 18px 20px 16px; border-radius: 16px; }
.vl_dj_header { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.vl_dj_star { color: #f59e0b; font-size: 1.1rem; }
.vl_dj_title { font-size: 0.95rem; font-weight: 700; color: var(--vl-text); }
.vl_dj_track_wrap { display: flex; align-items: center; gap: 6px; }
.vl_dj_arrow { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--vl-glass-border); background: transparent; color: var(--vl-text-sec); cursor: pointer; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.vl_dj_arrow:hover { background: rgba(124,58,237,0.15); color: #7c3aed; }
.vl_dj_track_outer { flex: 1; overflow: hidden; }
.vl_dj_track { display: flex; gap: 8px; transition: transform 0.35s ease; }
.vl_dj_item { flex-shrink: 0; width: 72px; display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: pointer; padding: 6px 4px; border-radius: 10px; transition: background 0.2s; }
.vl_dj_item:hover { background: rgba(124,58,237,0.1); }
.vl_dj_avatar_wrap { width: 58px; height: 58px; border-radius: 50%; border: 2px solid rgba(124,58,237,0.3); overflow: hidden; }
.vl_dj_avatar { width: 100%; height: 100%; object-fit: cover; display: block; }
.vl_dj_name { font-size: 0.75rem; color: var(--vl-text-sec); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 72px; }
#vl_login_wrap.vl_dark .vl_dj_avatar_wrap { border-color: rgba(167,139,250,0.4); }

/* ================================================
   GÜNCEL YAZILARIMIZ — Blog Bölümü
   ================================================ */
.vl_blog_section {
  margin-top: 56px;
  padding-bottom: 20px;
}

.vl_blog_header {
  text-align: center;
  margin-bottom: 36px;
}

.vl_blog_badge {
  display: inline-block;
  padding: 5px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--vl-primary);
  color: var(--vl-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: transparent;
}

.vl_blog_title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--vl-text);
  margin: 0;
  line-height: 1.2;
}

/* Grid: posts (2-col) + sidebar */
.vl_blog_grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}

/* Posts container */
.vl_blog_posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: calc(100% - 10px);
  margin: 0 auto;
}

/* Single blog card */
.vl_blog_card {
  border-radius: var(--vl-radius);
  overflow: hidden;
  background: var(--vl-glass);
  border: 1px solid var(--vl-glass-border);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.vl_blog_card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vl-shadow-primary);
}

.vl_blog_img_wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.vl_blog_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.vl_blog_card:hover .vl_blog_img {
  transform: scale(1.04);
}

.vl_blog_date_badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--vl-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

.vl_blog_body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.vl_blog_cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--vl-text-muted);
  text-transform: uppercase;
  text-decoration: none;
  width: fit-content;
  transition: color 0.2s ease;
}
.vl_blog_cat:hover { color: var(--vl-primary); text-decoration: underline; }

.vl_blog_post_title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vl-text);
  margin: 0;
  line-height: 1.4;
}

.vl_blog_excerpt {
  font-size: 0.82rem;
  color: var(--vl-text-sec);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.vl_blog_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--vl-glass-border);
}

.vl_blog_author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--vl-text-sec);
}
.vl_blog_author_avatar {
  font-size: 1.3rem;
  color: var(--vl-primary-light);
  display: flex;
  align-items: center;
}

.vl_blog_read_more {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--vl-primary);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.vl_blog_read_more:hover { color: var(--vl-primary-dark); }

/* ── Blog Sayfalama (Önceki/Sonraki + Numaralar) ── */
.vl_blog_pagination {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-top: 24px;
}
.vl_blog_pagination_card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--vl-radius);
  background: var(--vl-glass);
  border: 1px solid var(--vl-glass-border);
  box-shadow: var(--vl-shadow);
  backdrop-filter: blur(10px);
}
.vl_blog_page_side {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--vl-primary), var(--vl-primary-dark));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--vl-shadow-primary);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.vl_blog_page_side:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.vl_blog_page_side.vl_blog_page_disabled {
  background: var(--vl-glass);
  color: var(--vl-text-muted);
  box-shadow: none;
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}
.vl_blog_page_nums {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.vl_blog_page_num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 6px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--vl-glass-border);
  color: var(--vl-text-sec);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.vl_blog_page_num:hover {
  background: var(--vl-primary-light);
  color: #fff;
  border-color: var(--vl-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--vl-shadow-primary);
}
.vl_blog_page_active {
  background: linear-gradient(135deg, var(--vl-primary), var(--vl-primary-dark));
  color: #fff;
  border-color: var(--vl-primary);
  box-shadow: var(--vl-shadow-primary);
  cursor: default;
  transform: scale(1.08);
}
.vl_blog_page_active:hover { transform: scale(1.08); }
.vl_blog_page_dots {
  min-width: 20px;
  text-align: center;
  color: var(--vl-text-muted);
  font-weight: 700;
  letter-spacing: 1px;
}
.vl_blog_page_info {
  font-size: 0.78rem;
  color: var(--vl-text-muted);
  font-weight: 600;
}
@media (max-width: 600px) {
  .vl_blog_page_side_text { display: none; }
  .vl_blog_page_side { padding: 0 14px; height: 40px; }
  .vl_blog_page_num { min-width: 38px; height: 38px; font-size: 0.85rem; }
}

/* ── Sidebar ── */
.vl_blog_sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 80px;
}

.vl_sidebar_widget {
  border-radius: var(--vl-radius);
  padding: 20px;
  background: var(--vl-glass);
  border: 1px solid var(--vl-glass-border);
}

.vl_sidebar_title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--vl-text);
  margin: 0 0 14px 0;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--vl-danger);
  display: inline-block;
}

/* Popüler Yazılar */
.vl_sidebar_popular {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vl_popular_item { border-bottom: 1px solid var(--vl-glass-border); padding-bottom: 14px; }
.vl_popular_item:last-child { border-bottom: none; padding-bottom: 0; }
.vl_popular_link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.vl_popular_link:hover { opacity: 0.8; }
.vl_popular_thumb {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 10px;
  object-fit: cover;
}
.vl_popular_info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.vl_popular_title {
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--vl-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vl_popular_date {
  font-size: 0.72rem;
  color: var(--vl-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Search */
.vl_sidebar_search_wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--vl-glass-border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--vl-bg2);
  margin-top: 4px;
}
.vl_sidebar_search {
  flex: 1;
  padding: 10px 14px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--vl-text);
  font-size: 0.85rem;
}
.vl_sidebar_search::placeholder { color: var(--vl-text-sec); opacity: 0.7; }
.vl_sidebar_search_btn {
  background: transparent;
  border: none;
  padding: 10px 14px;
  color: var(--vl-text-sec);
  cursor: pointer;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.vl_sidebar_search_btn:hover { color: var(--vl-primary); }

/* Categories list */
.vl_sidebar_cats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.vl_sidebar_cat_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--vl-glass-border);
  font-size: 0.85rem;
  color: var(--vl-text-sec);
  cursor: pointer;
  transition: color 0.2s;
}
.vl_sidebar_cat_item:last-child { border-bottom: none; }
.vl_sidebar_cat_item:hover { color: var(--vl-primary); }
.vl_cat_link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.vl_cat_link:hover { color: var(--vl-primary); }
.vl_cat_active {
  color: var(--vl-primary) !important;
  font-weight: 700;
}
.vl_cat_count {
  background: var(--vl-bg3);
  color: var(--vl-text-sec);
  border-radius: 50px;
  padding: 2px 9px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── Aktif kategori filtre bilgisi ── */
.vl_blog_filter_info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--vl-text-sec);
}
.vl_blog_filter_clear {
  color: var(--vl-danger);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.78rem;
}
.vl_blog_filter_clear:hover { text-decoration: underline; }

/* ── Dark mod uyumu ── */
#vl_login_wrap.vl_dark .vl_blog_badge { border-color: var(--vl-primary-light); color: var(--vl-primary-light); }
#vl_login_wrap.vl_dark .vl_sidebar_search { color: #f1f5f9; }
#vl_login_wrap.vl_dark .vl_cat_count { background: rgba(255,255,255,0.08); color: #94a3b8; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .vl_blog_grid { grid-template-columns: 1fr; }
  .vl_blog_sidebar { position: static; }
}
@media (max-width: 600px) {
  .vl_blog_posts { grid-template-columns: 1fr; }
  .vl_blog_title { font-size: 1.45rem; }
  .vl_blog_img_wrap { height: 160px; }
}
