﻿body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
}

/* --- HEADER --- */
header {
  background: #0A1128;
  color: #ffffff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo alanÄ± */
.logo-area {
  display: flex;
  flex-direction: column;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, #00F7A3, #40E0FF);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 14px rgba(0, 247, 163, 0.8);
}

.subtitle {
  font-size: 12px;
  color: #A9B4C9;
  margin-top: -4px;
}

/* Blog yazÄ±sÄ± */
.blog-link {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  margin-left: 16px;
  letter-spacing: 0.3px;
  transition: 0.15s;
}

.blog-link:hover {
  color: #00F7A3;
  text-shadow: 0 0 6px rgba(0, 247, 163, 0.6);
}

/* Arama */
.search-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 20px;
}

.search-input {
  border: none;
  outline: none;
  width: 260px;
  font-size: 14px;
  color: #0A1128;
}

.search-input::placeholder {
  color: #6C7A96;
}

.search-btn {
  background: none;
  border: none;
  font-size: 17px;
  color: #00F7A3;
  cursor: pointer;
  padding: 0 4px;
  transition: 0.15s ease;
}

.search-btn:hover {
  color: #40E0FF;
  text-shadow: 0 0 6px rgba(0,247,163,0.5);
}

/* SaÄŸ Ã‡ubuk */
.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Butonlar */
.header-btn {
  border: none;
  background: #ffffff;
  color: #0A1128;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
}

.header-btn:hover {
  background: #00F7A3;
}

/* Hizmetler ve Profil iÃ§in kÃ¼Ã§Ã¼k kapsayÄ±cÄ±lar */
.dropdown-wrapper,
.profile-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* Profil Avatar */
.header-profile-photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00F7A3;
  cursor: pointer;
  display: none;
}

/* KullanÄ±cÄ± adÄ± */
.header-username {
  font-size: 11px;
  color: #ffffff;
  text-align: center;
  margin-top: 4px;
  display: none;
}

/* Dropdown ortak stil */
.menu-dropdown {
  background: #ffffff;
  border-radius: 12px;
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 150px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
  animation: dropdown .18s ease forwards;
  position: absolute;
  z-index: 2000;
}

.menu-dropdown a {
  text-decoration: none;
  color: #0A1128;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 13px;
}

.menu-dropdown a:hover {
  background: #00F7A3;
}

/* ğŸ”¥ Hizmetler menÃ¼sÃ¼ â†’ Hizmetler butonunun TAM altÄ± */
.dropdown-wrapper #servicesMenu {
  top: 50px;
  right: -20;
}

/* ğŸ”¥ Profil menÃ¼sÃ¼ â†’ AvatarÄ±n altÄ±, biraz sola */
.profile-wrapper #profileMenu {
  top: 52px;
  left: -50%;
  transform: translateX(20%); /* Ã§ok sola giderse -60 / -50 yaparsÄ±n */
}

/* Dropdown animasyonu */
@keyframes dropdown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0px); }
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.hidden {
  display: none;
}

/* style.css iÃ§inde .modal-content bloÄŸunu bul ve deÄŸiÅŸtir */
.modal-content {
  background: #ffffff !important;   /* Arka plan beyaz */
  color: #0A1128 !important;        /* YazÄ±lar lacivert */
  padding: 30px;
  width: 90%;
  max-width: 400px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15); /* GÃ¶lgeyi yumuÅŸattÄ±k */
  max-height: 85vh; 
  overflow-y: auto;
  text-align: center;
  align-items: stretch;
}

.modal-content input {
  padding: 10px;
  border: none;
  border-radius: 8px;
  outline: none;
}

.modal-btn {
  background: #00F7A3;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.modal-btn:hover {
  background: #40E0FF;
}

.close-btn {
  align-self: flex-end;
  cursor: pointer;
  font-size: 20px;
}

.switch-auth {
  font-size: 13px;
  text-align: center;
}

.link {
  cursor: pointer;
  color: #00F7A3;
}
@media (max-width: 900px) {
  .search-box {
    width: 200px;
  }
}
@media (max-width: 720px) {
  header {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }

  .search-box {
    width: 90%;
    max-width: 360px;
  }

  .header-buttons {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-row {
    gap: 16px;
  }

  .search-box {
    width: 100%;
    max-width: 260px;
  }

  /* MenÃ¼lerin Ã§ok saÄŸa taÅŸmasÄ±nÄ± engelleme */
  #servicesMenu, #profileMenu {
    right: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}
.search-box {
  transition: 0.25s ease;
}

.search-box:focus-within {
  width: 320px;
  background: #ffffff;
  box-shadow: 0 0 6px rgb(255, 255, 255);
}
/* Arama Focus BÃ¼yÃ¼me + IÅŸÄ±k Efekti */
.search-box.focused {
  width: 380px;
  background: #ffffff;
  border: 2px solid #00F7A3;
  box-shadow: 0 0 18px rgba(0, 247, 163, 0.45);
  transition: all .25s ease;
}

/* Focus iÃ§i ikonu hizala */
.search-box.focused .search-btn {
  margin-left: 8px;
}

/* Daha hafif kararma */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25); /* Daha aÃ§Ä±k */
  z-index: 50;
}

.overlay.hidden {
  display: none;
}

/* Etiket Paneli Modern Beyaz */
.search-tags {
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-radius: 14px;
  border: 2px solid #00F7A3;
  box-shadow: 0 12px 26px rgba(0,0,0,0.15);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.search-tags.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(6px);
}

.tag {
  padding: 10px 16px;
  background: #e6fff6;
  color: #0A1128;
  font-size: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  border: 1px solid #00F7A3;
  transition: .15s;
}

.tag:hover {
  background: #00F7A3;
  color: #0A1128;
  box-shadow: 0 0 10px rgba(0,247,163,0.4);
}
/* ğŸ” Arama kutusu odak animasyonu dÃ¼zeltme */
.search-box {
  position: relative;
  transition: all .25s ease;
}

.search-box.focused {
  width: 420px; /* geniÅŸleme â†’ saÄŸa doÄŸru */
  background: #ffffff;
  border: 2px solid #00F7A3;
  box-shadow: 0 0 18px rgba(0, 247, 163, 0.4);
}

/* ğŸ” Ä°konun saÄŸa hizalanmasÄ± */
.search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: right .25s ease;
}

/* Fokus olunca ikon daha saÄŸa aÃ§Ä±lsÄ±n */
.search-box.focused .search-btn {
  right: 16px;
}

/* Placeholder solda kalsÄ±n */
.search-input {
  padding-right: 40px;
}
/* ğŸ”¥ Arama Kutusu Focus GeliÅŸtirilmiÅŸ */
.search-box {
  position: relative;
  z-index: 1100; /* Overlay'in ÃœSTÃœNDE */
  width: 260px;
  transition: all .28s ease-out;
}

.search-box.focused {
  width: 430px;
  background: #ffffff;
  border: 2px solid #00F7A3;
  box-shadow: 0 0 25px rgba(0, 247, 163, 0.4);
  border-radius: 12px;
}

/* ğŸ” Ä°kon hizalama */
.search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  transition: .28s ease;
}

.search-box.focused .search-btn {
  right: 16px;
}

/* âœ Input daha geniÅŸ yazma alanÄ± */
.search-input {
  padding-right: 40px;
}

/* ğŸŒ« Hafif odak karartmasÄ± - daha aÃ§Ä±k */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.15); /* Daha Åeffaf */
  backdrop-filter: blur(1px);
  z-index: 100;
  transition: opacity .28s ease;
}

.overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ğŸ¯ Etiketler arama kutusunun hizasÄ±nda */
.search-tags {
  top: 60px;
  width: 430px; /* Arama geniÅŸliÄŸiyle eÅŸit */
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 12px;
  border-radius: 10px;
  border: 2px solid #00F7A3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 1200; /* AramanÄ±n da Ã¼stÃ¼nde */
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.search-tags.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(10px);
}
/* Gradient yazÄ± â€“ %100 uyumlu */
.gradient-text {
  background: linear-gradient(135deg, #00F7A3, #40E0FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
  font-weight: 900;
  display: inline-block; /* Ã¶nemli */
}
/* Gradient yazÄ± â€“ %100 Ã§alÄ±ÅŸÄ±r */
.gradient-text{
  background: linear-gradient(135deg, #00F7A3, #40E0FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 900;
  display: inline-block;
}

/* Sabit header */
.fixed-header{position:fixed;top:0;left:0;right:0;z-index:1000;box-shadow:0 6px 20px rgba(0,0,0,0.2);}

/* Blog aktif link */
.blog-link.active{color:#00F7A3 !important;text-shadow:0 0 10px rgba(0,247,163,0.7);}

/* Ä°Ã§erik header altÄ±na gelsin */
.main-content{margin-top:90px;padding:20px;max-width:1200px;margin-left:auto;margin-right:auto;}

/* Hero */
.blog-hero{background:linear-gradient(135deg,#00F7A3,#00C4B8);padding:100px 20px 80px;text-align:center;color:#0F172A;}
.blog-hero h1{font-size:42px;font-weight:900;margin:0 0 16px;}
.blog-hero p{font-size:19px;max-width:700px;margin:0 auto 30px;opacity:0.95;}
.hero-buttons{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-top:20px;}
.btn-primary{background:#0F172A;color:#fff;border:none;padding:14px 28px;border-radius:12px;font-weight:700;cursor:pointer;font-size:16px;}
.btn-ghost{background:transparent;color:#0F172A;border:2px solid #0F172A;padding:12px 26px;border-radius:12px;font-weight:700;cursor:pointer;font-size:16px;}

/* Tablar */
.tab-container{display:flex;justify-content:center;background:#fff;padding:12px 0;border-bottom:1px solid #eee;position:sticky;top:74px;z-index:900;background:rgba(255,255,255,0.95);backdrop-filter:blur(10px);}
.tab-btn{padding:12px 32px;border:none;background:transparent;font-weight:600;font-size:16px;cursor:pointer;border-radius:8px;transition:0.2s;}
.tab-btn.active{background:#00F7A3;color:#0F172A;}

/* Tab iÃ§eriÄŸi */
.tab-content{display:none;padding:40px 0;}
.tab-content.active{display:block;}

/* Blog kartlarÄ± */
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:28px;margin-bottom:50px;}
.blog-card{background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 8px 30px rgba(0,0,0,0.1);transition:0.3s;cursor:pointer;}
.blog-card:hover{transform:translateY(-12px);box-shadow:0 20px 50px rgba(0,247,163,0.25);}
.blog-thumb{width:100%;height:200px;object-fit:cover;}
.blog-info{padding:20px;}
.blog-title{font-size:18px;font-weight:700;margin-bottom:10px;color:#0F172A;line-height:1.4;}
.blog-excerpt{font-size:14px;color:#64748B;margin-bottom:14px;line-height:1.5;}
.blog-meta{font-size:13px;color:#94A3B8;display:flex;justify-content:space-between;}

/* Soru kartlarÄ± */
.qa-list{display:flex;flex-direction:column;gap:18px;margin-bottom:50px;}
.qa-card{background:#fff;padding:22px;border-radius:14px;box-shadow:0 6px 25px rgba(0,0,0,0.08);transition:0.2s;}
.qa-card:hover{box-shadow:0 12px 40px rgba(0,247,163,0.18);}
.qa-card h3{font-size:17px;margin:0 0 12px;color:#0F172A;line-height:1.5;}
.qa-stats{font-size:14px;color:#64748B;display:flex;gap:20px;flex-wrap:wrap;}

/* Butonlar */
.load-more,.ask-center button{display:block;margin:50px auto;padding:14px 40px;font-size:16px;font-weight:700;border-radius:12px;cursor:pointer;border:none;}
.load-more{background:transparent;border:2px solid #00F7A3;color:#00F7A3;}
.load-more:hover{background:#00F7A3;color:#0F172A;}

/* Footer */
.site-footer{background:#0A1128;color:#fff;padding:70px 20px 40px;margin-top:100px;}
.footer-content{max-width:1200px;margin:auto;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:30px;}
.footer-links a{color:#94A3B8;margin-left:24px;text-decoration:none;font-size:14px;}
.footer-links a:hover{color:#00F7A3;}

/* Mobil */
@media(max-width:768px){
  .blog-hero h1{font-size:32px;}
  .blog-hero p{font-size:17px;}
  .hero-buttons{flex-direction:column;align-items:center;}
  .btn-primary,.btn-ghost{width:80%;max-width:300px;}
  .blog-grid{grid-template-columns:1fr;}
  .tab-btn{padding:10px 20px;font-size:15px;}
}
/* ====== ORTAK FORM KONTROLLERÄ° (Site genelinde) ====== */
.form-control {
  padding: 10px 14px;
  border-radius: 12px;              /* site butonlarÄ± gibi yumuÅŸak */
  border: 1px solid #e2e8f0;
  background: #ffffff;
  font-size: 14px;
  outline: none;
  transition: 0.18s ease;
}

.form-control:focus {
  border-color: #00F7A3;
  box-shadow: 0 0 0 4px rgba(0, 247, 163, 0.15);
}

/* Ä°stersen â€œkeskinâ€ gÃ¶rÃ¼nÃ¼mÃ¼ azaltÄ±r */
.form-control:hover {
  border-color: #cbd5e1;
}
/* --- SAIDO 3D GÃœNCELLEMELER --- */

/* 1. Header STL Linki: Normalde Beyaz, Hover'da Neo YeÅŸil */
header .blog-link.active {
    color: #ffffff !important; /* Aktifken de beyaz baÅŸlasÄ±n */
    text-shadow: none;
    transition: all 0.3s ease;
}

header .blog-link:hover, 
header .blog-link.active:hover {
    color: #00F7A3 !important; /* Ãœzerine gelince Neo YeÅŸil */
    text-shadow: 0 0 10px rgba(0, 247, 163, 0.5);
}

/* 2. Filtre MenÃ¼sÃ¼ (En Yeni/PopÃ¼ler) YumuÅŸatma */
.filter-row {
    background: #f8fafc;
    padding: 15px;
    border-radius: 20px; /* Siteye uyumlu tam yuvarlak kenarlar */
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
}

.filter-row .form-control {
    border-radius: 15px !important; /* Select ve Input iÃ§leri de yumuÅŸatÄ±ldÄ± */
}

/* 3. STL YÃ¼kleme AlanÄ± KÃ¼Ã§Ã¼ltme ve DÃ¼zenleme */
#stlUploadModal .modal-content {
    max-width: 450px !important; /* Alan daraltÄ±ldÄ± */
    padding: 25px;
    border-radius: 24px;
}

/* Yasal Åartlar Scroll AlanÄ± */
.legal-terms-box {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 12px;
    height: 100px;
    overflow-y: auto;
    font-size: 11px;
    color: #475569;
    margin: 15px 0;
    line-height: 1.4;
}

.legal-terms-box strong {
    color: #0F172A;
    display: block;
    margin-bottom: 5px;
}
/* --- STL MODAL DÃœZELTMESÄ° --- */

/* Modal iÃ§i genel yazÄ± rengini koyu yap */
#stlUploadModal .modal-content {
    color: #0A1128 !important;
}

/* Checkbox (Kutucuk) yanÄ±ndaki yazÄ±larÄ± gÃ¶rÃ¼nÃ¼r yap */
.checkbox-group label {
    color: #1e293b !important; /* Koyu gri */
    font-size: 13px !important;
    font-weight: 600;
    cursor: pointer;
}

/* Yasal metin kutusunu daha okunaklÄ± yap */
.legal-terms-box {
    background: #f8fafc;
    color: #334155;
    border: 1px solid #cbd5e1;
}
/* --- Ä°Ã‡ Ä°Ã‡E YORUM STÄ°LLERÄ° (Instagram TarzÄ±) --- */

/* YanÄ±tlar ana yorumun altÄ±na saÄŸa kayarak gelir */
.replies {
    margin-left: 50px; /* SaÄŸa kaydÄ±rma miktarÄ± */
    border-left: 2px solid #e2e8f0; /* Sol tarafa ince Ã§izgi */
    padding-left: 15px;
    margin-top: 10px;
}

/* YanÄ±t kartÄ± biraz daha kompakt olsun */
.comment.reply {
    padding: 10px 0;
    border-bottom: none; /* YanÄ±tlar arasÄ± Ã§izgi olmasÄ±n */
}

.comment.reply .comment-avatar {
    width: 32px; /* YanÄ±t avatarÄ± biraz kÃ¼Ã§Ã¼k */
    height: 32px;
}

.comment.reply .comment-text {
    font-size: 14px;
}

/* @Mention Rengi (KullanÄ±cÄ± AdÄ±) */
.mention {
    color: #00F7A3;
    font-weight: 800;
    cursor: pointer;
}

/* EÄŸer mention doÄŸrudan oturumdaki kullanÄ±cÄ±yÄ± iÅŸaretliyorsa Ã¶ne Ã§Ä±kar */
.mention-me, .mention-tag.mention-me {
    color: #00F7A3 !important;
    background: rgba(0,247,163,0.08);
    padding: 2px 6px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,247,163,0.08);
}

/* YanÄ±ta YanÄ±t Verme Butonu */
.reply-toggle {
    font-size: 13px;
    color: #64748B;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    padding: 0;
    margin-top: 4px;
}
.reply-toggle:hover {
    color: #00F7A3;
    text-decoration: underline;
}

/* Gizli YanÄ±t Formu */
.reply-form textarea, .nested-reply-form input {
    border: 2px solid #e2e8f0;
    transition: 0.2s;
}
.reply-form textarea:focus, .nested-reply-form input:focus {
    border-color: #00F7A3;
    outline: none;
}
/* --- BÄ°LDÄ°RÄ°M SÄ°STEMÄ° --- */

/* KapsayÄ±cÄ± (Header'daki butonun etrafÄ±) */
.notification-wrapper {
    position: relative;
    display: inline-block;
}

/* KÄ±rmÄ±zÄ± Rozet (SayÄ±) */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444; /* KÄ±rmÄ±zÄ± */
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: none; /* SayÄ± yoksa gizli */
    z-index: 10;
}

/* AÃ§Ä±lÄ±r MenÃ¼ */
.notification-dropdown {
    position: absolute;
    top: 50px;
    right: -80px; /* Mobilde taÅŸmasÄ±n diye ayar */
    width: 320px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 1px solid #f1f5f9;
    display: none;
    flex-direction: column;
    z-index: 2500;
    max-height: 400px;
    overflow-y: auto;
    animation: dropdown .2s ease forwards;
}

.notification-dropdown.active {
    display: flex;
}

/* Bildirim BaÅŸlÄ±ÄŸÄ± */
.notif-header {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    color: #0A1128;
    background: #f8fafc;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
}

/* Avatar ve Ä°kon wrapper */
.notif-avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.notif-avatar-wrapper .notif-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e6eef2;
}

/* TÃ¼rÃ¼ gÃ¶steren ikonlar */
.notif-type-icon {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #00F7A3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border: 2px solid white;
    font-weight: bold;
}

/* Tekil Bildirim Kutusu */
.notif-item {
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    transition: 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.notif-item:hover {
    background: #f0fdf9; /* Hover olunca hafif yeÅŸil */
}

.notif-item.unread {
    background: #eef2ff; /* OkunmamÄ±ÅŸsa hafif mavi */
    border-left: 3px solid #00F7A3;
}

.notif-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.notif-content {
    font-size: 13px;
    color: #334155;
}

.notif-content strong {
    color: #0A1128;
}

.notif-time {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    margin-top: 4px;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
}

/* --- HEADER --- */
header {
  background: #0A1128;
  color: #ffffff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo alanÄ± */
.logo-area {
  display: flex;
  flex-direction: column;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, #00F7A3, #40E0FF);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 14px rgba(0, 247, 163, 0.8);
}

.subtitle {
  font-size: 12px;
  color: #A9B4C9;
  margin-top: -4px;
}

/* Blog yazÄ±sÄ± */
.blog-link {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  margin-left: 16px;
  letter-spacing: 0.3px;
  transition: 0.15s;
}

.blog-link:hover {
  color: #00F7A3;
  text-shadow: 0 0 6px rgba(0, 247, 163, 0.6);
}

/* Arama */
.search-box {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 20px;
}

.search-input {
  border: none;
  outline: none;
  width: 260px;
  font-size: 14px;
  color: #0A1128;
}

.search-input::placeholder {
  color: #6C7A96;
}

.search-btn {
  background: none;
  border: none;
  font-size: 17px;
  color: #00F7A3;
  cursor: pointer;
  padding: 0 4px;
  transition: 0.15s ease;
}

.search-btn:hover {
  color: #40E0FF;
  text-shadow: 0 0 6px rgba(0,247,163,0.5);
}

/* SaÄŸ Ã‡ubuk */
.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Butonlar */
.header-btn {
  border: none;
  background: #ffffff;
  color: #0A1128;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
}

.header-btn:hover {
  background: #00F7A3;
}

/* Hizmetler ve Profil iÃ§in kÃ¼Ã§Ã¼k kapsayÄ±cÄ±lar */
.dropdown-wrapper,
.profile-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* Profil Avatar */
.header-profile-photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00F7A3;
  cursor: pointer;
  display: none;
}

/* KullanÄ±cÄ± adÄ± */
.header-username {
  font-size: 11px;
  color: #ffffff;
  text-align: center;
  margin-top: 4px;
  display: none;
}

/* Dropdown ortak stil */
.menu-dropdown {
  background: #ffffff;
  border-radius: 12px;
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 150px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
  animation: dropdown .18s ease forwards;
  position: absolute;
  z-index: 2000;
}

.menu-dropdown a {
  text-decoration: none;
  color: #0A1128;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 13px;
}

.menu-dropdown a:hover {
  background: #00F7A3;
}

/* ğŸ”¥ Hizmetler menÃ¼sÃ¼ â†’ Hizmetler butonunun TAM altÄ± */
.dropdown-wrapper #servicesMenu {
  top: 50px;
  right: -20;
}

/* ğŸ”¥ Profil menÃ¼sÃ¼ â†’ AvatarÄ±n altÄ±, biraz sola */
.profile-wrapper #profileMenu {
  top: 52px;
  left: -50%;
  transform: translateX(20%); /* Ã§ok sola giderse -60 / -50 yaparsÄ±n */
}

/* Dropdown animasyonu */
@keyframes dropdown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0px); }
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.hidden {
  display: none;
}

/* --- MODAL SCROLL DÃœZELTMESÄ° --- */
.modal-content {
  background: #0A1128;
  color: white;
  padding: 24px;
  width: 90%; /* Mobilde geniÅŸlik ayarÄ± */
  max-width: 400px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,247,163,0.25);
  
  /* ğŸ”¥ BURASI EKLENDÄ°: Ekran kÃ¼Ã§Ã¼kse kaydÄ±rma Ã§ubuÄŸu Ã§Ä±kar */
  max-height: 85vh; 
  overflow-y: auto;
}

.modal-content input {
  padding: 10px;
  border: none;
  border-radius: 8px;
  outline: none;
}

.modal-btn {
  background: #00F7A3;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.modal-btn:hover {
  background: #40E0FF;
}

.close-btn {
  align-self: flex-end;
  cursor: pointer;
  font-size: 20px;
}

.switch-auth {
  font-size: 13px;
  text-align: center;
}

.link {
  cursor: pointer;
  color: #00F7A3;
}
@media (max-width: 900px) {
  .search-box {
    width: 200px;
  }
}
@media (max-width: 720px) {
  header {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }

  .search-box {
    width: 90%;
    max-width: 360px;
  }

  .header-buttons {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-row {
    gap: 16px;
  }

  .search-box {
    width: 100%;
    max-width: 260px;
  }

  /* MenÃ¼lerin Ã§ok saÄŸa taÅŸmasÄ±nÄ± engelleme */
  #servicesMenu, #profileMenu {
    right: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}
.search-box {
  transition: 0.25s ease;
}

.search-box:focus-within {
  width: 320px;
  background: #ffffff;
  box-shadow: 0 0 6px rgb(255, 255, 255);
}
/* Arama Focus BÃ¼yÃ¼me + IÅŸÄ±k Efekti */
.search-box.focused {
  width: 380px;
  background: #ffffff;
  border: 2px solid #00F7A3;
  box-shadow: 0 0 18px rgba(0, 247, 163, 0.45);
  transition: all .25s ease;
}

/* Focus iÃ§i ikonu hizala */
.search-box.focused .search-btn {
  margin-left: 8px;
}

/* Daha hafif kararma */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25); /* Daha aÃ§Ä±k */
  z-index: 50;
}

.overlay.hidden {
  display: none;
}

/* Etiket Paneli Modern Beyaz */
.search-tags {
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-radius: 14px;
  border: 2px solid #00F7A3;
  box-shadow: 0 12px 26px rgba(0,0,0,0.15);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.search-tags.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(6px);
}

.tag {
  padding: 10px 16px;
  background: #e6fff6;
  color: #0A1128;
  font-size: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  border: 1px solid #00F7A3;
  transition: .15s;
}

.tag:hover {
  background: #00F7A3;
  color: #0A1128;
  box-shadow: 0 0 10px rgba(0,247,163,0.4);
}
/* ğŸ” Arama kutusu odak animasyonu dÃ¼zeltme */
.search-box {
  position: relative;
  transition: all .25s ease;
}

.search-box.focused {
  width: 420px; /* geniÅŸleme â†’ saÄŸa doÄŸru */
  background: #ffffff;
  border: 2px solid #00F7A3;
  box-shadow: 0 0 18px rgba(0, 247, 163, 0.4);
}

/* ğŸ” Ä°konun saÄŸa hizalanmasÄ± */
.search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: right .25s ease;
}

/* Fokus olunca ikon daha saÄŸa aÃ§Ä±lsÄ±n */
.search-box.focused .search-btn {
  right: 16px;
}

/* Placeholder solda kalsÄ±n */
.search-input {
  padding-right: 40px;
}
/* ğŸ”¥ Arama Kutusu Focus GeliÅŸtirilmiÅŸ */
.search-box {
  position: relative;
  z-index: 1100; /* Overlay'in ÃœSTÃœNDE */
  width: 260px;
  transition: all .28s ease-out;
}

.search-box.focused {
  width: 430px;
  background: #ffffff;
  border: 2px solid #00F7A3;
  box-shadow: 0 0 25px rgba(0, 247, 163, 0.4);
  border-radius: 12px;
}

/* ğŸ” Ä°kon hizalama */
.search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  transition: .28s ease;
}

.search-box.focused .search-btn {
  right: 16px;
}

/* âœ Input daha geniÅŸ yazma alanÄ± */
.search-input {
  padding-right: 40px;
}

/* ğŸŒ« Hafif odak karartmasÄ± - daha aÃ§Ä±k */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.15); /* Daha Åeffaf */
  backdrop-filter: blur(1px);
  z-index: 100;
  transition: opacity .28s ease;
}

.overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ğŸ¯ Etiketler arama kutusunun hizasÄ±nda */
.search-tags {
  top: 60px;
  width: 430px; /* Arama geniÅŸliÄŸiyle eÅŸit */
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 12px;
  border-radius: 10px;
  border: 2px solid #00F7A3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 1200; /* AramanÄ±n da Ã¼stÃ¼nde */
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.search-tags.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(10px);
}
/* Gradient yazÄ± â€“ %100 uyumlu */
.gradient-text {
  background: linear-gradient(135deg, #00F7A3, #40E0FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
  font-weight: 900;
  display: inline-block; /* Ã¶nemli */
}
/* Gradient yazÄ± â€“ %100 Ã§alÄ±ÅŸÄ±r */
.gradient-text{
  background: linear-gradient(135deg, #00F7A3, #40E0FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 900;
  display: inline-block;
}

/* Sabit header */
.fixed-header{position:fixed;top:0;left:0;right:0;z-index:1000;box-shadow:0 6px 20px rgba(0,0,0,0.2);}

/* Blog aktif link */
.blog-link.active{color:#00F7A3 !important;text-shadow:0 0 10px rgba(0,247,163,0.7);}

/* Ä°Ã§erik header altÄ±na gelsin */
.main-content{margin-top:90px;padding:20px;max-width:1200px;margin-left:auto;margin-right:auto;}

/* Hero */
.blog-hero{background:linear-gradient(135deg,#00F7A3,#00C4B8);padding:100px 20px 80px;text-align:center;color:#0F172A;}
.blog-hero h1{font-size:42px;font-weight:900;margin:0 0 16px;}
.blog-hero p{font-size:19px;max-width:700px;margin:0 auto 30px;opacity:0.95;}
.hero-buttons{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-top:20px;}
.btn-primary{background:#0F172A;color:#fff;border:none;padding:14px 28px;border-radius:12px;font-weight:700;cursor:pointer;font-size:16px;}
.btn-ghost{background:transparent;color:#0F172A;border:2px solid #0F172A;padding:12px 26px;border-radius:12px;font-weight:700;cursor:pointer;font-size:16px;}

/* Tablar */
.tab-container{display:flex;justify-content:center;background:#fff;padding:12px 0;border-bottom:1px solid #eee;position:sticky;top:74px;z-index:900;background:rgba(255,255,255,0.95);backdrop-filter:blur(10px);}
.tab-btn{padding:12px 32px;border:none;background:transparent;font-weight:600;font-size:16px;cursor:pointer;border-radius:8px;transition:0.2s;}
.tab-btn.active{background:#00F7A3;color:#0F172A;}

/* Tab iÃ§eriÄŸi */
.tab-content{display:none;padding:40px 0;}
.tab-content.active{display:block;}

/* Blog kartlarÄ± */
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:28px;margin-bottom:50px;}
.blog-card{background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 8px 30px rgba(0,0,0,0.1);transition:0.3s;cursor:pointer;}
.blog-card:hover{transform:translateY(-12px);box-shadow:0 20px 50px rgba(0,247,163,0.25);}
.blog-thumb{width:100%;height:200px;object-fit:cover;}
.blog-info{padding:20px;}
.blog-title{font-size:18px;font-weight:700;margin-bottom:10px;color:#0F172A;line-height:1.4;}
.blog-excerpt{font-size:14px;color:#64748B;margin-bottom:14px;line-height:1.5;}
.blog-meta{font-size:13px;color:#94A3B8;display:flex;justify-content:space-between;}

/* Soru kartlarÄ± */
.qa-list{display:flex;flex-direction:column;gap:18px;margin-bottom:50px;}
.qa-card{background:#fff;padding:22px;border-radius:14px;box-shadow:0 6px 25px rgba(0,0,0,0.08);transition:0.2s;}
.qa-card:hover{box-shadow:0 12px 40px rgba(0,247,163,0.18);}
.qa-card h3{font-size:17px;margin:0 0 12px;color:#0F172A;line-height:1.5;}
.qa-stats{font-size:14px;color:#64748B;display:flex;gap:20px;flex-wrap:wrap;}

/* Butonlar */
.load-more,.ask-center button{display:block;margin:50px auto;padding:14px 40px;font-size:16px;font-weight:700;border-radius:12px;cursor:pointer;border:none;}
.load-more{background:transparent;border:2px solid #00F7A3;color:#00F7A3;}
.load-more:hover{background:#00F7A3;color:#0F172A;}

/* Footer */
.site-footer{background:#0A1128;color:#fff;padding:70px 20px 40px;margin-top:100px;}
.footer-content{max-width:1200px;margin:auto;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:30px;}
.footer-links a{color:#94A3B8;margin-left:24px;text-decoration:none;font-size:14px;}
.footer-links a:hover{color:#00F7A3;}

/* Mobil */
@media(max-width:768px){
  .blog-hero h1{font-size:32px;}
  .blog-hero p{font-size:17px;}
  .hero-buttons{flex-direction:column;align-items:center;}
  .btn-primary,.btn-ghost{width:80%;max-width:300px;}
  .blog-grid{grid-template-columns:1fr;}
  .tab-btn{padding:10px 20px;font-size:15px;}
}
/* ====== ORTAK FORM KONTROLLERÄ° (Site genelinde) ====== */
.form-control {
  padding: 10px 14px;
  border-radius: 12px;              /* site butonlarÄ± gibi yumuÅŸak */
  border: 1px solid #e2e8f0;
  background: #ffffff;
  font-size: 14px;
  outline: none;
  transition: 0.18s ease;
}

.form-control:focus {
  border-color: #00F7A3;
  box-shadow: 0 0 0 4px rgba(0, 247, 163, 0.15);
}

/* Ä°stersen â€œkeskinâ€ gÃ¶rÃ¼nÃ¼mÃ¼ azaltÄ±r */
.form-control:hover {
  border-color: #cbd5e1;
}
/* --- SAIDO 3D GÃœNCELLEMELER --- */

/* 1. Header STL Linki: Normalde Beyaz, Hover'da Neo YeÅŸil */
header .blog-link.active {
    color: #ffffff !important; /* Aktifken de beyaz baÅŸlasÄ±n */
    text-shadow: none;
    transition: all 0.3s ease;
}

header .blog-link:hover, 
header .blog-link.active:hover {
    color: #00F7A3 !important; /* Ãœzerine gelince Neo YeÅŸil */
    text-shadow: 0 0 10px rgba(0, 247, 163, 0.5);
}

/* 2. Filtre MenÃ¼sÃ¼ (En Yeni/PopÃ¼ler) YumuÅŸatma */
.filter-row {
    background: #f8fafc;
    padding: 15px;
    border-radius: 20px; /* Siteye uyumlu tam yuvarlak kenarlar */
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
}

.filter-row .form-control {
    border-radius: 15px !important; /* Select ve Input iÃ§leri de yumuÅŸatÄ±ldÄ± */
}

/* 3. STL YÃ¼kleme AlanÄ± KÃ¼Ã§Ã¼ltme ve DÃ¼zenleme */
#stlUploadModal .modal-content {
    max-width: 450px !important; /* Alan daraltÄ±ldÄ± */
    padding: 25px;
    border-radius: 24px;
}

/* Yasal Åartlar Scroll AlanÄ± */
.legal-terms-box {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 12px;
    height: 100px;
    overflow-y: auto;
    font-size: 11px;
    color: #475569;
    margin: 15px 0;
    line-height: 1.4;
}

.legal-terms-box strong {
    color: #0F172A;
    display: block;
    margin-bottom: 5px;
}
/* --- STL MODAL DÃœZELTMESÄ° --- */

/* Modal iÃ§i genel yazÄ± rengini koyu yap */
#stlUploadModal .modal-content {
    color: #0A1128 !important;
}

/* Checkbox (Kutucuk) yanÄ±ndaki yazÄ±larÄ± gÃ¶rÃ¼nÃ¼r yap */
.checkbox-group label {
    color: #1e293b !important; /* Koyu gri */
    font-size: 13px !important;
    font-weight: 600;
    cursor: pointer;
}

/* Yasal metin kutusunu daha okunaklÄ± yap */
.legal-terms-box {
    background: #f8fafc;
    color: #334155;
    border: 1px solid #cbd5e1;
}

/* --- BÄ°LDÄ°RÄ°M SÄ°STEMÄ° STÄ°LLERÄ° --- */

.notification-wrapper {
    position: relative;
    display: inline-block;
}

.notification-badge {
    position: absolute;
    top: -5px; right: -5px;
    background: #ef4444; color: white;
    font-size: 10px; font-weight: bold;
    padding: 2px 5px; border-radius: 50%;
    border: 2px solid #fff;
    display: none; z-index: 10;
}

.notification-dropdown {
    position: absolute;
    top: 50px; right: -80px;
    width: 320px; background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 1px solid #f1f5f9;
    display: none; flex-direction: column;
    z-index: 2500;
    max-height: 400px; overflow-y: auto;
}

.notif-header {
    padding: 12px; border-bottom: 1px solid #eee;
    font-weight: bold; color: #0A1128;
    background: #f8fafc; border-radius: 12px 12px 0 0;
    display: flex; justify-content: space-between;
}

.notif-item {
    padding: 12px; border-bottom: 1px solid #f1f5f9;
    display: flex; gap: 10px; align-items: flex-start;
    transition: 0.2s; cursor: pointer;
}
.notif-item:hover { background: #f0fdf9; }
.notif-item.unread { background: #eef2ff; border-left: 3px solid #00F7A3; }

.notif-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.notif-content { font-size: 13px; color: #334155; }
.notif-time { display: block; font-size: 11px; color: #94a3b8; margin-top: 4px; }
/* --- MOBÄ°L UZUN BASMA Ä°YÄ°LEÅTÄ°RMESÄ° --- */
.long-press-target {
    -webkit-user-select: none; /* Safari/Chrome mobil */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE/Edge */
    user-select: none;         /* Standart */
    -webkit-touch-callout: none; /* iOS'te menÃ¼ aÃ§Ä±lmasÄ±nÄ± engeller */
    transition: background-color 0.2s;
}

/* BasÄ±lÄ± tutarken hafif renk deÄŸiÅŸsin (Geri bildirim hissi) */
.long-press-target:active {
    background-color: #f0fdf9 !important;
}
.back-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  transition: color 0.2s ease, transform 0.2s ease;
}

.back-link:hover {
  color: #ffffff;
  transform: translateX(-2px);
}
/* --- MODAL VE MENÃœ GÄ°ZLEME DÃœZELTMESÄ° --- */

/* Modal varsayÄ±lan olarak GÄ°ZLÄ° olacak */
.modal-overlay {
    display: none !important; /* GÃ¶rÃ¼nmez yap */
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

/* Sadece 'active' sÄ±nÄ±fÄ± eklenince gÃ¶rÃ¼nÃ¼r olacak */
.modal-overlay.active {
    display: flex !important;
}

/* Header'daki aÃ§Ä±lÄ±r menÃ¼ de gizli olsun */
.header-dropdown {
    display: none !important;
}
.header-dropdown.active {
    display: flex !important;
}

/* Uzun basma (Long Press) hedefi iÃ§in seÃ§im engelleme */
.long-press-target {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none; /* iOS menÃ¼sÃ¼nÃ¼ engeller */
}
/* --- MODAL VE MENÃœ GÄ°ZLEME DÃœZELTMESÄ° --- */

/* Modal varsayÄ±lan olarak GÄ°ZLÄ° olacak */
.modal-overlay {
    display: none !important; /* GÃ¶rÃ¼nmez yap */
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

/* Sadece 'active' sÄ±nÄ±fÄ± eklenince gÃ¶rÃ¼nÃ¼r olacak */
.modal-overlay.active {
    display: flex !important;
}

/* Header'daki aÃ§Ä±lÄ±r menÃ¼ de gizli olsun */
.header-dropdown {
    display: none !important;
}
.header-dropdown.active {
    display: flex !important;
}

/* Uzun basma (Long Press) hedefi iÃ§in seÃ§im engelleme */
.long-press-target {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none; /* iOS menÃ¼sÃ¼nÃ¼ engeller */
}
/* --- MODAL VE UZUN BASMA Ä°Ã‡Ä°N GEREKLÄ° --- */
.modal-overlay {
    display: none; /* VarsayÄ±lan gizli */
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 2000;
    align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; } /* JS ekleyince gÃ¶rÃ¼nÃ¼r */

/* iOS ve Android'de uzun basÄ±nca menÃ¼ Ã§Ä±kmasÄ±n */
.long-press-target {
    -webkit-user-select: none; user-select: none; -webkit-touch-callout: none;
}
.long-press-target:active { background-color: #e2e8f0; } /* BasÄ±nca renk deÄŸiÅŸsin */
/* --- PUANLAMA YILDIZLARI --- */
.star-rating {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 30px;
    margin-bottom: 15px;
}
.star {
    cursor: pointer;
    color: #ddd; /* Pasif renk (Gri) */
    transition: color 0.2s;
}
.star.selected, .star:hover, .star:hover ~ .star {
    /* Hover ve SeÃ§ili durumu */
    color: #FFD700; /* AltÄ±n SarÄ±sÄ± */
}
/* CSS hilesi: Hover yapÄ±nca Ã¶nceki kardeÅŸleri seÃ§mek iÃ§in ters sÄ±ralama kullanacaÄŸÄ±z JS'de */
/* --- YORUMLAR PENCERESÄ° --- */
.reviews-list {
    max-height: 300px;
    overflow-y: auto;
    text-align: left;
    margin-top: 15px;
}
.review-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}
.review-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}
.review-stars { color: #FFD700; font-size: 12px; }
.review-text { font-size: 14px; color: #333; }
/* --- YORUMLAR LÄ°STESÄ° --- */
.reviews-list {
    max-height: 300px;
    overflow-y: auto;
    text-align: left;
    margin-top: 15px;
}
.review-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
}
.review-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 6px;
}
.review-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: #334155; line-height: 1.4; }

/* Sistem MesajÄ± Stili */
.system-msg {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin: 10px 0;
    background: #f1f5f9;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}
/* --- YORUMLAR LÄ°STESÄ° (PROFÄ°L) --- */
.reviews-list {
    max-height: 300px; overflow-y: auto; text-align: left; margin-top: 15px;
}
.review-item {
    background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px;
    padding: 12px; margin-bottom: 10px;
}
.review-header {
    display: flex; justify-content: space-between; font-size: 12px; color: #64748b; margin-bottom: 6px;
}
.review-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: #334155; line-height: 1.4; }

/* --- Ä°ÅLEM PANELÄ° (STATUS BAR) --- */
.job-status-bar {
    background: #fff; border-bottom: 1px solid #e2e8f0; padding: 10px 15px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03); z-index: 19;
}
.job-status-info { font-size: 13px; color: #334155; font-weight: 600; }
.job-status-actions button {
    padding: 10px 16px; border-radius: 6px; border: none; font-size: 12px; font-weight: bold; cursor: pointer;
}
.btn-deliver { background: #3b82f6; color: white; }
.btn-receive { background: #10b981; color: white; }
.btn-disabled { background: #e2e8f0; color: #94a3b8; cursor: default; }

/* Talep KartÄ± */
.request-card {
    background: #f0fdf9; border: 1px solid #ccfbf1; padding: 15px;
    border-radius: 12px; text-align: center; margin: 10px 0; width: 100%;
}
/* --- HEADER DÃœZENLEMESÄ° (KAYMAYI Ã–NLER) --- */
header {
    background: #0A1128;
    color: #ffffff;
    padding: 10px 20px;
    display: grid; /* Flex yerine Grid */
    grid-template-columns: 200px 1fr 200px; /* Sol ve SaÄŸ sabit, orta esnek */
    align-items: center;
    gap: 20px;
}

/* Mobilde Grid'i bozup alt alta alÄ±yoruz */
@media (max-width: 768px) {
    header {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .logo-area, .header-buttons {
        width: 100%;
        justify-content: center;
    }
    .header-buttons {
        justify-content: center;
    }
}

/* Arama Kutusu Ortala */
.search-box {
    margin: 0 auto;
    width: 100%;
    max-width: 500px; /* GeniÅŸliÄŸi sabitledik */
}

/* Header ButonlarÄ± SaÄŸa Yasla */
.header-buttons {
    justify-content: flex-end;
}

/* --- ANA SAYFA KARTLARI (4'LÃœ YAPI) --- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.feature-card {
    position: relative;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Kart Arka Plan Renkleri (Gradient) */
.card-pazar { background: linear-gradient(135deg, #FF9966, #FF5E62); }
.card-stl { background: linear-gradient(135deg, #56CCF2, #2F80ED); }
.card-freelance { background: linear-gradient(135deg, #11998e, #38ef7d); }
.card-blog { background: linear-gradient(135deg, #8E2DE2, #4A00E0); }

.card-content h3 {
    color: white;
    font-size: 24px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.card-content p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin: 5px 0 0;
}

/* --- GÃœNÃœN SORUNLARI & BLOG BÃ–LÃœMÃœ --- */
.home-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.section-title {
    font-size: 22px;
    font-weight: 800;
    color: #0A1128;
    margin-bottom: 20px;
    border-left: 5px solid #00F7A3;
    padding-left: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.unanswered-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.question-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: 0.2s;
    text-decoration: none;
}
.question-item:hover {
    border-color: #00F7A3;
    background: #f0fdf9;
}

.q-title { font-weight: 600; color: #334155; font-size: 15px; }
.q-meta { font-size: 12px; color: #94a3b8; }
.btn-answer {
    background: #0A1128; color: white; padding: 6px 14px;
    border-radius: 8px; font-size: 12px; font-weight: bold;
}

/* --- ARAMA SONUÃ‡LARI DROPDOWN --- */
/* --- ARAMA SONUÃ‡LARI DÃœZELTMESÄ° --- */
.search-results-dropdown {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: #ffffff !important; /* Arka plan kesin beyaz */
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 2000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    border: 1px solid #e2e8f0;
}

.search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0A1128 !important; /* YazÄ±lar Koyu Renk Olsun */
    text-decoration: none;
}

.search-result-item:hover {
    background: #f0fdf9; /* Ãœzerine gelince aÃ§Ä±k yeÅŸil */
}

.result-type {
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-left: auto; /* SaÄŸa yasla */
}

/* Etiket Renkleri */
.type-user { background: #e0e7ff; color: #3730a3; }
.type-blog { background: #fce7f3; color: #9d174d; }
.type-question { background: #ffedd5; color: #9a3412; }
.type-stl { background: #dcfce7; color: #166534; } /* STL Rengi */
/* --- MOBÄ°L/TABLET Ä°Ã‡Ä°N HEADER DÃœZENLEMESÄ° --- */
@media (max-width: 768px) {
    /* Header mobilde alt alta olduÄŸu iÃ§in uzuyor, iÃ§eriÄŸi aÅŸaÄŸÄ± itiyoruz */
    .main-content {
        margin-top: 220px !important; 
    }
    
    /* Pazar, Freelance gibi diÄŸer sayfalarda main-content sÄ±nÄ±fÄ± yoksa body padding ver */
    body {
        padding-top: 0; 
    }
}

/* --- FOOTER (ALT BÄ°LGÄ°) TASARIMI --- */
.site-footer {
    background: #0A1128; /* Lacivert */
    color: #94A3B8;      /* Gri YazÄ± */
    padding: 60px 20px 30px;
    margin-top: 80px;
    border-top: 4px solid #00F7A3; /* ÃœstÃ¼ne ince yeÅŸil Ã§izgi */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand h2 {
    color: #fff;
    margin: 0 0 10px;
    font-size: 24px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #00F7A3; /* Hover olunca yeÅŸil */
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #475569;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
}
/* --- PROFÄ°L SAYILARI VE YAZI RENGÄ° DÃœZELTMESÄ° --- */

/* Ä°statistik sayÄ±larÄ±nÄ± ve yazÄ±larÄ±nÄ± koyu yap */
.profile-stats {
    color: #0A1128 !important;
}

.profile-stats strong {
    color: #000000 !important; /* SayÄ±lar simsiyah olsun */
    font-weight: 900;
}

.profile-stats span {
    color: #475569 !important; /* Alt yazÄ±lar koyu gri */
}

/* YÃ¼kleniyor yazÄ±larÄ± veya boÅŸ listeler iÃ§in */
#contentGrid p, .no-content-text {
    color: #64748b !important; /* Okunabilir gri */
    font-weight: 600;
}

/* EÄŸer profil gizliyse Ã§Ä±kan kilit mesajÄ± */
.private-msg {
    color: #333 !important;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.modal-content input, .modal-content select, .modal-content textarea {
    box-sizing: border-box; /* Padding'i geniÅŸliÄŸe dahil et, dÄ±ÅŸarÄ± taÅŸÄ±rma */
    width: 100% !important;
}
/* --- MOBÄ°L UYUMLULUK KESÄ°N Ã‡Ã–ZÃœM --- */

@media (max-width: 768px) {

    /* 1. ANA Ä°Ã‡ERÄ°K KAPSAYICISINI SIFIRLA */
    .main-content {
        margin-top: 200px !important; 
        padding: 10px !important; /* DÄ±ÅŸ boÅŸluÄŸu minimuma indir */
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 2. RENKLÄ° KARTLAR: Sol boÅŸluÄŸu yok et ve 2x2 yap */
    .feature-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; /* Yan yana tam 2 tane */
        gap: 10px !important; /* AralarÄ±ndaki boÅŸluk */
        margin: 0 auto 30px auto !important; /* Ortala ve alt boÅŸluk bÄ±rak */
        padding: 0 !important; /* Ä°Ã§ boÅŸluÄŸu sÄ±fÄ±rla (sol boÅŸluÄŸu Ã§Ã¶zer) */
        width: 100% !important;
    }

    .feature-card {
        height: 160px !important; /* Boyutu biraz daha bÃ¼yÃ¼ttÃ¼k */
        margin: 0 !important; /* KartlarÄ±n kendi dÄ±ÅŸ boÅŸluÄŸunu sÄ±fÄ±rla */
        padding: 15px !important;
        box-sizing: border-box !important;
    }

    .card-content h3 {
        font-size: 18px !important;
        margin-bottom: 5px !important;
    }

    /* 3. BLOG VE YAN PANELÄ° GENÄ°ÅLET */
    .content-wrapper {
        flex-direction: column !important; /* Alt alta al */
        display: flex !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .home-section, .sidebar-area {
        width: 100% !important; /* EkranÄ± tam kapla */
        max-width: 100% !important;
        margin: 0 0 20px 0 !important; /* Sadece alt boÅŸluk bÄ±rak */
        padding: 20px !important; /* Ä°Ã§erik nefes alsÄ±n */
        box-sizing: border-box !important;
    }

    /* BaÅŸlÄ±klarÄ± mobil iÃ§in optimize et */
    .section-title {
        font-size: 19px !important;
    }
}
/* --- MOBÄ°L & TABLET UYUMLULUK (TÃœM SAYFALAR Ä°Ã‡Ä°N MASTER AYAR) --- */

/* --- MOBÄ°L & TABLET UYUMLULUK (FÄ°NAL DÃœZELTME) --- */



/* --- MOBÄ°L & TABLET UYUMLULUK (FREELANCE DÃœZELTMELÄ° FÄ°NAL) --- */

@media (max-width: 900px) {
    /* --- 1. HEADER DÃœZENÄ° --- */
    header {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px !important;
        height: auto !important;
        gap: 10px;
    }

    .logo-area { order: 1; flex: 0 0 auto; }
    .header-buttons { order: 2; flex: 0 0 auto; margin-left: auto; }

    .search-box {
        order: 3;
        width: 100% !important;
        max-width: 100% !important;
        margin: 5px 0 0 0 !important;
        box-sizing: border-box;
    }
    
    .main-content { margin-top: 140px !important; }
}

@media (max-width: 768px) {
    /* --- 2. GENEL KAPSAYICI AYARLARI --- */
    .main-content {
        padding: 15px !important;
        width: 100% !important;
        box-sizing: border-box;
        overflow-x: hidden; /* SaÄŸa taÅŸmayÄ± kesin engelle */
    }

    /* --- 3. ANA SAYFA & STL KARTLARI --- */
    .feature-grid, .blog-grid, #stlGrid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important; 
        gap: 15px !important;
        width: 100% !important;
        margin: 0 0 30px 0 !important;
        padding: 0 !important;
    }

    .feature-card, .blog-card {
        width: 100% !important;
        margin: 0 !important;
    }

    /* Blog ve Yan Panel */
    .content-wrapper { display: flex !important; flex-direction: column !important; }
    .home-section, .sidebar-area {
        width: 100% !important;
        margin: 0 0 20px 0 !important;
        padding: 20px !important;
        box-sizing: border-box;
    }

    /* --- 4. FREELANCE YÃ–NETÄ°M PANELÄ° (ÃœST KISIM) DÃœZELTMESÄ° --- */
    
    /* KartÄ±n kendisi */
    .job-card-horizontal {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
    }

    /* Ãœst kÄ±sÄ±mdaki baÅŸlÄ±k ve badge */
    .job-h-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px;
    }

    /* ButonlarÄ±n olduÄŸu alt kÄ±sÄ±m */
    /* JS iÃ§inde style="display:flex" var, onu eziyoruz */
    .job-card-horizontal > div:nth-child(2) {
        flex-direction: column !important; /* YazÄ± ve buton grubunu alt alta al */
        align-items: flex-start !important;
        gap: 15px !important;
        margin-top: 10px;
    }

    /* Buton Grubu (Sil, Kapat, Teklif GÃ¶r) */
    .job-card-horizontal > div:nth-child(2) > div {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1.5fr; /* Yan yana sÄ±ÄŸdÄ±r: KÃ¼Ã§Ã¼k, KÃ¼Ã§Ã¼k, BÃ¼yÃ¼k */
        gap: 8px !important;
        width: 100% !important;
    }

    /* ButonlarÄ±n estetiÄŸi (KabalÄ±ktan kurtarma) */
    .job-card-horizontal .btn-offer {
        font-size: 11px !important; /* YazÄ±yÄ± kÃ¼Ã§Ã¼lt */
        padding: 8px 5px !important; /* Ä°Ã§ boÅŸluÄŸu azalt */
        white-space: nowrap; /* YazÄ± alt satÄ±ra inmesin */
        text-overflow: ellipsis;
        overflow: hidden;
        width: 100% !important;
        text-align: center;
        border-radius: 8px !important;
    }

    /* --- 5. FREELANCE Ä°LAN LÄ°STESÄ° (ALT KISIM) DÃœZELTMESÄ° --- */
    
    /* Ä°lan KartÄ± TaÅŸmasÄ±nÄ± Ã–nle */
    .job-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 0 15px 0 !important;
        padding: 15px !important;
    }

    /* KartÄ±n iÃ§indeki baÅŸlÄ±k ve buton hizalamasÄ± */
    .job-card > div:first-child > div:first-child {
        /* Hizmet tÃ¼rÃ¼ ve Raporla butonu satÄ±rÄ± */
        display: flex !important;
        justify-content: space-between !important;
        width: 100% !important;
    }

    .job-header {
        /* BaÅŸlÄ±k alanÄ± */
        width: 100% !important;
        word-break: break-word; /* Uzun kelimeleri kÄ±r */
    }

    /* Alt KÄ±sÄ±m (Profil ve Buton) */
    .job-footer {
        display: flex !important;
        flex-direction: column !important; /* Alt alta diz */
        gap: 12px !important;
        align-items: flex-start !important;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }

    /* Ä°lan listesindeki buton tam geniÅŸlik olsun */
    .job-footer .btn-offer {
        width: 100% !important;
        text-align: center;
        padding: 10px !important;
    }

    /* --- 6. DÄ°ÄER SAYFA DETAYLARI --- */
    .filter-row { display: flex; flex-direction: column; gap: 10px; padding: 15px; height: auto; }
    .filter-row input, .filter-row select { width: 100%; max-width: 100%; box-sizing: border-box; }
    .stl-hero { flex-direction: column; text-align: center; gap: 15px; }
    .footer-container { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 30px; }
    .footer-links { display: flex; flex-direction: column; align-items: center; gap: 20px; width: 100%; }
}
/* --- MODEL DETAY SAYFASI TAMÄ°RÄ° --- */

/* 1. Yorum ve Input TaÅŸma Sorunu (TÃ¼m Cihazlar Ä°Ã§in) */
#commentInput, 
.new-comment textarea {
    box-sizing: border-box !important; /* Padding'i geniÅŸliÄŸe dahil et */
    width: 100% !important;
    max-width: 100% !important;
    resize: vertical; /* Sadece dikey uzasÄ±n */
}

/* 2. Model Detay Mobil Uyumluluk */
@media (max-width: 768px) {
    
    /* Model GÃ¶rÃ¼ntÃ¼leyici TaÅŸmasÄ±nÄ± Ã–nle */
    .viewer-container {
        min-width: 0 !important; /* 300px zorlamasÄ±nÄ± kaldÄ±r */
        width: 100% !important;
        height: 350px !important; /* Mobilde boyu ideal yap */
    }

    /* Ãœst Bilgi (Yazar, Tarih, Like) HizalamasÄ± */
    /* HTML yapÄ±sÄ±na gÃ¶re: BaÅŸlÄ±ÄŸÄ±n altÄ±ndaki flex div */
    .main-content > div > div[style*="display:flex"] {
        flex-wrap: wrap !important; /* SÄ±ÄŸmazsa alta geÃ§sin */
        gap: 15px !important;
    }

    /* SaÄŸ taraftaki Like ve Ä°ndirme Ä°konlarÄ± */
    .main-content > div > div > div[style*="margin-left:auto"] {
        margin-left: 0 !important; /* SaÄŸa yaslamayÄ± iptal et */
        width: 100% !important;
        display: flex;
        justify-content: space-between; /* Ä°ki uca daÄŸÄ±t */
        padding-top: 15px;
        border-top: 1px solid #f1f5f9; /* Araya Ã§izgi at */
    }

    /* Ä°ndir Butonu */
    .btn-download {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* SaÄŸdaki Bilgi KutularÄ± */
    .info-container, .info-box {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    /* Ana BaÅŸlÄ±k */
    #dTitle {
        font-size: 24px !important;
        word-wrap: break-word; /* Uzun kelimeleri kÄ±r */
        line-height: 1.3;
    }
}

/* 3. KÃ¼Ã§Ã¼k Telefonlar Ä°Ã§in Tam Ekran Modu (425px ve altÄ±) */
@media (max-width: 425px) {
    
    /* Ana kapsayÄ±cÄ± boÅŸluklarÄ±nÄ± sÄ±fÄ±rla */
    .main-content {
        padding: 0 !important;
        margin-top: 80px !important; /* Header payÄ± */
    }

    /* Ä°Ã§erik KartÄ±nÄ± (Beyaz Kutu) Ekrana YapÄ±ÅŸtÄ±r */
    .main-content > div[style*="background:#fff"] {
        border-radius: 0 !important; /* KÃ¶ÅŸeleri dÃ¼zleÅŸtir */
        padding: 25px 20px !important; /* Ä°Ã§ boÅŸluÄŸu dengele */
        box-shadow: none !important; /* Mobilde gÃ¶lge gereksiz */
        border-top: 1px solid #eee;
    }
}
/* --- MODEL DETAY & HEADER RÃ–TUÅLARI --- */

/* 1. GERÄ° BUTONLARINI GÃœZELLEÅTÄ°RME (Header Ä°Ã§in) */
.back-link {
    background: transparent !important; /* Koyu arka planÄ± kaldÄ±r */
    border: none !important; /* KenarlÄ±ÄŸÄ± kaldÄ±r */
    color: #cbd5e1 !important; /* Hafif gri renk */
    padding: 0 !important;
    font-size: 14px;
    font-weight: 600;
    gap: 5px;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.back-link .icon {
    background: transparent !important; /* Ä°kon arkasÄ±ndaki kutuyu kaldÄ±r */
    border: none !important;
    width: auto !important;
    height: auto !important;
    font-size: 18px; /* Ok iÅŸaretini belirginleÅŸtir */
}

.back-link:hover {
    color: #00F7A3 !important; /* Ãœzerine gelince parlasÄ±n */
    transform: translateX(-3px); /* Hafif sola kaysÄ±n (animasyon) */
}

/* 2. YORUM YAP BUTONU VE ALANI */
.new-comment {
    display: flex !important;
    flex-direction: column !important; /* Input ve butonu alt alta diz */
    align-items: flex-end !important; /* Butonu saÄŸa yasla */
    gap: 10px !important;
}

#btnComment {
    float: none !important; /* Eski float'Ä± iptal et */
    margin-top: 0 !important;
    width: auto !important; /* Ä°Ã§eriÄŸe gÃ¶re geniÅŸlik */
    padding: 10px 25px !important;
}

/* 3. MOBÄ°L Ä°Ã‡Ä°N MODEL DETAY SIRALAMASI */
@media (max-width: 768px) {
    
    /* Ana DÃ¼zen: Alt Alta */
    .model-layout {
        display: flex !important;
        flex-direction: column !important; /* Dikey sÄ±rala */
        gap: 20px !important;
    }

    /* 1. SÄ±ra: Model GÃ¶rÃ¼ntÃ¼leyici (Tek BaÅŸÄ±na) */
    .viewer-container {
        order: 1 !important; /* En baÅŸta */
        width: 100% !important;
        height: 350px !important;
        margin-bottom: 10px !important;
    }

    /* 2. SÄ±ra: Bilgi Kutusu (Ä°ndir, AÃ§Ä±klama vb.) */
    .info-container {
        order: 2 !important; /* Modelin altÄ±nda */
        width: 100% !important;
        min-width: 0 !important;
    }

    /* Yorum Yap butonu mobilde tam geniÅŸlik olsun */
    #btnComment {
        width: 100% !important;
    }
}
/* --- MOBÄ°L DÃœZELTMELER (Header Ã‡akÄ±ÅŸmasÄ± & STL ButonlarÄ±) --- */

@media (max-width: 768px) {

    /* 1. Header Ã‡akÄ±ÅŸmasÄ±nÄ± Ã–nle (YazÄ±larÄ±n gÃ¶rÃ¼nmesi iÃ§in) */
    .main-content {
        /* Header mobilde yer kapladÄ±ÄŸÄ± iÃ§in boÅŸluÄŸu artÄ±rdÄ±k */
        margin-top: 200px !important; 
        padding: 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 2. STL SayfasÄ± Ãœst KÄ±sÄ±m (Hero) AyarlarÄ± */
    .stl-hero {
        flex-direction: column !important; /* YazÄ± ve butonlarÄ± alt alta al */
        text-align: center !important;     /* YazÄ±larÄ± ortala */
        gap: 25px !important;              /* Aradaki boÅŸluÄŸu aÃ§ */
        align-items: stretch !important;   /* Ä°Ã§eriÄŸi kenarlara yay */
    }

    /* ButonlarÄ± Kapsayan Div (HTML'deki style="display:flex" yapÄ±sÄ±nÄ± eziyoruz) */
    .stl-hero > div:last-child {
        display: flex !important;
        flex-direction: column !important; /* ButonlarÄ± alt alta diz */
        width: 100% !important;            /* Tam geniÅŸlik */
        gap: 12px !important;              /* Butonlar arasÄ± boÅŸluk */
    }

    /* ButonlarÄ±n Kendisi (EÅŸitleme) */
    .stl-hero button, 
    .btn-glow, 
    .btn-ghost {
        width: 100% !important;            /* Ä°kisini de tam geniÅŸlik yap */
        justify-content: center !important; /* YazÄ±yÄ±/Ä°konu ortala */
        padding: 14px !important;          /* Daha kolay basÄ±lsÄ±n */
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
    }

    /* 3. Genel Mobil DÃ¼zen KorumasÄ± */
    .feature-grid, .blog-grid, #stlGrid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
        gap: 15px !important;
    }
    
    .footer-container, .footer-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
}
/* --- STL SAYFASI BUTON EÅÄ°TLEME VE MOBÄ°L AYAR --- */



/* 3. MOBÄ°L Ã–ZEL AYARLAR (768px ve altÄ±) */
/* --- MOBÄ°L VE TABLET Ä°Ã‡Ä°N KESÄ°N Ã‡Ã–ZÃœM (STL ve GENEL) --- */

/* 1. Ã–NCE GENEL AYAR (TÃ¼m Ekranlar Ä°Ã§in Buton EÅŸitleme) */
.stl-hero > div:last-child {
    display: flex !important;
    flex-direction: row !important; /* VarsayÄ±lan: Yan Yana */
    gap: 15px !important;
    width: auto;
    align-items: center;
}

/* ButonlarÄ±n her zaman eÅŸit geniÅŸlikte olmasÄ± iÃ§in */
.stl-hero button, .btn-glow, .btn-ghost {
    flex: 1 !important; /* Mevcut alanÄ± eÅŸit paylaÅŸ */
    white-space: nowrap !important; /* YazÄ± taÅŸmasÄ±n */
    text-align: center !important;
    justify-content: center !important;
    min-width: 140px; /* Ã‡ok kÃ¼Ã§Ã¼lmeyi engelle */
    height: 50px !important; /* YÃ¼kseklik sabitle */
    padding: 0 15px !important;
    box-sizing: border-box !important;
}

/* 2. TABLET VE MOBÄ°L (Header Ã‡akÄ±ÅŸmasÄ±nÄ± Ã–nle) */
@media (max-width: 900px) {
    .main-content {
        margin-top: 140px !important; /* Header boÅŸluÄŸu */
        padding: 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* 3. SADECE KÃœÃ‡ÃœK EKRANLAR (500px AltÄ± - Telefonlar) */
/* BurasÄ± kritik nokta: 768px deÄŸil, 500px sÄ±nÄ±rÄ±nÄ± kullanÄ±yoruz */
@media (max-width: 500px) {
    
    /* Header mobilde uzadÄ±ÄŸÄ± iÃ§in iÃ§eriÄŸi daha aÅŸaÄŸÄ± it */
    .main-content {
        margin-top: 200px !important;
    }

    /* STL Hero AlanÄ± Dikey YerleÅŸim */
    .stl-hero {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
    }

    /* Buton Grubu: Alt Alta Dizilsin */
    .stl-hero > div:last-child {
        flex-direction: column !important; /* Yan yana sÄ±ÄŸmaz, alt alta al */
        width: 100% !important;
    }

    /* Butonlar: Tam GeniÅŸlik Olsun */
    .stl-hero button, .btn-glow, .btn-ghost {
        width: 100% !important;
        flex: none !important; /* EÅŸitlemeyi iptal et, fulle */
    }
    
    /* Footer HizalamasÄ± */
    .footer-container, .footer-links {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
}
/* --- MODEL DETAY MOBÄ°L DÃœZELTMELERÄ° (KARE MODEL & LÄ°NK) --- */

@media (max-width: 768px) {
    
    /* 1. MODEL GÃ–RÃœNTÃœLEYÄ°CÄ° (TAM KARE YAP) */
    .viewer-container {
        order: 1 !important;
        width: 100% !important;
        height: auto !important; /* Sabit yÃ¼ksekliÄŸi iptal et */
        aspect-ratio: 1 / 1 !important; /* ğŸ”¥ OTOMATÄ°K KARE OLSUN */
        margin-bottom: 15px !important;
        background: #1e293b; /* YÃ¼klenirken koyu arka plan */
    }

    /* 2. ANA DÃœZEN (Alt alta sÄ±rala) */
    .model-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    .info-container {
        order: 2 !important;
        width: 100% !important;
        min-width: 0 !important; /* Flex taÅŸmasÄ±nÄ± Ã¶nler */
    }

    /* 3. ATIF LÄ°NKÄ° TAÅMASINI Ã–NLE (KÄ±saltma TaktiÄŸi) */
    #dSource {
        display: inline-block;
        max-width: 180px; /* GeniÅŸliÄŸi sÄ±nÄ±rla */
        white-space: nowrap; /* Alt satÄ±ra inmesin */
        overflow: hidden; /* TaÅŸan kÄ±smÄ± gizle */
        text-overflow: ellipsis; /* Sonuna Ã¼Ã§ nokta (...) koy */
        vertical-align: bottom;
        color: #00F7A3 !important;
        font-weight: bold;
        text-decoration: none;
    }

    /* Butonlar mobilde tam geniÅŸlik */
    #btnComment, .btn-download {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* KÃ¼Ã§Ã¼k Ekranlar Ä°Ã§in Ekstra GÃ¼venlik */
@media (max-width: 400px) {
    #dSource {
        max-width: 140px; /* Daha kÃ¼Ã§Ã¼k ekranda daha erken kÄ±salt */
    }
}


/* --- YORUM METNÄ° TAÅMA DÃœZELTMESÄ° (KESÄ°N Ã‡Ã–ZÃœM) --- */

/* Hem ana yorumlarÄ± (p) hem de yanÄ±tlarÄ± (.comment-text) kapsar */
.comment-body p, 
.comment-text {
    white-space: pre-wrap !important;     /* SatÄ±r boÅŸluklarÄ±nÄ± koru */
    word-wrap: break-word !important;     /* Uzun kelimeleri kÄ±r */
    overflow-wrap: break-word !important; /* Modern tarayÄ±cÄ±lar iÃ§in */
    word-break: break-word !important;    /* Kesin kÄ±rma (linkler vb. iÃ§in) */
    max-width: 100% !important;           /* Asla taÅŸma */
    line-height: 1.5 !important;          /* Okunabilirlik */
    display: block !important;            /* Blok eleman gibi davran */
}
/* --- SORU DETAY VE YORUM TAMÄ°RÄ° (FÄ°NAL V3 - TAÅMA Ã‡Ã–ZÃœMÃœ) --- */

/* 1. KUTU MODELÄ°NÄ° SIFIRLA (En Kritik KÄ±sÄ±m) */
/* TÃ¼m elemanlarÄ±n iÃ§ boÅŸluklarÄ±nÄ± (padding) geniÅŸliÄŸe dahil et */
*, *::before, *::after {
    box-sizing: border-box;
}

/* 2. ANA KAPSAYICILAR (TaÅŸmayÄ± Ã–nleyen Ayar) */
/* width: auto !important; sayesinde margin (kenar boÅŸluÄŸu) varsa ona gÃ¶re daralÄ±r, taÅŸmaz */
.answer-item, 
.nested-reply, 
.question-wrapper, 
.content-box,
.answer-card,
.comment-box {
    display: block !important;
    width: auto !important;      /* ğŸ”¥ DÃœZELTME BURADA: %100 yerine auto */
    max-width: 100% !important;  /* EkranÄ±n dÄ±ÅŸÄ±na asla Ã§Ä±kma */
    padding: 15px !important;
    margin-bottom: 10px !important;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f1f5f9; /* Hafif Ã§erÃ§eve */
}

/* 3. Ä°Ã‡E GEÃ‡MÄ°Å YANITLAR (Ã–zel Ayar) */
.nested-reply {
    margin-top: 10px !important;
    margin-left: 20px !important; /* Soldan boÅŸluÄŸu azalttÄ±k (50px Ã§ok fazlaydÄ±) */
    border-left: 3px solid #e2e8f0 !important; /* Sol Ã§izgiyi belirginleÅŸtir */
    background: #f8fafc !important; /* YanÄ±t olduÄŸu belli olsun diye hafif gri */
}

/* 4. METÄ°N DÃœZENÄ° (SÄ±kÄ±laÅŸtÄ±rma) */
.question-text, 
.answer-item p, 
.nested-reply-content,
.comment-text {
    width: 100% !important;
    white-space: pre-wrap !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    line-height: 1.5 !important;
    margin: 5px 0 !important; /* YazÄ±nÄ±n alt-Ã¼st boÅŸluÄŸunu dengele */
    padding: 0 !important;
    color: #334155 !important;
}

/* 5. BAÅLIK VE AVATAR (Yan Yana Hizalama) */
.author-section, 
.answer-header,
.comment-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 8px !important;
    margin-bottom: 8px !important;
}

.author-avatar, .comment-avatar {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    flex-shrink: 0; /* Avatar asla ezilmesin */
}

/* 6. MOBÄ°L Ä°Ã‡Ä°N EKSTRA KORUMA */
@media (max-width: 768px) {
    .main-container {
        padding: 10px !important;
        margin-top: 140px !important;
        width: 100% !important;
    }
    
    /* Mobilde iÃ§ iÃ§e yanÄ±tlar Ã§ok saÄŸa gitmesin, yer kazanalÄ±m */
    .nested-reply {
        margin-left: 10px !important; 
        padding: 10px !important;
    }
}
/* --- HEADER DROPDOWN TAÅMA TAMÄ°RÄ° (KESÄ°N Ã‡Ã–ZÃœM) --- */

/* 1. KapsayÄ±cÄ±larÄ± hizalama merkezi yap */
.dropdown-wrapper, 
.profile-wrapper {
    position: relative !important; /* MenÃ¼ buna gÃ¶re konumlansÄ±n */
}

/* 2. TÃ¼m AÃ§Ä±lÄ±r MenÃ¼leri StandartlaÅŸtÄ±r */
.menu-dropdown {
    width: 180px !important;      /* GeniÅŸliÄŸi sabitle */
    min-width: 150px !important;
    max-width: 90vw !important;   /* Ekran geniÅŸliÄŸinin %90'Ä±nÄ± geÃ§mesin (Mobilde taÅŸmayÄ± Ã¶nler) */
    
    top: 100% !important;         /* Butonun tam altÄ±na in */
    margin-top: 10px !important;  /* Butonla araya hafif mesafe koy */
    
    /* ğŸ”¥ KÄ°LÄ°T NOKTA: MenÃ¼yÃ¼ butonun SAÄINA yasla */
    right: 0 !important;          
    left: auto !important;        
    transform: none !important;   /* Eski ortalama kodlarÄ±nÄ± iptal et */
}

/* 3. Mobilde Ekstra Ayar (Ekran daralÄ±nca) */
@media (max-width: 480px) {
    .menu-dropdown {
        position: absolute !important;
        right: -10px !important; /* Mobilde hafif saÄŸa kaydÄ±r ki ekrana tam sÄ±ÄŸsÄ±n */
    }

    /* Hizmetler menÃ¼sÃ¼ ortada olduÄŸu iÃ§in mobilde onu biraz sola Ã§ekebiliriz */
    #servicesMenu {
        right: -50px !important; 
    }
}
/* --- HEADER MENÃœ TAÅMA TAMÄ°RÄ° (SON VE KESÄ°N) --- */

/* 1. KapsayÄ±cÄ±larÄ±n Pozisyonunu Garantiye Al */
/* MenÃ¼ler bu kutularÄ±n hizasÄ±ndan Ã§Ä±kamaz */
.notification-wrapper, 
.profile-wrapper, 
.dropdown-wrapper {
    position: relative !important;
}

/* 2. BÄ°LDÄ°RÄ°M MENÃœSÃœ DÃœZELTMESÄ° */
/* "Neredeyse tamamÄ± dÄ±ÅŸarÄ± gidiyor" sorununu Ã§Ã¶zer */
.notification-dropdown {
    right: 0 !important;        /* Butonun saÄŸ kenarÄ±na hizala */
    left: auto !important;      /* Sol tarafa gitme */
    top: 100% !important;       /* Butonun tam altÄ±na in */
    margin-top: 10px !important;
    width: 300px !important;    /* GeniÅŸlik */
    max-width: 85vw !important; /* EkranÄ±n %85'ini geÃ§me (Mobil korumasÄ±) */
    transform: none !important; /* SaÄŸa/sola kaydÄ±rmayÄ± iptal et */
}

/* 3. PROFÄ°L VE HÄ°ZMETLER MENÃœSÃœ DÃœZELTMESÄ° */
/* "SaÄŸ kÄ±smÄ± azÄ±cÄ±k taÅŸÄ±yor" sorununu Ã§Ã¶zer */
#profileMenu, 
#servicesMenu,
.menu-dropdown {
    right: 0 !important;        /* SaÄŸ kenara yasla */
    left: auto !important;      /* Solu serbest bÄ±rak */
    transform: none !important; /* OrtalamayÄ± iptal et */
    min-width: 160px !important;
    max-width: 200px !important; /* Ã‡ok geniÅŸleyip taÅŸmasÄ±n */
}

/* 4. Ã‡OK KÃœÃ‡ÃœK EKRANLAR Ä°Ã‡Ä°N EKSTRA AYAR (Mobil) */
@media (max-width: 480px) {
    .notification-dropdown {
        width: 280px !important;
        right: -10px !important; /* Mobilde ekran kenarÄ±na hafif yaklaÅŸsÄ±n */
    }

    #profileMenu, 
    #servicesMenu {
        right: 0 !important;
    }
}
/* --- BÄ°LDÄ°RÄ°M KUTUSU MOBÄ°L ROTUÅU (DARALTMA & ORTALAMA) --- */

@media (max-width: 480px) {
    .notification-dropdown {
        /* 1. Boyutu KÃ¼Ã§Ã¼lt */
        width: 260px !important;  /* 300px'den 260px'e indirdik */
        
        /* 2. Konumu Ortala (SaÄŸa Ä°ttir) */
        /* right: 0 yapÄ±nca sola kaÃ§Ä±yordu, -70px diyerek saÄŸa Ã§ektik */
        right: -70px !important;  
        left: auto !important;
        
        /* 3. EkranÄ±n saÄŸÄ±ndan taÅŸarsa koruma */
        max-width: 90vw !important; 
    }
}
/* --- HEADER MENÃœLERÄ° Ä°Ã‡Ä°N MOBÄ°L ORTALAMA (PROFÄ°L TARZI) --- */

@media (max-width: 768px) {
    
    /* 1. HÄ°ZMETLER VE PROFÄ°L (Tam Ortala) */
    /* Butonun tam ortasÄ±na gelir */
    #servicesMenu, 
    #profileMenu,
    .menu-dropdown {
        left: 50% !important;
        right: auto !important;
        top: 100% !important;
        margin-top: 12px !important;
        transform: translateX(-50%) !important; /* Tam Merkez */
        position: absolute !important;
        width: 160px !important; /* Standart GeniÅŸlik */
    }

    /* 2. BÄ°LDÄ°RÄ°M MENÃœSÃœ (Ortala ama Hafif SaÄŸa KaydÄ±r) */
    /* translateX(-50%) tam orta demektir. */
    /* translateX(-25%) yaparak kutuyu BÄ°RAZ SAÄA itiyoruz ki ekranÄ±n solundan taÅŸmasÄ±n */
    .notification-dropdown {
        left: 50% !important;
        right: auto !important;
        top: 100% !important;
        margin-top: 12px !important;
        
        /* ğŸ”¥ AYAR BURADA: -25% ile saÄŸa doÄŸru kaydÄ±rdÄ±k */
        transform: translateX(-25%) !important; 
        
        width: 280px !important; /* GeniÅŸliÄŸi sabitledik */
        max-width: 90vw !important; /* Ekran korumasÄ± */
        position: absolute !important;
    }

    /* Ok (ÃœÃ§gen) Ä°ÅŸaretlerini de HizalayalÄ±m (Varsa) */
    .menu-dropdown::before,
    .notification-dropdown::before {
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
    }
}
/* =========================================
   SADECE PROFÄ°L SAYFASI MOBÄ°L DÃœZENLEMELERÄ°
   (Bu kodlarÄ± style.css dosyasÄ±nÄ±n en altÄ±na yapÄ±ÅŸtÄ±r)
   ========================================= */

@media (max-width: 768px) {
    
    /* 1. Profil BaÅŸlÄ±ÄŸÄ±nÄ± ve Resmi Ortala */
    .profile-header {
        flex-direction: column; /* Alt alta diz */
        align-items: center;    /* Ortala */
        text-align: center;     /* YazÄ±larÄ± ortala */
        padding: 20px 15px;     /* Kenar boÅŸluklarÄ±nÄ± ayarla */
        margin-top: 85px;       /* Header Ã§akÄ±ÅŸmasÄ±nÄ± Ã¶nle */
    }

    /* 2. Avatar ve Rozet */
    .profile-avatar-container {
        margin-bottom: 15px;    /* Resim ile isim arasÄ±na boÅŸluk */
    }
    .profile-avatar {
        width: 120px;           /* Mobilde resim biraz daha kÃ¼Ã§Ã¼k ve kibar olsun */
        height: 120px;
    }

    /* 3. Ä°sim ve Butonlar */
    .profile-info {
        width: 100%;            /* Tam geniÅŸlik */
        padding-top: 0;
    }
    
    .profile-top-row {
        justify-content: center; /* Ä°smi ortala */
        flex-direction: column;  /* Ä°sim Ã¼stte, butonlar altta */
        gap: 10px;
        margin-bottom: 15px;
    }

    .profile-username {
        font-size: 24px;        /* Ä°smi mobilde taÅŸmamasÄ± iÃ§in ayarla */
    }

    /* Buton grubunu (Takip et, Mesaj vb.) ortala */
    .profile-top-row > div {
        margin-left: 0 !important; /* SaÄŸa yaslamayÄ± iptal et */
        display: flex;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    /* 4. Ä°statistikler (TakipÃ§i, Ä°ÅŸ SayÄ±sÄ±) */
    .profile-stats {
        justify-content: space-around; /* EÅŸit aralÄ±klÄ± daÄŸÄ±t */
        display: flex;
        width: 100%;
        padding: 15px 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin-top: 15px;
    }
    
    .stat-box {
        flex: 1;                /* Her kutu eÅŸit alan kaplasÄ±n */
        display: flex;
        flex-direction: column;
        align-items: center;    /* Ä°Ã§eriÄŸi ortala */
    }

    /* 5. Sekmelerin TaÅŸmasÄ±nÄ± Ã–nle (Yana KaydÄ±rma) */
    .profile-tabs {
        justify-content: flex-start; /* Sola yasla */
        overflow-x: auto;            /* SÄ±ÄŸmazsa yana kaydÄ±r */
        white-space: nowrap;         /* Alt satÄ±ra inmesini engelle */
        padding: 10px 5px;
        width: 100%;
        box-shadow: none;            /* GÃ¶lgeyi kaldÄ±r, sadeleÅŸsin */
    }
    
    .profile-tabs::-webkit-scrollbar {
        display: none; /* KaydÄ±rma Ã§ubuÄŸunu gizle (Estetik) */
    }

    .tab-item {
        flex: 0 0 auto; /* Ä°Ã§eriÄŸi sÄ±kÄ±ÅŸtÄ±rma */
        padding: 10px 15px;
        font-size: 13px;
    }

    /* 6. Galeri ve Ä°ÅŸler Grid'i (Mobilde 2 SÃ¼tun) */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* Yan yana 2 resim */
        gap: 10px;
    }
    
    /* 7. Profil DÃ¼zenle ModalÄ± TaÅŸmasÄ±n */
    #editProfileModal .modal-content {
        width: 95%;             /* EkranÄ±n %95'ini kaplasÄ±n */
        margin: 10px auto;
        max-height: 80vh;       /* Ã‡ok uzunsa scroll olsun */
        overflow-y: auto;
    }
}
/* --- MERKEZÄ° SORU-CEVAP TARZI TARTIÅMA TASARIMI --- */

.qa-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

/* Yorum/Cevap KartÄ± */
.qa-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: all 0.2s ease;
}

.qa-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

/* Sol Taraf: Avatar ve Ã‡izgi */
.qa-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50px;
    flex-shrink: 0;
}

.qa-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f1f5f9;
}

/* Ä°Ã§erik AlanÄ± */
.qa-main {
    flex: 1;
    min-width: 0;
}

.qa-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.qa-author {
    font-weight: 700;
    color: #0F172A;
    font-size: 15px;
}

.qa-role-badge {
    font-size: 10px;
    background: #0A1128;
    color: #00F7A3;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    text-transform: uppercase;
    font-weight: 800;
}

.qa-date {
    font-size: 12px;
    color: #94a3b8;
}

.qa-content {
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
    white-space: pre-wrap; /* SatÄ±r boÅŸluklarÄ±nÄ± korur */
}

/* Alt Aksiyonlar (BeÄŸen, YanÄ±tla) */
.qa-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 10px;
}

.qa-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}

.qa-btn:hover { color: #00F7A3; }
.qa-btn.liked { color: #ef4444; } /* BeÄŸenilince kÄ±rmÄ±zÄ± */

/* Cevap Yazma AlanÄ± */
.qa-input-area {
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.qa-textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 12px;
    min-height: 100px;
    font-family: inherit;
    resize: vertical;
    box-sizing: border-box;
}

.qa-textarea:focus {
    outline: none;
    border-color: #00F7A3;
    box-shadow: 0 0 0 3px rgba(0, 247, 163, 0.1);
}

/* YanÄ±tlar (Ä°Ã§ Ä°Ã§e) */
.qa-replies {
    margin-top: 15px;
    padding-left: 20px;
    border-left: 2px solid #e2e8f0;
}
.qa-reply-card {
    background: #f8fafc; /* YanÄ±tlar hafif gri */
    margin-top: 10px;
    padding: 15px;
    border-radius: 8px;
}
/* --- YORUM SÄ°STEMÄ° STÄ°LLERÄ° --- */

/* Neon YeÅŸili Etiket */
.mention-tag {
    color: #00F7A3;
    font-weight: 800;
    text-shadow: 0 0 8px rgba(0, 247, 163, 0.5);
    cursor: pointer;
    text-decoration: none;
}

/* Kart YapÄ±sÄ± */
.qa-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.qa-avatar { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
.qa-main { flex: 1; min-width: 0; }

.qa-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.qa-author { font-weight: 700; color: #0F172A; text-decoration: none; font-size: 15px; }
.qa-date { font-size: 12px; color: #94a3b8; }

.qa-role-badge { 
    font-size: 10px; padding: 2px 6px; border-radius: 4px; margin-left: 6px; font-weight: 800; 
}
.qa-role-badge.admin { background: #ef4444; color: white; }
.qa-role-badge.maker { background: #0A1128; color: #00F7A3; }

.qa-content { font-size: 15px; color: #334155; line-height: 1.5; white-space: pre-wrap; }

/* Butonlar */
.qa-actions { display: flex; gap: 15px; margin-top: 10px; border-top: 1px solid #f1f5f9; padding-top: 8px; }
.qa-btn { background: none; border: none; cursor: pointer; color: #64748B; font-size: 13px; display: flex; align-items: center; gap: 5px; }
.qa-btn:hover { color: #00F7A3; }
.qa-btn.liked { color: #ef4444; }
.qa-btn.delete-btn { color: #ef4444; margin-left: auto; }

/* YanÄ±tlar */
.qa-reply-form { background: #f8fafc; padding: 10px; border-radius: 8px; margin-top: 10px; }
.qa-textarea { width: 100%; border: 1px solid #cbd5e1; border-radius: 8px; padding: 10px; font-family: inherit; }
.qa-reply-card { background: #f8fafc; padding: 12px; border-radius: 8px; margin-top: 10px; display: flex; gap: 10px; }
.qa-avatar-small { width: 32px; height: 32px; border-radius: 50%; }
.qa-btn-link { background: none; border: none; color: #00F7A3; font-size: 11px; cursor: pointer; font-weight: bold; margin-top: 5px; padding: 0; }
/* --- YORUM SÄ°STEMÄ° DÃœZELTMELERÄ° (SON HALÄ°) --- */

/* 1. Metin TaÅŸmasÄ±nÄ± Ã–nle (Uzun kelimeler alt satÄ±ra iner) */
.qa-content, .qa-reply-content {
    font-size: 15px;
    color: #334155;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word; /* Uzun kelimeleri kÄ±rar */
    overflow-wrap: break-word; /* TaÅŸmayÄ± Ã¶nler */
    max-width: 100%; /* Kutudan taÅŸmayÄ± engeller */
}

/* 2. Neon YeÅŸili Etiket (Link gÃ¶rÃ¼ntÃ¼sÃ¼nÃ¼ kaldÄ±rÄ±r) */
.mention-tag {
    color: #00F7A3 !important; /* Neon YeÅŸil */
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 247, 163, 0.6); /* Parlama */
    cursor: pointer;
    text-decoration: none !important; /* Alt Ã§izgiyi kaldÄ±rÄ±r */
    background: rgba(0, 247, 163, 0.1); /* Hafif yeÅŸil arka plan */
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
}

.mention-tag:hover {
    text-decoration: none;
    background: rgba(0, 247, 163, 0.2);
}

/* 3. Kart YapÄ±sÄ± ve Mobilde GeniÅŸlik */
.qa-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    width: 100%;
    box-sizing: border-box; /* Padding dahil geniÅŸlik hesapla */
}

.qa-main {
    flex: 1;
    min-width: 0; /* Flex iÃ§inde taÅŸmayÄ± Ã¶nlemek iÃ§in kritik */
}

/* 4. YanÄ±tlar (SaÄŸa KaymayÄ± Azalt) */
.qa-replies {
    margin-top: 10px;
    padding-left: 0; /* Soldan boÅŸluÄŸu sÄ±fÄ±rladÄ±k */
}

.qa-reply-card {
    background: #f8fafc;
    padding: 10px;
    border-radius: 8px;
    margin-top: 8px;
    display: flex;
    gap: 10px;
    border-left: 3px solid #e2e8f0; /* HiyerarÅŸiyi boÅŸlukla deÄŸil Ã§izgiyle gÃ¶ster */
    width: 100%;
    box-sizing: border-box;
}

/* MOBÄ°L Ä°Ã‡Ä°N Ã–ZEL AYAR (DaralmayÄ± Engeller) */
@media (max-width: 768px) {
    .qa-card {
        padding: 10px; /* Mobilde paddingi azalt */
        gap: 10px;
    }
    
    .qa-avatar { width: 35px; height: 35px; } /* AvatarÄ± kÃ¼Ã§Ã¼lt */
    
    .qa-replies {
        margin-left: 0; /* Mobilde hiÃ§ kaydÄ±rma yapma */
        border-left: none;
    }

    .qa-reply-card {
        background: #f1f5f9;
        margin-left: 5px; /* Sadece 5px iÃ§eri girsin */
        width: calc(100% - 5px);
        font-size: 13px;
    }
}

/* Buton ve Form DÃ¼zenlemeleri */
.qa-reply-form { 
    background: #fff; 
    border: 1px solid #ddd;
    padding: 10px; 
    border-radius: 8px; 
    margin-top: 10px; 
}

.qa-textarea { 
    width: 100%; 
    border: 1px solid #cbd5e1; 
    border-radius: 8px; 
    padding: 10px; 
    font-family: inherit; 
    box-sizing: border-box;
}
/* --- YORUM SÄ°STEMÄ° DÃœZELTMELERÄ° --- */

/* Neon YeÅŸili Etiket (Daha Sade) */
.mention-tag {
    color: #00F7A3 !important;
    font-weight: 800;
    /* text-shadow kaldÄ±rÄ±ldÄ±, sadece renk kaldÄ± */
    text-decoration: none !important;
    cursor: pointer;
}

.mention-tag:hover {
    text-decoration: underline !important;
}

/* Yorumun altÄ±ndaki iÅŸlem butonlarÄ± */
.qa-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 8px;
    border-top: 1px solid #f1f5f9;
    padding-top: 8px;
}

/* Raporla butonu iÃ§in stil */
.btn-report {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    color: #cbd5e1; /* Ã‡ok silik gri */
    transition: 0.2s;
    margin-left: auto; /* En saÄŸa yaslar */
}
.btn-report:hover {
    color: #ef4444; /* Ãœzerine gelince kÄ±rmÄ±zÄ± */
}
/* --- YORUM SÄ°STEMÄ° FÄ°NAL DÃœZELTMELER --- */

/* 1. Neon YeÅŸili Etiket (SadeleÅŸtirilmiÅŸ) */
.mention-tag {
    color: #00F7A3 !important;
    font-weight: 800;
    text-decoration: none !important;
    cursor: pointer;
}
.mention-tag:hover {
    text-decoration: underline !important;
}

/* 2. Rapor Butonu (GÃ¶rÃ¼nÃ¼r Gri) */
.btn-report {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    color: #94a3b8; /* Orta Gri */
    margin-left: auto; /* SaÄŸa yasla */
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}
.btn-report:hover {
    color: #ef4444; /* Hoverda KÄ±rmÄ±zÄ± */
}

/* 3. YanÄ±t KartlarÄ± (Mobilde DÃ¼zgÃ¼n GÃ¶rÃ¼nÃ¼m) */
.qa-reply-card {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box; /* TaÅŸmayÄ± Ã–nler */
}

.qa-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.qa-reply-header {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 2px;
}

.qa-reply-content {
    font-size: 14px;
    color: #334155;
    line-height: 1.4;
    word-break: break-word; /* Uzun kelimeleri kÄ±r */
}

.qa-btn-link {
    background: none;
    border: none;
    color: #00F7A3;
    font-size: 11px;
    cursor: pointer;
    font-weight: bold;
    padding: 0;
    margin-top: 4px;
}
/* --- MOBÄ°L Ä°Ã‡Ä°N TAM EKRAN OPTÄ°MÄ°ZASYONU --- */

@media (max-width: 768px) {
    
    /* 1. Ana Konteynerin Yan BoÅŸluklarÄ±nÄ± SÄ±fÄ±rla */
    .main-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 60px 0 0 0 !important; /* Ãœstten header payÄ± kalsÄ±n, yanlar 0 olsun */
        padding: 0 !important; /* Ä°Ã§ boÅŸluÄŸu kaldÄ±r */
        box-sizing: border-box !important;
    }

    /* 2. Ä°Ã§erik Kutusunu (Beyaz Kart) Tam GeniÅŸlik Yap */
    .content-box {
        border-radius: 0 !important; /* KÃ¶ÅŸeleri dik yap (mobil uygulama hissi) */
        box-shadow: none !important; /* GÃ¶lgeyi kaldÄ±r (yer kazandÄ±rÄ±r) */
        padding: 15px !important; /* Ä°Ã§eriÄŸi kenara Ã§ok yapÄ±ÅŸtÄ±rma, hafif pay bÄ±rak */
        margin: 0 !important;
        width: 100% !important;
        border: none !important; /* Kenar Ã§izgilerini kaldÄ±r */
    }

    /* 3. Blog GÃ¶rselini Tam Ekrana Yay */
    .content-box img#image {
        width: calc(100% + 30px) !important; /* Padding'i telafi et */
        margin-left: -15px !important; /* Sola Ã§ek */
        margin-right: -15px !important; /* SaÄŸa Ã§ek */
        border-radius: 0 !important; /* KÃ¶ÅŸe yuvarlamayÄ± kaldÄ±r */
        max-width: none !important;
    }

    /* 4. Yorum AlanÄ±nÄ± GeniÅŸlet */
    .qa-input-area {
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        margin-left: -15px !important; /* Konteyner dÄ±ÅŸÄ±na taÅŸÄ±r */
        margin-right: -15px !important;
        width: calc(100% + 30px) !important;
        padding: 15px !important;
    }

    /* 5. Yorum KartlarÄ±nÄ± GeniÅŸlet */
    .qa-card {
        border-radius: 0 !important; /* Kare kartlar */
        border-left: none !important;
        border-right: none !important;
        margin-left: -15px !important;
        margin-right: -15px !important;
        width: calc(100% + 30px) !important;
        margin-bottom: 5px !important; /* Kartlar arasÄ± boÅŸluÄŸu azalt */
    }

    /* 6. Header (BaÅŸlÄ±k) AlanÄ±nÄ± SÄ±kÄ±laÅŸtÄ±r */
    header {
        padding: 10px !important; /* Header iÃ§ boÅŸluÄŸunu azalt */
    }
    
    /* 320px gibi Ã‡OK DAR ekranlar iÃ§in Ã¶zel kurtarÄ±cÄ± */
    @media (max-width: 350px) {
        .content-box {
            padding: 10px !important; /* Ä°Ã§ boÅŸluÄŸu daha da azalt */
        }
        
        .qa-header {
            flex-direction: column; /* Ä°sim ve tarihi alt alta al */
            align-items: flex-start;
        }
        
        .qa-date {
            font-size: 10px !important;
            margin-top: 2px;
        }
    }
}
/* --- MOBÄ°L Ä°Ã‡Ä°N TAM EKRAN VE SIFIR GRÄ°LÄ°K --- */

@media (max-width: 768px) {
    
    /* 1. TÃœM ARKA PLANI BEYAZ YAP (GriliÄŸi Ã¶ldÃ¼rÃ¼r) */
    body, html {
        background-color: #ffffff !important;
        background: #ffffff !important;
        overflow-x: hidden !important; /* SaÄŸa sola kaymayÄ± engelle */
    }

    /* 2. ANA KAPLAYICIYI EKRANA YAY */
    .main-container {
        width: 100vw !important; /* Ekran geniÅŸliÄŸi kadar */
        max-width: 100vw !important;
        margin: 60px 0 0 0 !important; /* Sadece header iÃ§in Ã¼st boÅŸluk */
        padding: 0 !important;
        overflow-x: hidden !important;
    }

    /* 3. Ä°Ã‡ERÄ°K KUTUSUNU DÃœZLEÅTÄ°R */
    .content-box {
        background-color: #ffffff !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 15px !important; /* YazÄ±lar kenara yapÄ±ÅŸmasÄ±n diye iÃ§ boÅŸluk */
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important; /* GÃ¶lgeyi kaldÄ±r */
    }

    /* 4. BLOG RESMÄ°NÄ° EKRANDAN TAÅIR (Tam GeniÅŸlik) */
    .content-box img#image {
        width: 100vw !important; /* EkranÄ±n tamamÄ±nÄ± kapla */
        max-width: none !important;
        margin-left: -15px !important; /* Padding'i telafi et (Sola Ã§ek) */
        margin-right: -15px !important; /* SaÄŸa Ã§ek */
        border-radius: 0 !important;
        display: block;
    }

    /* 5. YORUM ALANINI EKRANA YAY */
    .qa-input-area, .qa-card {
        width: 100vw !important;
        max-width: none !important;
        margin-left: -15px !important;
        margin-right: -15px !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        box-shadow: none !important;
        box-sizing: border-box !important; /* Padding dahil hesapla */
    }
    
    /* Yorum formu iÃ§indeki boÅŸluklarÄ± ayarla */
    .qa-input-area {
        padding: 15px !important;
        margin-bottom: 10px !important;
        border-bottom: 1px solid #eee !important;
    }

    /* 6. Ã‡OK KÃœÃ‡ÃœK EKRANLAR (320px) Ä°Ã‡Ä°N TAÅMA Ã–NLEYÄ°CÄ° */
    @media (max-width: 360px) {
        /* BaÅŸlÄ±k ve Tarih yan yana sÄ±ÄŸmÄ±yorsa alt alta al */
        .qa-header {
            flex-direction: column !important;
            align-items: flex-start !important;
        }
        
        /* Tarihi kÃ¼Ã§Ã¼lt */
        .qa-date {
            margin-top: 4px !important;
            font-size: 11px !important;
        }

        /* ButonlarÄ± kÃ¼Ã§Ã¼lt */
        .qa-actions button {
            font-size: 11px !important;
        }
        
        /* Ä°Ã§erik metnini biraz kÃ¼Ã§Ã¼lt */
        .qa-content {
            font-size: 14px !important;
        }
    }
}
/* --- MOBÄ°L Ä°Ã‡Ä°N KESÄ°N SIFIRLAMA (SOLA YASLAR) --- */

@media (max-width: 768px) {
    
    /* 1. TarayÄ±cÄ± ve Sayfa BoÅŸluklarÄ±nÄ± SÄ±fÄ±rla */
    html, body {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        overflow-x: hidden !important; /* Yana taÅŸmayÄ± engeller */
        background-color: #ffffff !important;
    }

    /* 2. Ana TaÅŸÄ±yÄ±cÄ±yÄ± Tam Sola Yasla */
    .main-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 60px 0 0 0 !important; /* Sadece Ã¼stten boÅŸluk, yanlar 0 */
        padding: 0 !important; /* Ä°Ã§ boÅŸluk yok */
        display: block !important; /* Flex veya Grid ise bozmasÄ±n */
    }

    /* 3. Ä°Ã§erik Kutusunu Ekrana Yay */
    .content-box {
        margin: 0 !important; /* Kenar boÅŸluÄŸu yok */
        width: 100% !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
        padding: 15px !important; /* YazÄ±lar kenara yapÄ±ÅŸmasÄ±n diye iÃ§ boÅŸluk */
        box-sizing: border-box !important; /* Padding taÅŸma yapmasÄ±n */
    }

    /* 4. Resmi Tam Ekran Yap (Kenar boÅŸluksuz) */
    .content-box img#image {
        width: calc(100% + 30px) !important; /* Padding'i yutmasÄ± iÃ§in geniÅŸlet */
        margin-left: -15px !important; /* Sola Ã§ekerek yapÄ±ÅŸtÄ±r */
        margin-right: -15px !important;
        max-width: none !important;
        display: block;
        border-radius: 0 !important;
    }

    /* 5. Yorum AlanlarÄ±nÄ± Hizala */
    .qa-input-area, .qa-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        box-sizing: border-box !important;
    }
    
    /* Yorum kutusunun iÃ§indeki boÅŸluÄŸu ayarla */
    .qa-input-area {
        padding: 15px !important; 
        border: none !important;
        border-bottom: 1px solid #eee !important;
    }
}
/* --- YORUM KARTLARI Ä°Ã‡Ä°N MOBÄ°L SIKIÅTIRMA --- */

@media (max-width: 768px) {
    
    /* 1. KartÄ±n iÃ§ boÅŸluklarÄ±nÄ± (Padding) kÃ¼Ã§Ã¼lt */
    .qa-card {
        padding: 8px 1px !important; /* Ãœst-Alt: 8px, SaÄŸ-Sol: 5px */
        gap: 8px !important; /* FotoÄŸraf ile yazÄ± arasÄ±ndaki boÅŸluÄŸu azalttÄ±k (Eskiden 15px idi) */
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 0 !important; /* Dik kÃ¶ÅŸeler yer kazandÄ±rÄ±r */
        border-bottom: 1px solid #eee !important; /* KartlarÄ± Ã§izgiyle ayÄ±r */
        border-left: none !important;
        border-right: none !important;
        border-top: none !important;
        box-shadow: none !important;
    }

    /* 2. Profil Fotosu AlanÄ± (Sola Yasla) */
    .qa-sidebar {
        width: 40px !important; /* Sabit geniÅŸlik */
        flex-shrink: 0 !important; /* Asla kÃ¼Ã§Ã¼lmesin */
        padding-left: 0px !important; /* Sol kenara neredeyse yapÄ±ÅŸÄ±k */
        display: flex;
        justify-content: flex-start; /* Ä°Ã§indeki resmi sola daya */
    }

    /* 3. Profil Fotosu (Boyut) */
    .qa-avatar {
        width: 38px !important;
        height: 38px !important;
        border-radius: 50%;
    }

    /* 4. YazÄ± AlanÄ± (SaÄŸa Yasla ve GeniÅŸlet) */
    .qa-main {
        padding-right: 0px !important; /* SaÄŸ kenara neredeyse yapÄ±ÅŸÄ±k */
        width: 100% !important;
    }

    /* 5. Alt YanÄ±tlar (Nested Reply) iÃ§in de aynÄ±sÄ± */
    .qa-reply-card {
        padding: 6px 2px !important;
        gap: 6px !important;
        margin-top: 5px !important;
        background: #f9f9f9 !important; /* Hafif ayÄ±rt edici renk */
        border-radius: 4px !important;
    }
    
    /* YanÄ±tlardaki kÃ¼Ã§Ã¼k fotolar */
    .qa-avatar-small {
        width: 28px !important;
        height: 28px !important;
    }

    /* Tarih ve Ä°sim HizalamasÄ± */
    .qa-header {
        margin-bottom: 4px !important;
    }
    
    /* Gereksiz boÅŸluklarÄ± tÄ±raÅŸla */
    .qa-actions {
        margin-top: 5px !important;
        padding-top: 5px !important;
        gap: 15px !important; /* Butonlar arasÄ± boÅŸluk */
    }
}


/* SADECE MOBÄ°L Ä°Ã‡Ä°N Ã–ZEL AYAR (Telefonlar) */

/* --- MOBÄ°L Ä°Ã‡Ä°N KESÄ°N SIFIRLAMA (PARMAK BOÅLUÄU YOK EDÄ°CÄ°) --- */



@media (max-width: 768px) {

    /* 1. TAÅMA SORUNU Ã‡Ã–ZÃœMÃœ */
    /* width: 100vw yerine 100% kullanarak taÅŸmayÄ± engelliyoruz */
    html, body, 
    .main-content, 
    .main-container, 
    .content-box {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important; 
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* 2. YORUM KARTI DÃœZENÄ° (Sil butonu iÃ§in yer aÃ§tÄ±k) */
    .qa-card {
        width: 100% !important;
        margin: 0 !important;
        /* SaÄŸdan 10px boÅŸluk bÄ±raktÄ±k ki buton taÅŸmasÄ±n */
        padding: 10px 10px 10px 0 !important; 
        box-sizing: border-box !important; /* Padding geniÅŸliÄŸi etkilemesin */
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        box-shadow: none !important;
        gap: 8px !important;
    }

    /* 3. PARLAMAYI KAPATMA (@Etiket) */
    .mention-tag {
        color: #00F7A3 !important; /* Sadece yeÅŸil renk */
        text-shadow: none !important; /* ğŸ”¥ PARLAMA EFEKTÄ° SÄ°LÄ°NDÄ° */
        font-weight: bold !important;
        text-decoration: none !important;
    }

    /* 4. MOR LÄ°NK RENGÄ°NÄ° DÃœZELTME (Ä°simler Siyah Olsun) */
    /* Hem ana yorum hem de yanÄ±t veren isimleri kapsar */
    .qa-author, 
    .qa-reply-author, 
    .qa-header a, 
    .qa-reply-header a {
        color: #000000 !important; /* ğŸ”¥ SÄ°MSÄ°YAH YAPILDI */
        text-decoration: none !important; /* ğŸ”¥ ALT Ã‡Ä°ZGÄ° KALDIRILDI */
        font-weight: bold !important;
    }

    /* TÄ±klayÄ±nca da renk deÄŸiÅŸmesin */
    .qa-author:visited, .qa-reply-author:visited {
        color: #000000 !important;
    }

    /* 5. PROFÄ°L FOTO ALANI (Sola YapÄ±ÅŸÄ±k) */
    .qa-sidebar {
        width: 40px !important;
        min-width: 40px !important;
        padding: 0 !important;
        display: flex;
        justify-content: center; /* Ortala */
        align-items: flex-start;
    }

    .qa-avatar {
        width: 36px !important;
        height: 36px !important;
        border-radius: 50%;
        margin-left: 2px !important; /* Ã‡ok hafif iÃ§eride */
    }

    /* 6. Ä°Ã‡ERÄ°K VE BUTON ALANI */
    .qa-main {
        width: 100% !important;
        min-width: 0 !important; /* TaÅŸmayÄ± Ã¶nleyen sihirli kod */
        padding-right: 5px !important;
    }

    /* Aksiyon butonlarÄ± (Sil, BeÄŸen) satÄ±ra sÄ±ÄŸsÄ±n */
    .qa-actions {
        flex-wrap: wrap !important; /* SÄ±ÄŸmazsa alt satÄ±ra geÃ§sin, taÅŸmasÄ±n */
        gap: 10px !important;
    }
}
/* --- SORU DETAY Ä°YÄ°LEÅTÄ°RMELERÄ° --- */

/* 1. YÃ–NETÄ°CÄ° VE ÃœRETÄ°CÄ° ROZETLERÄ° */
.role-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
}

.role-badge.admin {
    background: #ef4444; /* KÄ±rmÄ±zÄ± */
    color: white;
}

.role-badge.maker {
    background: #0A1128; /* Lacivert */
    color: #00F7A3; /* YeÅŸil */
}

/* 2. BUTONLAR (Sil ve Bildir) */
.action-btn-group {
    display: flex;
    gap: 10px;
    font-size: 12px;
}

.btn-delete {
    background: none; border: none; 
    color: #ef4444; font-weight: bold; cursor: pointer;
}
.btn-report {
    background: none; border: none; 
    color: #94a3b8; font-weight: bold; cursor: pointer;
}
.btn-report:hover { color: #ef4444; }

/* 3. MOBÄ°L KENAR BOÅLUÄU (Nefes Alma PayÄ±) */
@media (max-width: 768px) {
    .main-container {
        /* Yanlardan 5px boÅŸluk bÄ±rakÄ±r, tam yapÄ±ÅŸmaz */
        padding-left: 5px !important; 
        padding-right: 5px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Ä°Ã§erik kutularÄ±nÄ±n iÃ§ini de koruyalÄ±m */
    .content-box, .answer-card {
        border-radius: 8px !important; /* Hafif yuvarlak kalsÄ±n */
    }
}
/* --- ORTAK DETAY SAYFASI TASARIMI (SORU & BLOG) --- */

/* 1. Ana KapsayÄ±cÄ± (Hafif Yan BoÅŸluklar) */
.main-container {
    max-width: 900px;
    margin: 100px auto 40px;
    padding: 0 15px; /* Mobilde kenarlara yapÄ±ÅŸmasÄ±n diye 15px boÅŸluk */
    box-sizing: border-box;
}

/* 2. Ä°Ã§erik Kutusu (Yuvarlak ve GÃ¶lgeli) */
.content-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
}

/* 3. Yorum/Cevap KartÄ± (Standart) */
.comment-item, 
.answer-item {
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}
.comment-item:last-child, 
.answer-item:last-child {
    border-bottom: none;
}

/* 4. Yazar ve BaÅŸlÄ±k AlanÄ± */
.author-section {
    display: flex;
    align-items: center;
    justify-content: space-between; /* SaÄŸa ve sola yasla */
    gap: 12px;
    margin-bottom: 12px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eee;
}

/* 5. Rozetler (YÃ¶netici / Ãœretici) */
.role-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    vertical-align: middle;
}
.role-badge.admin { background: #ef4444; color: white; box-shadow: 0 2px 5px rgba(239,68,68,0.3); }
.role-badge.maker { background: #0A1128; color: #00F7A3; box-shadow: 0 2px 5px rgba(10,17,40,0.3); }

/* 6. Ä°Ã§ Ä°Ã§e YanÄ±tlar (Nested) */
.nested-reply {
    margin-top: 12px;
    margin-left: 20px; /* Girinti */
    background: #f8fafc;
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid #e2e8f0;
    position: relative;
}

/* 7. Butonlar (Sil, Bildir, YanÄ±tla) */
.action-btn-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-action {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: 0.2s;
}
.btn-delete { color: #ef4444; opacity: 0.8; }
.btn-delete:hover { opacity: 1; background: #fef2f2; padding: 4px 8px; border-radius: 6px; }

.btn-report { color: #94a3b8; }
.btn-report:hover { color: #ef4444; }

.reply-toggle {
    color: #00F7A3;
    margin-top: 8px;
    font-size: 13px;
}
.reply-toggle:hover { text-decoration: underline; }

/* 8. Mobil DÃ¼zenlemeler */
@media (max-width: 768px) {
    .content-box { padding: 20px; } /* Mobilde iÃ§ boÅŸluÄŸu azalt */
    .nested-reply { margin-left: 10px; padding: 12px; } /* Girintiyi azalt */
    .author-avatar { width: 36px; height: 36px; }
}
/* --- MOBÄ°L Ä°Ã‡Ä°N KESÄ°N GÃœVENLÄ°K BOÅLUÄU (Anti-YapÄ±ÅŸma) --- */

@media (max-width: 480px) {
    /* 1. TÃ¼m Ä°Ã§erik KutularÄ±na Zorla Ä°Ã§ BoÅŸluk Ver */
    .content-box, 
    .question-wrapper,
    .main-content > div {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 2. Ana Konteynerin Kenar BoÅŸluklarÄ±nÄ± Koru */
    .main-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
    }

    /* 3. Metinlerin Kenara YapÄ±ÅŸmasÄ±nÄ± Ã–nle */
    p, h1, h2, h3, .comment-text, .question-text {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        /* Kelimelerin taÅŸmasÄ±nÄ± Ã¶nle */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important; 
    }

    /* 4. ButonlarÄ±n Kenara YapÄ±ÅŸmasÄ±nÄ± Ã–nle */
    .btn-primary, .send-btn, .reply-toggle {
        max-width: 100% !important;
    }

    /* 5. Yorum KartlarÄ±nÄ± Hizala */
    .answer-item, .nested-reply {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
/* --- FREELANCE SÄ°STEMÄ° TAÅMA TAMÄ°RÄ° (SADECE BURASI) --- */

@media (max-width: 768px) {
    
    /* 1. TÃ¼m Freelance kartlarÄ±nÄ± ekrana sÄ±ÄŸmaya zorla */
    .job-card, 
    .job-card-horizontal,
    .filter-row {
        width: 100% !important;       /* GeniÅŸlik %100 olsun */
        max-width: 100vw !important;  /* EkranÄ± asla geÃ§mesin */
        box-sizing: border-box !important; /* Ä°Ã§ boÅŸluklar geniÅŸliÄŸi artÄ±rmasÄ±n (KRÄ°TÄ°K) */
        margin-left: 0 !important;    /* Sola yasla */
        margin-right: 0 !important;   /* SaÄŸa yasla */
        overflow: hidden !important;  /* Ä°Ã§inden taÅŸan bir ÅŸey olursa gizle */
    }

    /* 2. Kart iÃ§indeki uzun yazÄ±larÄ± (Link vb.) kÄ±r */
    /* TaÅŸmaya sebep olan uzun kelimeleri alt satÄ±ra indirir */
    .job-card *, .job-card-horizontal * {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
    }

    /* 3. SADECE 320px EKRANLAR Ä°Ã‡Ä°N Ã–ZEL AYAR */
    /* iPhone SE 1. Nesil gibi kÃ¼Ã§Ã¼k telefonlarda iÃ§ boÅŸluÄŸu azalt */
    @media (max-width: 340px) {
        .job-card, .job-card-horizontal {
            padding: 10px !important; /* 15px yerine 10px yapÄ±p yer aÃ§Ä±yoruz */
        }
        .filter-row {
            padding: 5px !important;
        }
        /* Buton yazÄ±larÄ±nÄ± biraz kÃ¼Ã§Ã¼lt ki sÄ±ÄŸsÄ±n */
        .btn-offer, .job-status-actions button {
            font-size: 11px !important;
            padding: 5px 8px !important;
        }
    }
}
/* --- SADECE 320px CÄ°HAZLAR Ä°Ã‡Ä°N FREELANCE DÃœZELTMESÄ° --- */

@media (max-width: 330px) {
    
    /* 1. Ä°lan KartlarÄ±nÄ± 3 Piksel Sola Ã‡ek */
    .job-card, 
    .job-card-horizontal {
        margin-left: -16.5px !important; /* Sola kaydÄ±r */
        width: calc(100% + 6px) !important; /* KaydÄ±rma boÅŸluÄŸunu doldur */
        padding-left: 5px !important; /* Ä°Ã§eriÄŸi biraz daha sÄ±kÄ±ÅŸtÄ±r */
        padding-right: 5px !important;
    }

    /* 2. "Teklif Ver" Butonundaki Harfi Kurtar */
    .btn-offer {
        font-size: 11px !important;       /* YazÄ±yÄ± 1 tÄ±k kÃ¼Ã§Ã¼lt */
        letter-spacing: -0.5px !important; /* Harfleri birbirine milim yaklaÅŸtÄ±r */
        padding-left: 2px !important;     /* Buton iÃ§ boÅŸluÄŸunu al */
        padding-right: 2px !important;
        width: 90% !important;
    }
    
    /* Filtre alanÄ±nÄ± da hizala */
    .filter-row {
        margin-left: -3px !important;
        width: calc(100% + 6px) !important;
    }
}

