* { margin: 0; padding: 0; box-sizing: border-box; }

.svg-inline--fa {
  display: inline-block;
  height: 1em;
  vertical-align: -0.125em;
  overflow: visible;
  width: auto;
}

:root {
  --primary: #ff4d4d;
  --primary-hover: #e63939;
  --primary-dark: #e63939;
  --primary-light: #fff5f5;
  --primary-shadow: rgba(255,77,77,0.3);
  --blue: #0984e3;
  --blue-hover: #0773c5;
  --blue-light: #f0f7ff;
  --bg: #f8f9fa;
  --surface: #ffffff;
  --text: #2d3436;
  --text-secondary: #636e72;
  --text-muted: #636e72;
  --border: #e1e1e1;
  --border-light: #f1f5f9;
  --success: #00b894;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}


.top-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  font-weight: 800;
  font-size: 1.6rem;
  color: #2d3436;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo i { font-size: 1.8rem; color: var(--primary); }
.logo .pro { color: var(--primary); }
.pro-logo {
  color: var(--primary);
}

.quick-links {
  display: flex;
  gap: 18px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
}

.quick-links span {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
  padding: 4px 0;
}

.quick-links span:hover { color: var(--primary); }


.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 0;
  transition: color 0.2s;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
}
.nav-dropdown-trigger:hover { color: var(--primary); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  min-width: 200px;
  padding: 14px 8px 8px;
  z-index: 999;
  border: 1px solid #e2e8f0;
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.nav-dropdown-menu span,
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.nav-dropdown-menu span:hover,
.nav-dropdown-menu a:hover {
  background: #f1f5f9;
  color: var(--primary);
}

.user-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}


.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 8px;
  overflow: visible;
}
.main-nav .nav-dropdown {
  position: relative;
  flex-shrink: 0;
}
.main-nav .nav-dropdown-trigger {
  text-decoration: none;
  white-space: nowrap;
  padding: 7px 9px;
  border-radius: 10px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.85rem;
}
.main-nav .nav-dropdown-trigger:hover {
  background: #f1f5f9;
  color: var(--primary);
}
.main-nav .nav-dropdown-menu {
  max-height: 70vh;
  overflow-y: auto;
  min-width: 240px;
  left: 50%;
}
.header-content {
  flex-wrap: nowrap;
  justify-content: space-between;
  position: relative;
  gap: 8px;
}
.logo-area {
  flex-shrink: 0;
}
.user-actions {
  flex-shrink: 0;
}

.kvkk-badge {
  background: var(--primary-light);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: 0.2s;
}

.kvkk-badge:hover { background: #ffe0e0; }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text);
  font-family: inherit;
}

.btn-outline:hover {
  background: var(--bg);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-primary {
  background: var(--primary);
  border: none;
  padding: 7px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px var(--primary-shadow);
  font-family: inherit;
}

.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 4px 14px var(--primary-shadow); }
.btn-primary:active { transform: translateY(0); }


.hero {
  background: linear-gradient(135deg, #667eea, #764ba2, #667eea, #764ba2);
  background-size: 400% 400%;
  animation: heroShift 10s ease infinite alternate;
  padding: 30px 0 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@keyframes heroShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
  line-height: 1.3;
  position: relative;
}

.hero .subtitle {
  font-size: 1rem;
  color: #ffffff;
  max-width: 650px;
  margin: 0 auto 15px;
  position: relative;
}

.platform-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 15px 0 28px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  flex-wrap: wrap;
  position: relative;
}

.platform-icons span {
  padding: 8px 16px;
  border-radius: 12px;
  transition: all 0.25s;
  cursor: pointer;
  user-select: none;
}

.platform-icons span:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.platform-icons span:active {
  transform: translateY(-1px);
}

.platform-icons i { font-size: 1.3rem; margin-right: 6px; color: #ffffff; }

.cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-hero {
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
}

.btn-start {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 16px var(--primary-shadow);
}

.btn-start:hover { 
  background: var(--primary-hover); 
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px var(--primary-shadow); 
}

.btn-more {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid #ffffff;
}

.btn-more:hover { 
  background: #ffffff; 
  color: var(--primary); 
  transform: translateY(-2px); 
}


.tools-section { padding: 40px 0; }

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title i { color: var(--primary); }

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0 28px;
}

.tab {
  background: var(--border-light);
  padding: 7px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.2s;
  color: var(--text-secondary);
  user-select: none;
}

.tab:hover { background: #e2e8f0; }

.tab.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 10px var(--primary-shadow);
}


#bigDropZone {
  position: relative;
  border: 2px dashed #cbd5e1;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  margin-bottom: 24px;
  background: #fafafa;
  overflow: hidden;
}
#bigDropZone:hover { border-color: #ff4d4d; background: #fff5f5; }
#bigDropZone.dz-active {
  border-color: #22c55e;
  background: #f0fdf4;
  transform: scale(1.02);
  box-shadow: 0 0 0 8px rgba(34,197,94,0.08);
  animation: dz-breathe 1s ease-in-out infinite;
}
@keyframes dz-breathe {
  0%, 100% { transform: scale(1.02); }
  50% { transform: scale(1.05); }
}
#bigDropZone .dz-content { transition: opacity 0.2s; }
#bigDropZone .dz-hover {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  opacity: 0; transition: opacity 0.2s; pointer-events: none;
  color: #16a34a; font-weight: 700; font-size: 1.1rem;
}
#bigDropZone.dz-active .dz-content { opacity: 0; }
#bigDropZone.dz-active .dz-hover { opacity: 1; }
.dz-icon { font-size: 2.8rem; color: #ff4d4d; margin-bottom: 6px; }
#bigDropZone:hover .dz-icon { color: #dc2626; }
.dz-title { font-size: 1.1rem; font-weight: 700; color: #334155; margin-bottom: 6px; }
.dz-or { font-size: 0.82rem; color: #94a3b8; margin-bottom: 8px; }
.dz-btn {
  background: #ff4d4d; border: none; border-radius: 10px;
  padding: 10px 24px; font-size: 0.9rem; font-weight: 600; cursor: pointer;
  font-family: inherit; color: #ffffff; transition: 0.15s;
}
.dz-btn:hover { background: #dc2626; transform: translateY(-1px); }


.tool-select-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: 10px; cursor: pointer; transition: 0.15s;
  border: 1px solid #e2e8f0; background: white;
}
.tool-select-item:hover { border-color: #94a3b8; background: #f8fafc; }
.tool-select-item.premium { border-color: #fef3c7; background: #fffbeb; }
.tool-select-item.premium:hover { border-color: #f59e0b; }
.tsi-icon {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; font-size: 1rem; flex-shrink: 0;
}
.tsi-info { flex: 1; min-width: 0; }
.tsi-name { font-size: 0.85rem; font-weight: 600; color: #0f172a; }
.tsi-desc { font-size: 0.72rem; color: #94a3b8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.tools-group-title {
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px 0;
  color: #334155;
}
.tools-group-title:after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
  margin-left: 8px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

/* skeleton loader */
.skel-card {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  min-height: 160px;
  background-image: linear-gradient(90deg, #eef2f7 25%, #e2e8f0 50%, #eef2f7 75%);
  background-size: 200% 100%;
  animation: skel-shine 1.4s infinite;
}
@keyframes skel-shine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes pop-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(124,58,237,0); }
}

.tool-card {
  background: white;
  padding: 14px 10px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  min-height: 160px;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.tool-card:hover {
  border-color: #ff4d4d;
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
  transform: translateY(-8px);
}

.tool-icon {
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f8fafc;
  transition: all 0.2s;
}

.tool-card:hover .tool-icon {
  transform: rotate(-8deg) scale(1.12);
}

.tool-card h3 {
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  color: #0f172a;
  margin: 0;
}

.tool-desc {
  font-size: 0.65rem;
  color: #64748b;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}


.tool-card .tool-icon { background: #f1f5f9; }

/* Tool usage bar */
.tool-usage {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0;
}
.tool-usage-bar {
  flex: 1;
  height: 5px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}
.tool-usage-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #2563eb);
  border-radius: 10px;
  transition: width 0.4s;
}
.tool-usage-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
  min-width: 36px;
  text-align: right;
}
.tool-usage-unlimited span {
  font-size: 0.7rem;
  color: #22c55e;
  font-weight: 600;
}
.tool-card-blocked {
  opacity: 0.65;
  border-color: #dc2626 !important;
}
.tool-card-premium {
  border-color: #f59e0b;
  background: linear-gradient(180deg, #fffbeb, #ffffff);
}
.tool-card-premium:hover {
  border-color: #f59e0b;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.22);
}
.tool-premium-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 2px 8px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.35);
}
.tool-premium-badge i {
  font-size: 0.55rem;
}
.tool-btn-blocked {
  background: #dc2626 !important;
  color: white !important;
  cursor: pointer !important;
  animation: none !important;
}
.tool-btn {
  background: var(--blue);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 4px;
  width: fit-content;
  transition: all 0.25s;
  font-family: inherit;
}

.tool-btn:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(9,132,227,0.3); }

.tool-processing {
  display: none;
  padding: 30px;
  text-align: center;
  grid-column: 1 / -1;
}

.tool-processing.active { display: block; }

.tool-result {
  display: none;
  margin-top: 12px;
  padding: 12px;
  background: #f0fdf4;
  border-radius: var(--radius-sm);
  border: 1px solid #bbf7d0;
}

.tool-result.active { display: block; }


.why-section {
  background: var(--surface);
  padding: 55px 0;
  border-top: 1px solid var(--border);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.feature {
  text-align: center;
  background: white;
  border-radius: 18px;
  padding: 30px 22px 26px;
  border: 1px solid #e8ecf0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: #d0d7de;
}

.feature:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(102,126,234,0.25);
}

.feature:hover .feature-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 8px 24px rgba(102,126,234,0.35);
}

.feature h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
  transition: color 0.3s;
}

.feature:hover h4 {
  color: #667eea;
}

.feature p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}


.pricing { padding: 55px 0; }

.plan-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

.plan {
  background: var(--surface);
  border-radius: 24px;
  padding: 30px 28px;
  box-shadow: var(--shadow-md);
  flex: 1 1 280px;
  max-width: 340px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.plan:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: var(--primary);
}

.plan:hover .price {
  transform: scale(1.05);
}

.plan:hover .btn-primary,
.plan:hover .btn-outline {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 20px var(--primary-shadow);
}

.plan .btn-primary:active,
.plan .btn-outline:active {
  transform: translateY(0) scale(0.96) !important;
}

.plan.popular {
  border: 2px solid var(--primary);
  position: relative;
  box-shadow: 0 8px 30px rgba(255,77,77,0.12);
}

.plan.popular:hover {
  box-shadow: 0 16px 45px rgba(255,77,77,0.25);
  transform: translateY(-6px);
}

.popular-tag {
  background: var(--primary);
  color: white;
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.plan h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-muted); }
.price { font-size: 2.2rem; font-weight: 800; margin: 12px 0 4px; color: var(--text); }

.plan-features { margin: 16px 0; list-style: none; flex: 1; }

.plan-features li {
  padding: 6px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}


.faq {
  background: var(--bg);
  padding: 55px 0;
}

.faq-list {
  max-width: 700px;
  margin: 22px auto 0;
}

.faq-item {
  background: var(--surface);
  padding: 16px 20px;
  border-radius: 14px;
  margin-bottom: 10px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  transition: 0.2s;
  border: 1px solid var(--border-light);
}

.faq-item:hover { border-color: var(--blue); }

.faq-item i { transition: transform 0.3s; color: var(--blue); }
.faq-item.open i { transform: rotate(180deg); color: var(--blue); }

.faq-answer {
  width: 100%;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: none;
  line-height: 1.6;
}

.faq-item.open .faq-answer { display: block; }

.faq-item.open {
  background: var(--blue-light);
  border-color: var(--blue);
}


footer {
  background: #2d3436;
  color: #b2bec3;
  padding: 50px 0 20px;
  margin-top: auto;
}
footer a { color: #b2bec3; text-decoration: none; }
footer a:hover { color: #ffffff; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 30px;
}

.footer-col h4 { color: #ff4d4d; margin-bottom: 14px; font-size: 1rem; }

.footer-col p, .footer-col li {
  margin-bottom: 8px;
  font-size: 0.88rem;
  list-style: none;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-col p:hover { color: #ffffff; }

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  opacity: 0.6;
  font-size: 0.85rem;
  border-top: 1px solid #636e72;
  padding-top: 20px;
  color: #b2bec3;
}


.cookie-bar {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface);
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  z-index: 500;
  font-size: 0.85rem;
  border: 1px solid var(--border);
}

.cookie-bar span { flex: 1; min-width: 200px; }

.cookie-bar .btn-outline { font-size: 0.8rem; padding: 6px 14px; }
.cookie-bar .btn-primary { font-size: 0.8rem; padding: 6px 14px; }


.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 22px;
  background: var(--primary);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px var(--primary-shadow);
  cursor: pointer;
  z-index: 99;
  transition: all 0.25s;
  border: none;
}

.chat-widget:hover { transform: scale(1.1); box-shadow: 0 8px 25px var(--primary-shadow); }
.chat-widget:active { transform: scale(0.95); }


.lang-widget {
  position: fixed !important;
  bottom: 24px !important;
  left: 24px !important;
  right: auto !important;
  top: auto !important;
  background: #1e293b;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px 8px 10px;
  border-radius: 28px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  cursor: pointer;
  z-index: 99999;
  transition: all 0.25s;
  border: none;
  letter-spacing: 1px;
}
.lang-widget i { font-size: 0.85rem; }
.lang-widget:hover { transform: scale(1.08); box-shadow: 0 8px 25px rgba(0,0,0,0.35); }
.lang-widget:active { transform: scale(0.95); }

.chat-panel {
  position: fixed;
  bottom: 168px;
  right: 22px;
  width: 340px;
  max-height: 460px;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  z-index: 98;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
}

.chat-header {
  background: var(--primary);
  color: white;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.chat-header i { cursor: pointer; font-size: 1.1rem; opacity: 0.8; }
.chat-header i:hover { opacity: 1; }

.chat-body {
  padding: 14px;
  overflow-y: auto;
  flex: 1;
  max-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 85%;
  font-size: 0.9rem;
  line-height: 1.5;
}

.chat-msg.bot {
  background: var(--border-light);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  background: var(--primary);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px 14px 6px;
}

.chat-chips span {
  background: #f1f5f9;
  border: 1px solid #e1e1e1;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.chat-chips span:hover {
  background: #667eea;
  color: #fff;
  border-color: #667eea;
}

.chat-chips span:active {
  transform: scale(0.95);
}

@keyframes wpPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.chat-whatsapp-note i.fa-whatsapp {
  animation: wpPulse 1.5s ease-in-out infinite;
  display: inline-block;
}

.chat-footer {
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  align-items: center;
}

.chat-footer input {
  flex: 1;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.9rem;
  outline: none;
  font-family: inherit;
  transition: 0.2s;
}

.chat-footer input:focus { border-color: var(--primary); }

.chat-footer button {
  background: var(--primary);
  color: white;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.chat-footer button:hover { background: var(--primary-hover); }


.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 22px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff4d4d, #e63946);
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 80;
  box-shadow: 0 4px 20px rgba(255,77,77,0.4);
  transition: all 0.3s ease;
  border: none;
}
.scroll-top:hover {
  background: linear-gradient(135deg, #e63946, #cc2936);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(255,77,77,0.5);
}


.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,23,42,0.5);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-overlay[style*="display:none"] { display: none !important; }

.modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 30px;
  width: 100%;
  max-width: 440px;
  position: relative;
  animation: slideUp 0.25s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.modal-lg { max-width: 600px; }

@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: 0.2s;
  line-height: 1;
}

.modal-close:hover { color: var(--text); }

.modal h2 { margin-bottom: 18px; font-size: 1.3rem; display: flex; align-items: center; gap: 8px; }



.modal-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  margin-bottom: 12px;
  outline: none;
  transition: 0.2s;
  font-family: inherit;
}

.modal-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,77,77,0.1); }

.modal-error {
  color: var(--primary);
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: none;
}

.modal-error.visible { display: block; }

/* Modal buton hover efektleri (goPremium, showPremiumPrompt) */
.pricing-buy-btn, .modal-nav-btn, .pricing-link-btn {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
}

.pricing-buy-btn:hover, .modal-nav-btn:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 6px 20px rgba(255,77,77,0.35) !important;
}

.pricing-buy-btn:active, .modal-nav-btn:active {
  transform: translateY(0) scale(0.97) !important;
}

.pricing-link-btn:hover {
  transform: translateX(4px) !important;
  opacity: 0.8 !important;
}

.modal-close-btn {
  transition: all 0.2s !important;
}

.modal-close-btn:hover {
  color: #ff4d4d !important;
  transform: rotate(90deg) scale(1.2) !important;
}


.pricing-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: default;
}

.pricing-card:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1) !important;
}

.pricing-card.popular:hover {
  box-shadow: 0 12px 35px rgba(255,77,77,0.2) !important;
}

.pricing-card:hover .pricing-buy-btn {
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 0 6px 20px rgba(255,77,77,0.4) !important;
}


.plan-summary {
  display: flex;
  gap: 12px;
  margin: 15px 0;
}

.plan-option {
  flex: 1;
  padding: 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}

.plan-option:hover { border-color: var(--primary); }
.plan-option.selected { border-color: var(--primary); background: var(--primary-light); }
.plan-option h4 { font-size: 0.95rem; margin-bottom: 4px; }


@media (max-width: 1180px) {
  .header-content { flex-wrap: nowrap; overflow: hidden; }
  .main-nav { display: none; }
  .hamburger-btn { display: inline-flex !important; align-items: center; justify-content: center; flex-shrink: 0; }
  .mobile-menu { width: 100%; left: 0; right: 0; }
  .logo-area { flex-shrink: 1; min-width: 0; }
  .logo { font-size: 1.3rem; }
  .user-actions { flex-shrink: 0; gap: 6px; }
  .user-actions .header-envelope,
  .user-actions .kvkk-badge { display: none !important; }
}

@media (max-width: 940px) {
  .top-bar { padding: 7px 0; }
  .logo-area { flex: 1 1 auto; min-width: 0; }
  .logo { font-size: 1.2rem !important; gap: 5px !important; overflow: hidden; }
  .logo i { font-size: 1.15rem !important; flex-shrink: 0; }
  .logo span { font-size: 1.2rem !important; }
  .user-actions { flex: 0 0 auto; gap: 6px; }
  .user-actions .header-envelope,
  .user-actions .kvkk-badge,
  .user-actions > .btn-outline,
  .user-actions > .btn-primary,
  .user-actions #userInfo { display: none !important; }
}

@media (max-width: 768px) {
  .top-bar { padding: 6px 0; }
  .header-content { flex-wrap: nowrap; gap: 8px; justify-content: space-between; overflow: hidden; }
  .logo-area { gap: 4px; flex-shrink: 1; min-width: 0; }
  .logo { font-size: 1.1rem; gap: 4px; }
  .logo i { font-size: 1.1rem; }
  .pro-logo { font-size: 1rem !important; }
  .main-nav { display: none; }
  .user-actions { gap: 4px; flex-shrink: 0; display: flex; align-items: center; flex-wrap: nowrap; overflow: hidden; justify-content: flex-end; }
  .user-actions .btn-outline, 
  .user-actions .btn-primary,
  .user-actions .kvkk-badge,
  .user-actions .header-envelope,
  .user-actions #userInfo { display: none !important; }
  .hamburger-btn { display: block !important; margin-left: 4px; }
  .quick-links { font-size: 0.82rem; gap: 12px; }
  .hero h1 { font-size: 1.7rem; }
  .hero .subtitle { font-size: 1rem; }
  .tools-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .tool-card { padding: 12px 8px; min-height: 155px; }
  .tool-icon { font-size: 1.1rem; width: 34px; height: 34px; }
  .chat-panel { width: calc(100% - 44px); right: 22px; bottom: 160px; }
  .modal { padding: 22px; margin: 10px; }
  .plan-summary { flex-direction: column; }
  .mobile-menu { width: 100%; left: 0; right: 0; }
}


.hamburger-btn {
  display: none; background: none; border: none; font-size: 1.5rem;
  cursor: pointer; color: #475569; padding: 4px 8px;
}
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; width: 100%;
  background: white; border-bottom: 2px solid #e2e8f0; box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 999; flex-direction: column; padding: 8px 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 20px; font-size: 0.95rem; font-weight: 500; color: #334155;
  text-decoration: none; display: flex; align-items: center; gap: 10px; transition: 0.15s;
}
.mobile-menu a:hover { background: #f8fafc; color: #ff4d4d; }
.mobile-menu a i { width: 20px; text-align: center; color: #94a3b8; }
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .logo { font-size: 1rem !important; max-width: calc(100vw - 72px); }
  .logo span { font-size: 1rem !important; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .tool-card { padding: 12px 8px; min-height: 145px; }
  .hero h1 { font-size: 1.4rem; }
  .btn-hero { padding: 11px 22px; font-size: 0.9rem; }
  .platform-icons { gap: 14px; font-size: 0.85rem; }
  .section-title { font-size: 1.3rem; }
  .tab { font-size: 0.8rem; padding: 5px 12px; }
  .plan-cards { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .compare-table { font-size: 0.72rem; }
  .plan { transform: none !important; }
  .plan .plan-features { font-size: 0.8rem; }
  .pricing-faq { padding: 0 8px; }
}

@media (max-width: 360px) {
  .container { padding: 0 10px; }
  .logo { max-width: calc(100vw - 58px); gap: 3px !important; }
  .logo span { font-size: 0.92rem !important; }
  .hamburger-btn { padding: 4px 6px; font-size: 1.25rem; }
  .tools-grid { grid-template-columns: 1fr; }
}


@media (min-width: 769px) and (max-width: 1024px) {
  .tools-grid { grid-template-columns: repeat(4, 1fr); }
  .plan-cards { gap: 12px; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}


.tool-dialog-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); display: none; align-items: center; justify-content: center;
  z-index: 10000; padding: 20px;
}
.tool-dialog {
  background: white; border-radius: 20px; padding: 32px; max-width: 420px; width: 100%;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3); position: relative;
}
.tool-dialog h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; color: #0f172a; }
.tool-dialog h3 i { color: var(--primary); margin-right: 2px; }
.tool-dialog-close {
  position: absolute; top: 16px; right: 16px; width: 30px; height: 30px;
  background: #f1f5f9; border: none; color: #64748b; border-radius: 8px;
  cursor: pointer; font-size: 1.2rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: 0.2s;
}
.tool-dialog-close:hover { background: #e2e8f0; color: #0f172a; }
.tool-dialog p.desc { font-size: 0.85rem; color: #64748b; margin-bottom: 20px; }
.tool-dialog .field { margin-bottom: 16px; }
.tool-dialog .field label { display: block; font-size: 0.82rem; font-weight: 600; color: #334155; margin-bottom: 5px; }
.tool-dialog .field input, .tool-dialog .field select {
  width: 100%; padding: 10px 14px; border: 2px solid #e2e8f0; border-radius: 10px;
  font-size: 0.9rem; font-family: inherit; outline: none; transition: 0.2s;
}
.tool-dialog .field input:focus, .tool-dialog .field select:focus { border-color: var(--primary); }


.admin-tabs { display:flex; gap:4px; flex-wrap:wrap; padding:12px 16px; background:#fff; border-bottom:1px solid #e2e8f0; position:sticky; top:0; z-index:10; }
.admin-tab { padding:8px 16px; border:none; background:#f1f5f9; color:#64748b; border-radius:10px; cursor:pointer; font-weight:600; font-size:0.85rem; transition:all 0.2s; font-family:inherit; white-space:nowrap; }
.admin-tab:hover { background:#e2e8f0; color:#334155; }
.admin-tab.active { background:#dc2626; color:#fff; box-shadow:0 2px 8px rgba(220,38,38,0.3); }
.admin-tab .fa-spin { animation:spin 1s linear infinite; }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.stat-card { cursor:pointer; transition:all 0.25s; }
.stat-card:hover { transform:translateY(-3px); box-shadow:0 8px 25px rgba(0,0,0,0.12); }
.stat-card.active { border-color:#dc2626 !important; box-shadow:0 0 0 3px rgba(220,38,38,0.15); }
#userBody tr, #epinBody tr { transition:all 0.15s; }
#userBody tr:hover, #epinBody tr:hover { background:#f8fafc; }
#userBody td, #epinBody td { padding:10px 14px; border-bottom:1px solid #f1f5f9; font-size:0.85rem; }
.badge { display:inline-block; padding:3px 10px; border-radius:20px; font-size:0.72rem; font-weight:600; }
.badge-premium { background:#fef3c7; color:#92400e; }
.badge-admin { background:#ede9fe; color:#6d28d9; }
.badge-free { background:#f1f5f9; color:#64748b; }
.badge-frozen { background:#fce7f3; color:#9d174d; }
.badge-used { background:#dcfce7; color:#166534; }
.badge-unused { background:#f1f5f9; color:#94a3b8; }
.btn-danger { background:#dc2626; color:#fff; border:none; border-radius:8px; padding:8px 16px; cursor:pointer; font-weight:600; font-size:0.82rem; font-family:inherit; transition:0.2s; }
.btn-danger:hover { background:#b91c1c; }
.btn-success { background:#16a34a; color:#fff; border:none; border-radius:8px; padding:8px 16px; cursor:pointer; font-weight:600; font-size:0.82rem; font-family:inherit; transition:0.2s; }
.btn-success:hover { background:#15803d; }
.btn-warning { background:#f59e0b; color:#fff; border:none; border-radius:8px; padding:8px 16px; cursor:pointer; font-weight:600; font-size:0.82rem; font-family:inherit; transition:0.2s; }
.btn-warning:hover { background:#d97706; }
.modal-overlay { animation:fadeIn 0.2s ease; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.modal { animation:slideUp 0.25s ease; }
@keyframes slideUp { from{transform:translateY(20px);opacity:0} to{transform:translateY(0);opacity:1} }
.notif { animation:slideDown 0.3s ease; }
@keyframes slideDown { from{transform:translateY(-20px);opacity:0} to{transform:translateY(0);opacity:1} }
.export-bar { display:flex; gap:8px; flex-wrap:wrap; }
.export-btn { padding:8px 16px; border:1px solid #e2e8f0; background:#fff; border-radius:8px; cursor:pointer; font-weight:600; font-size:0.82rem; font-family:inherit; transition:all 0.2s; }
.export-btn:hover { background:#f1f5f9; }
.export-btn.success { border-color:#16a34a; color:#16a34a; }
.export-btn.success:hover { background:#dcfce7; }
.export-btn.danger { border-color:#dc2626; color:#dc2626; }
.export-btn.danger:hover { background:#fef2f2; }
.bulk-area textarea { width:100%; min-height:100px; padding:12px; border:2px solid #e2e8f0; border-radius:10px; font-family:monospace; font-size:0.85rem; resize:vertical; }
.bulk-area textarea:focus { border-color:#dc2626; outline:none; }
.card { background:#fff; border-radius:16px; padding:20px; border:1px solid #e2e8f0; transition:all 0.2s; }
.card h2 { font-size:1.05rem; font-weight:700; color:#1e293b; margin-bottom:8px; display:flex; align-items:center; gap:8px; }
.select-input { padding:8px 12px; border:1.5px solid #e2e8f0; border-radius:8px; font-size:0.85rem; font-family:inherit; background:#fff; }
.search-input { padding:8px 14px; border:1.5px solid #e2e8f0; border-radius:8px; font-size:0.85rem; font-family:inherit; flex:1; max-width:300px; }
.search-input:focus, .select-input:focus { border-color:#dc2626; outline:none; }
.admin-body { padding:20px; max-width:1200px; margin:0 auto; }
.tab-content { display:none; animation:fadeIn 0.3s ease; }
.tab-content.active { display:block; }
.stats-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(170px,1fr)); gap:14px; margin-bottom:24px; }
#userBody td button, #epinBody td button { transition:all 0.15s; }
#userBody td button:hover, #epinBody td button:hover { transform:scale(1.05); }
.confirm-modal-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:9999; display:flex; align-items:center; justify-content:center; }
.confirm-modal { background:#fff; border-radius:16px; padding:28px; max-width:420px; width:90%; box-shadow:0 20px 60px rgba(0,0,0,0.2); text-align:center; animation:slideUp 0.25s ease; }
.confirm-modal h3 { font-size:1.1rem; margin-bottom:8px; }
.confirm-modal p { color:#64748b; font-size:0.9rem; margin-bottom:20px; }
.confirm-modal-actions { display:flex; gap:10px; justify-content:center; }
.tool-dialog .field input[type="color"] { height: 44px; padding: 4px; cursor: pointer; }
.tool-dialog .dialog-actions { display: flex; gap: 10px; margin-top: 20px; }
.tool-dialog .dialog-actions button {
  flex: 1; padding: 11px; border: none; border-radius: 10px; font-weight: 700;
  font-size: 0.9rem; cursor: pointer; font-family: inherit; transition: 0.2s;
}
.tool-dialog .btn-dialog-primary { background: var(--primary); color: white; }
.tool-dialog .btn-dialog-primary:hover { background: var(--primary-hover); }
.tool-dialog .btn-dialog-cancel { background: #f1f5f9; color: #475569; }
.tool-dialog .btn-dialog-cancel:hover { background: #e2e8f0; }


.toast {
  position: fixed; top: 20px; right: 20px; z-index: 100000;
  display: flex; align-items: flex-start; gap: 12px;
  max-width: 380px; width: max-content;
  padding: 14px 42px 14px 18px;
  border-radius: 14px;
  background: #0f172a; color: #fff; font-size: 0.88rem; font-weight: 500;
  box-shadow: 0 18px 50px rgba(15,23,42,0.35), 0 2px 8px rgba(15,23,42,0.2);
  line-height: 1.5;
  opacity: 0; transform: translateY(-20px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.21,1.02,0.73,1), transform 0.3s cubic-bezier(0.21,1.02,0.73,1);
  overflow: hidden;
}
.toast.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.toast-icon { flex-shrink: 0; font-size: 1.3rem; line-height: 1.4; }
.toast-msg { flex: 1; min-width: 0; overflow-wrap: break-word; }
.toast-msg a { color: #fff; text-decoration: underline; font-weight: 700; }
.toast-close {
  position: absolute; top: 8px; right: 8px;
  border: 0; background: rgba(255,255,255,0.16); color: #fff;
  width: 22px; height: 22px; border-radius: 50%; cursor: pointer;
  font-size: 0.85rem; line-height: 1; padding: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.toast-close:hover { background: rgba(255,255,255,0.32); }
.toast-bar {
  position: absolute; left: 0; bottom: 0; height: 3px;
  width: 100%; background: rgba(255,255,255,0.9);
}
.toast.success { background: linear-gradient(135deg,#059669,#10b981); }
.toast.error { background: linear-gradient(135deg,#dc2626,#f43f5e); }
.toast.warning { background: linear-gradient(135deg,#d97706,#f59e0b); }
.toast.info { background: linear-gradient(135deg,#2563eb,#3b82f6); }
@media (max-width: 480px) { .toast { left: 16px; right: 16px; max-width: none; width: auto; } }

/* === MOBIL PANEL UYUMU === */
@media (max-width: 720px) {
  /* Panel padding küçült */
  [style*="max-width:720px"] {
    padding: 14px !important;
    margin: 10px auto 0 !important;
    border-radius: 12px !important;
  }
  /* 2 sütunlu grid → tek sütun */
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Grid auto-fill min 120 → 90 */
  [style*="minmax(120px"] {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)) !important;
  }
  [style*="minmax(140px"] {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)) !important;
  }
  [style*="minmax(150px"] {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)) !important;
  }
  [style*="minmax(130px"] {
    grid-template-columns: repeat(auto-fill, minmax(105px, 1fr)) !important;
  }
  /* Başlık font küçült */
  [style*="font-size:1.05rem"] {
    font-size: 0.95rem !important;
  }
  /* Range input kalınlaştır */
  input[type="range"] {
    height: 8px !important;
    margin: 8px 0 !important;
  }
  /* Renk seçici büyüt */
  input[type="color"] {
    height: 48px !important;
    min-width: 48px !important;
  }
  /* Butonlar min 40px yükseklik */
  button {
    min-height: 38px;
  }
  /* Select büyüt */
  select {
    min-height: 40px !important;
    font-size: 0.9rem !important;
  }
  /* Input büyüt */
  input[type="text"], input[type="number"], input[type="password"] {
    min-height: 40px !important;
    font-size: 0.9rem !important;
  }
  /* Tool-zone padding */
  .tool-zone {
    margin: 14px auto 6px !important;
    padding: 0 12px !important;
  }
}

@media (max-width: 480px) {
  [style*="max-width:720px"] {
    padding: 12px !important;
  }
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Font küçült */
  [style*="font-size:0.82rem"] {
    font-size: 0.78rem !important;
  }
}

/* === GECICI: UYELIK SISTEMI KAPALI === */
/* Ileride uyelik acilinca bu blogu sil veya yorum yap */
#loginBtn,
#signupBtn,
#userInfo,
.hdr-actions a[href*="auth.html"],
.hdr-actions a[href*="account.html"],
.ed-header .hdr-actions a[href*="account.html"],
.top-bar .user-actions .btn-outline,
.top-bar .user-actions .btn-primary,
.top-bar #loginBtn,
.top-bar #signupBtn,
.top-bar #userInfo {
  display: none !important;
}

/* Gecici: uyelik kapali - daha spesifik */
a#loginBtn,
a#signupBtn,
div#userInfo,
.header-actions a#loginBtn,
.header-actions a#signupBtn,
.header-actions div#userInfo,
.top-bar a#loginBtn,
.top-bar a#signupBtn,
.top-bar div#userInfo {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
