/*
Theme Name: Sesli Sohbet
Theme URI: https://www.seslisohbet.net/
Author: SesliSohbet.net
Author URI: https://www.seslisohbet.net/
Description: Sesli sohbet ve kameralı chat platformu için özel WordPress teması. Admin panelinden oda, SSS ve içerik yönetimi yapılabilir.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sesli-sohbet
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ===== Tokens ===== */
:root{
  --bg-base:#0b0810;
  --bg-surface:#161020;
  --bg-surface-2:#1c1526;
  --border:#2b2138;
  --text-primary:#f5f0fa;
  --text-muted:#ab9dc4;
  --text-dim:#6f6089;

  --fuchsia:#ff3f8e;
  --gold:#f2b544;
  --emerald:#00e6a8;

  --grad-brand: linear-gradient(90deg, var(--fuchsia), var(--gold));
  --grad-hero: radial-gradient(60% 60% at 80% 20%, rgba(255,63,142,0.28), transparent 70%),
               radial-gradient(50% 50% at 15% 80%, rgba(242,181,68,0.18), transparent 70%);

  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:24px;

  --font-display:'Space Grotesk', sans-serif;
  --font-body:'Inter', sans-serif;
  --font-mono:'JetBrains Mono', monospace;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg-base);
  color:var(--text-primary);
  font-family:var(--font-body);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer;}
input,select{font-family:inherit;}
h1,h2,h3{font-family:var(--font-display); font-weight:600; letter-spacing:-0.02em;}
.mono{font-family:var(--font-mono);}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}

.noise-overlay{
  position:fixed; inset:0; pointer-events:none; z-index:1;
  opacity:0.035;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono); font-size:12.5px; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--gold);
}
.live-dot{
  width:7px; height:7px; border-radius:50%; background:#00e6a8;
  box-shadow:0 0 0 0 rgba(74,222,128,0.6);
  animation:pulseDot 1.8s infinite;
}
@keyframes pulseDot{
  0%{box-shadow:0 0 0 0 rgba(74,222,128,0.55);}
  70%{box-shadow:0 0 0 8px rgba(74,222,128,0);}
  100%{box-shadow:0 0 0 0 rgba(74,222,128,0);}
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 22px; border-radius:999px; font-weight:600; font-size:14.5px;
  border:1px solid transparent; transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--grad-brand); color:#0b0810;
  box-shadow:0 0 0 rgba(255,63,142,0);
}
.btn-primary:hover{ transform:translateY(-1px); box-shadow:0 8px 24px rgba(255,63,142,0.35); }
.btn-ghost{ color:var(--text-primary); border-color:var(--border); }
.btn-ghost:hover{ border-color:var(--fuchsia); color:var(--fuchsia); }
.btn-outline{ border-color:rgba(237,235,245,0.35); color:var(--text-primary); }
.btn-outline:hover{ border-color:var(--gold); color:var(--gold); }
.btn-block{ width:100%; display:inline-flex; align-items:center; justify-content:center; }

/* ===== Header ===== */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(10,12,20,0.72);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  overflow:hidden;
}
.site-header::before{
  content:'';
  position:absolute; inset:0; z-index:-1;
  opacity:0.16;
  background-image:
    repeating-linear-gradient(90deg,
      var(--fuchsia) 0px, var(--fuchsia) 2px,
      transparent 2px, transparent 10px),
    linear-gradient(90deg, rgba(255,63,142,0.4), rgba(242,181,68,0.3) 50%, transparent 90%);
  -webkit-mask-image:linear-gradient(180deg, black, transparent);
  mask-image:linear-gradient(180deg, black, transparent);
}
.site-header::after{
  content:'';
  position:absolute; top:-60%; right:-8%; width:340px; height:340px; z-index:-1;
  background:radial-gradient(circle, rgba(242,181,68,0.35), transparent 70%);
  filter:blur(10px);
}
.header-inner{
  max-width:1240px; margin:0 auto; padding:16px 28px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.logo{ display:flex; align-items:center; gap:10px; }
.logo-mark{ display:inline-flex; align-items:flex-end; gap:2px; height:20px; }
.logo-mark .bar{
  width:3px; background:var(--grad-brand); border-radius:2px;
  animation:barPulse 1.2s ease-in-out infinite;
}
.logo-mark .bar:nth-child(1){height:40%; animation-delay:0s;}
.logo-mark .bar:nth-child(2){height:80%; animation-delay:.1s;}
.logo-mark .bar:nth-child(3){height:100%; animation-delay:.2s;}
.logo-mark .bar:nth-child(4){height:60%; animation-delay:.3s;}
.logo-mark .bar:nth-child(5){height:35%; animation-delay:.4s;}
@keyframes barPulse{ 0%,100%{transform:scaleY(0.5);} 50%{transform:scaleY(1);} }
.logo-text{ font-family:var(--font-display); font-size:19px; font-weight:600; }
.logo-text em{ font-style:normal; color:var(--gold); }
.logo-dot{ color:var(--text-dim); font-weight:400; }

.main-nav{ display:flex; gap:28px; }
.main-nav a{ font-size:14.5px; color:var(--text-muted); transition:color .15s ease; }
.main-nav a:hover{ color:var(--text-primary); }
.header-actions{ display:flex; align-items:center; gap:10px; }

.menu-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:none;
  position:relative; z-index:70; padding:6px;
}
.menu-toggle span{
  width:22px; height:2px; background:var(--text-primary); border-radius:2px;
  transition:transform .25s ease, opacity .2s ease;
}
.site-header.menu-open .menu-toggle span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.site-header.menu-open .menu-toggle span:nth-child(2){ opacity:0; }
.site-header.menu-open .menu-toggle span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
.mobile-nav{
  display:none; flex-direction:column;
  position:fixed; inset:0; z-index:200;
  padding:110px 32px 48px;
  background:
    radial-gradient(60% 50% at 85% 8%, rgba(255,63,142,0.22), transparent 70%),
    radial-gradient(50% 40% at 10% 90%, rgba(242,181,68,0.14), transparent 70%),
    var(--bg-base);
  overflow-y:auto;
}
.mobile-nav-close{
  position:fixed; top:22px; right:24px; z-index:210;
  width:42px; height:42px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--bg-surface); border:1px solid var(--border); color:var(--text-primary);
}
.mobile-nav-close:active{ color:var(--fuchsia); border-color:var(--fuchsia); }
.mobile-nav a{
  padding:18px 4px; font-size:24px; font-family:var(--font-display); font-weight:600;
  color:var(--text-primary); border-bottom:1px solid var(--border);
}
.mobile-nav a:active{ color:var(--gold); }
.mobile-nav .btn{ margin-top:28px; font-size:16px; padding:16px; }
body.menu-open .mobile-nav{ display:flex; }
body.menu-open{ overflow:hidden; }

/* ===== Hero ===== */
.hero{ position:relative; padding:72px 28px 96px; overflow:hidden; }
.hero::before{
  content:''; position:absolute; inset:0; background:var(--grad-hero); z-index:0;
}
.hero-waveform{
  position:absolute; left:0; right:0; bottom:0; height:180px; z-index:0;
  display:flex; align-items:flex-end; justify-content:center; gap:5px;
  mask-image:linear-gradient(to top, black, transparent);
  opacity:0.5;
}
.hero-waveform span{
  width:4px; border-radius:3px; background:var(--grad-brand);
}
.hero-inner{
  position:relative; z-index:1;
  max-width:1240px; margin:0 auto;
  display:grid; grid-template-columns:1.15fr 0.85fr; gap:56px; align-items:center;
}
.hero-welcome h1{
  font-size:clamp(38px, 5vw, 58px); line-height:1.05; margin:18px 0 20px;
}
.hero-lede{ color:var(--text-muted); font-size:17px; max-width:46ch; margin-bottom:32px; }
.hero-stats{ display:flex; gap:32px; margin-bottom:28px; }
.stat{ display:flex; flex-direction:column; gap:4px; }
.stat-num{ font-size:22px; font-weight:600; color:var(--text-primary); }
.stat-label{ font-size:12.5px; color:var(--text-dim); }

.welcome-proof{ display:flex; align-items:center; gap:14px; margin-bottom:32px; }
.avatar-stack{ display:flex; align-items:center; }
.avatar{
  width:34px; height:34px; border-radius:50%; border:2px solid var(--bg-base);
  margin-left:-10px; flex-shrink:0;
}
.avatar:first-child{ margin-left:0; }
.av-1{ background:linear-gradient(135deg, #ff3f8e, #b8135c); }
.av-2{ background:linear-gradient(135deg, #f2b544, #b8842a); }
.av-3{ background:linear-gradient(135deg, #00e6a8, #047857); }
.av-4{ background:linear-gradient(135deg, #f59e0b, #b45309); }
.av-more{
  display:flex; align-items:center; justify-content:center;
  background:var(--bg-surface-2); color:var(--text-muted); font-size:10.5px;
}
.welcome-proof-text{ font-size:13.5px; color:var(--text-muted); }
.welcome-proof-text strong{ color:var(--text-primary); }

.trust-badges{ display:flex; flex-wrap:wrap; gap:10px; }
.trust-badge{
  display:flex; align-items:center; gap:7px;
  padding:8px 14px; border-radius:999px;
  background:var(--bg-surface); border:1px solid var(--border);
  font-size:12.5px; color:var(--text-muted);
}
.trust-badge svg{ color:var(--gold); flex-shrink:0; }

.hero-join-card{
  background:linear-gradient(180deg, var(--bg-surface), var(--bg-surface-2));
  border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:32px 28px 26px; position:relative;
  box-shadow:0 24px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,63,142,0.05) inset;
}
.hero-join-card::before{
  content:''; position:absolute; inset:-1px; border-radius:var(--radius-lg);
  padding:1px; background:var(--grad-brand); opacity:0.4; z-index:-1;
}
.hero-join-card::after{
  content:''; position:absolute; top:-40px; right:-40px; width:160px; height:160px; z-index:-1;
  background:radial-gradient(circle, rgba(255,63,142,0.4), transparent 70%);
  filter:blur(6px); pointer-events:none;
}

.join-ribbon{
  position:absolute; top:-13px; left:28px;
  background:var(--grad-brand); color:#0b0810;
  font-size:11px; font-weight:600; letter-spacing:0.03em;
  padding:6px 14px; border-radius:999px;
  box-shadow:0 6px 16px rgba(255,63,142,0.4);
}

.join-card-header{ display:flex; align-items:center; gap:12px; margin-bottom:24px; }
.pulse-mic{
  width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:rgba(255,63,142,0.15); color:var(--fuchsia); flex-shrink:0;
  box-shadow:0 0 0 4px rgba(255,63,142,0.08);
}
.join-card-header h2{ font-size:17px; }
.join-card-header p{ font-size:13px; color:var(--text-dim); }
.mini-wave{ display:flex; align-items:flex-end; gap:3px; height:18px; margin-left:auto; }
.mini-wave span{ width:3px; border-radius:2px; background:var(--gold); opacity:0.7; animation:eqPulse 1s ease-in-out infinite; }
.mini-wave span:nth-child(1){height:35%;}
.mini-wave span:nth-child(2){height:90%; animation-delay:.1s;}
.mini-wave span:nth-child(3){height:60%; animation-delay:.2s;}
.mini-wave span:nth-child(4){height:100%; animation-delay:.3s;}
.mini-wave span:nth-child(5){height:50%; animation-delay:.4s;}

.join-activity{
  display:flex; align-items:center; gap:9px; margin-top:18px;
  padding:11px 14px; border-radius:var(--radius-sm);
  background:rgba(242,181,68,0.06); border:1px solid rgba(242,181,68,0.16);
}
.join-activity-dot{
  width:6px; height:6px; border-radius:50%; background:#00e6a8; flex-shrink:0;
  animation:pulseDot 1.8s infinite;
}
.join-activity p{ font-size:12.5px; color:var(--text-muted); }
.join-activity strong{ color:var(--text-primary); }

.join-form{ display:flex; flex-direction:column; gap:16px; }
.join-form label{ display:flex; flex-direction:column; gap:7px; font-size:13px; color:var(--text-muted); }
.join-form input[type="text"], .join-form select{
  background:var(--bg-surface-2); border:1px solid var(--border); border-radius:var(--radius-sm);
  padding:12px 14px; color:var(--text-primary); font-size:14.5px; outline:none;
  transition:border-color .15s ease;
}
.join-form input:focus, .join-form select:focus{ border-color:var(--fuchsia); }
.segmented{ display:flex; background:var(--bg-surface-2); border:1px solid var(--border); border-radius:var(--radius-sm); padding:4px; }
.segmented input{ display:none; }
.segmented label{
  flex:1; text-align:center; padding:9px 0; border-radius:8px; font-size:13.5px; color:var(--text-muted);
  transition:all .15s ease;
}
.segmented input:checked + label{ background:var(--grad-brand); color:#0b0810; font-weight:600; }
.join-note{ font-size:12px; color:var(--text-dim); margin-top:14px; text-align:center; }
.join-note a{ color:var(--gold); }

/* ===== Promo banner ===== */
.promo-banner{
  margin:0 28px; border-radius:var(--radius-lg);
  background:linear-gradient(120deg, rgba(255,63,142,0.16), rgba(242,181,68,0.10));
  border:1px solid var(--border);
}
.promo-inner{
  max-width:1240px; margin:0 auto; padding:44px 40px;
  display:grid; grid-template-columns:auto 1fr auto; gap:36px; align-items:center;
}
.promo-visual{ display:flex; align-items:flex-end; gap:5px; height:56px; }
.eq-bar{ width:6px; border-radius:3px; background:var(--grad-brand); animation:eqPulse 1.1s ease-in-out infinite; }
.eq-bar:nth-child(1){height:30%; animation-delay:0s;}
.eq-bar:nth-child(2){height:70%; animation-delay:.1s;}
.eq-bar:nth-child(3){height:100%; animation-delay:.2s;}
.eq-bar:nth-child(4){height:50%; animation-delay:.3s;}
.eq-bar:nth-child(5){height:85%; animation-delay:.4s;}
.eq-bar:nth-child(6){height:40%; animation-delay:.5s;}
.eq-bar:nth-child(7){height:65%; animation-delay:.6s;}
@keyframes eqPulse{ 0%,100%{transform:scaleY(0.4);} 50%{transform:scaleY(1);} }
.promo-text h2{ font-size:24px; margin-bottom:8px; }
.promo-text p{ color:var(--text-muted); max-width:52ch; font-size:15px; }

/* ===== Section head ===== */
.section-head{ max-width:1240px; margin:0 auto; padding:0 28px; margin-bottom:32px; }
.section-head h2{ font-size:32px; margin-top:10px; }

/* ===== Rooms ===== */
.rooms{ padding:96px 0 20px; }
.room-grid{
  max-width:1240px; margin:0 auto; padding:0 28px;
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.room-card{
  background:var(--bg-surface); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:22px; transition:border-color .2s ease, transform .2s ease;
  position:relative; overflow:hidden;
}
.room-card:hover{ border-color:var(--fuchsia); transform:translateY(-3px); }
.room-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.room-status{
  font-size:11px; text-transform:uppercase; letter-spacing:0.05em; font-weight:600;
  color:#00e6a8; display:flex; align-items:center; gap:6px;
}
.room-status::before{ content:''; width:6px; height:6px; border-radius:50%; background:#00e6a8; }
.room-count{ font-size:12px; color:var(--text-dim); }
.room-card h3{ font-size:17px; margin-bottom:8px; }
.room-card p{ font-size:13.5px; color:var(--text-muted); margin-bottom:18px; }
.room-wave{ display:flex; align-items:flex-end; gap:4px; height:20px; }
.room-wave span{ width:3px; border-radius:2px; background:var(--gold); opacity:0.6; animation:eqPulse 1s ease-in-out infinite; }
.room-wave span:nth-child(1){height:40%;}
.room-wave span:nth-child(2){height:100%; animation-delay:.15s;}
.room-wave span:nth-child(3){height:65%; animation-delay:.3s;}
.room-wave span:nth-child(4){height:80%; animation-delay:.45s;}

/* ===== Article ===== */
.article{
  padding:110px 28px; position:relative;
  background:radial-gradient(55% 45% at 50% 0%, rgba(255,63,142,0.10), transparent 70%);
}

.article-head{ max-width:1120px; margin:0 auto 48px; position:relative; z-index:1; }
.article-head h2{ font-size:32px; margin:14px 0 18px; max-width:20ch; }
.article-meta{ display:flex; align-items:center; gap:10px; color:var(--text-dim); font-size:12.5px; }
.meta-dot{ width:3px; height:3px; border-radius:50%; background:var(--text-dim); }

.article-inner{
  max-width:1120px; margin:0 auto; position:relative; z-index:1;
  display:grid; grid-template-columns:220px 1fr; gap:64px; align-items:start;
}

.article-toc{
  position:sticky; top:110px;
  display:flex; flex-direction:column; gap:2px;
  border-left:1px solid var(--border); padding-left:20px;
}
.toc-label{
  color:var(--text-dim); font-size:11px; text-transform:uppercase; letter-spacing:0.08em;
  margin-bottom:14px;
}
.article-toc a{
  display:flex; align-items:baseline; gap:10px;
  font-size:13.5px; color:var(--text-muted); padding:9px 0;
  transition:color .15s ease;
}
.article-toc a:hover{ color:var(--text-primary); }
.toc-num{ font-size:11px; color:var(--fuchsia); flex-shrink:0; }
.toc-cta{
  margin-top:24px; padding-top:22px; border-top:1px solid var(--border);
}
.toc-cta p{ font-size:12.5px; color:var(--text-dim); margin-bottom:12px; }
.toc-cta .btn{ font-size:13px; padding:11px; }

.article-body h3{
  display:flex; align-items:center; gap:12px;
  font-size:20px; margin:40px 0 14px; color:var(--text-primary);
}
.article-body h3:first-of-type{ margin-top:0; }
.h3-badge{
  width:32px; height:32px; border-radius:10px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,63,142,0.12); color:var(--fuchsia);
}
.article-body p{ color:var(--text-muted); font-size:15.5px; margin-bottom:6px; }
.article-lede{ font-size:17px !important; color:var(--text-primary) !important; margin-bottom:28px !important; }

.quick-answer{
  display:flex; gap:16px; align-items:flex-start;
  background:var(--bg-surface); border:1px solid var(--border); border-left:3px solid var(--gold);
  border-radius:var(--radius-md); padding:20px 22px; margin-bottom:36px;
}
.quick-answer-badge{
  flex-shrink:0; color:var(--gold); font-size:11px; text-transform:uppercase; letter-spacing:0.06em;
  border:1px solid rgba(242,181,68,0.35); border-radius:999px; padding:4px 12px; margin-top:2px;
}
.quick-answer p{ color:var(--text-primary) !important; font-size:15px !important; margin:0 !important; }

.article-pullquote{
  position:relative; margin:36px 0; padding:6px 0 6px 28px;
  border-left:2px solid var(--fuchsia);
  font-family:var(--font-display); font-size:21px; line-height:1.4;
  color:var(--text-primary); font-weight:500;
}
.quote-mark{
  position:absolute; left:-6px; top:-18px; font-size:46px;
  font-family:var(--font-display); color:var(--fuchsia); opacity:0.5;
}

@media (max-width:860px){
  .article-inner{ grid-template-columns:1fr; }
  .article-toc{ position:static; border-left:none; padding-left:0; border-top:1px solid var(--border); padding-top:20px; }
  .toc-cta{ display:none; }
}

/* ===== Blog ===== */
.blog{ padding:20px 0 110px; }
.blog-grid{
  max-width:1240px; margin:0 auto; padding:0 28px;
  display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:20px;
}
.blog-card{
  background:var(--bg-surface); border:1px solid var(--border); border-radius:var(--radius-md);
  overflow:hidden; transition:border-color .2s ease, transform .2s ease;
}
.blog-card:hover{ border-color:var(--gold); transform:translateY(-3px); }
.blog-card-feature{ grid-row:span 2; }
.blog-thumb{ height:150px; background-size:cover; }
.blog-card-feature .blog-thumb{ height:220px; }
.thumb-1{ background:radial-gradient(circle at 30% 30%, rgba(255,63,142,0.55), rgba(11,8,16,1) 70%); }
.thumb-2{ background:radial-gradient(circle at 70% 40%, rgba(242,181,68,0.5), rgba(11,8,16,1) 70%); }
.thumb-3{ background:radial-gradient(circle at 40% 60%, rgba(0,230,168,0.45), rgba(11,8,16,1) 70%); }
.thumb-4{ background:radial-gradient(circle at 60% 30%, rgba(255,63,142,0.4), rgba(11,8,16,1) 70%); }
.thumb-5{ background:radial-gradient(circle at 50% 50%, rgba(242,181,68,0.4), rgba(11,8,16,1) 70%); }
.blog-body{ padding:20px; }
.blog-tag{ font-family:var(--font-mono); font-size:11px; color:var(--gold); text-transform:uppercase; letter-spacing:0.05em; }
.blog-card h3{ font-size:17px; margin:10px 0 12px; line-height:1.35; }
.blog-card-feature h3{ font-size:21px; }
.blog-meta{ font-size:11.5px; color:var(--text-dim); }

/* ===== FAQ ===== */
.faq{ padding:20px 28px 120px; }
.faq-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap;
  max-width:900px;
}
.faq-intro{ color:var(--text-dim); font-size:14px; max-width:34ch; padding-bottom:4px; }

.faq-grid{
  max-width:1120px; margin:0 auto;
  display:grid; grid-template-columns:1fr 340px; gap:48px; align-items:start;
}
.faq-list{ margin:0; display:flex; flex-direction:column; gap:14px; }
.faq-visual{ position:sticky; top:110px; }
.faq-visual svg{ width:100%; height:auto; }

@media (max-width:960px){
  .faq-grid{ grid-template-columns:1fr; }
  .faq-visual{ display:none; }
}

.faq-item{
  background:var(--bg-surface); border:1px solid var(--border); border-radius:var(--radius-md);
  transition:border-color .2s ease, background .2s ease;
  overflow:hidden;
}
.faq-item:has(.faq-question[aria-expanded="true"]){
  border-color:rgba(255,63,142,0.45);
  background:linear-gradient(180deg, var(--bg-surface), var(--bg-surface-2));
}

.faq-question{
  width:100%; display:flex; align-items:center; gap:16px;
  background:none; border:none; color:var(--text-primary); padding:18px 20px;
  font-size:15.5px; font-weight:500; text-align:left;
}

.faq-badge{
  width:38px; height:38px; border-radius:11px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,63,142,0.12); color:var(--fuchsia);
}
.faq-badge-mic{ background:rgba(242,181,68,0.12); color:var(--gold); }
.faq-badge-free{ background:rgba(0,230,168,0.12); color:#00e6a8; }
.faq-badge-device{ background:rgba(0,230,168,0.12); color:var(--emerald); }
.faq-badge-shield{ background:rgba(255,63,142,0.12); color:var(--fuchsia); }

.faq-q-text{ flex:1; display:flex; flex-direction:column; gap:5px; line-height:1.4; }
.faq-tag{
  font-size:10.5px; text-transform:uppercase; letter-spacing:0.06em;
  color:var(--text-dim); font-weight:500;
}

.faq-icon{ position:relative; width:16px; height:16px; flex-shrink:0; }
.faq-icon::before, .faq-icon::after{
  content:''; position:absolute; background:var(--gold); border-radius:2px;
}
.faq-icon::before{ width:16px; height:2px; top:7px; left:0; }
.faq-icon::after{ width:2px; height:16px; top:0; left:7px; transition:transform .2s ease; }
.faq-question[aria-expanded="true"] .faq-icon::after{ transform:rotate(90deg); }

.faq-answer{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
.faq-answer p{ padding:0 20px 22px 74px; color:var(--text-muted); font-size:14.5px; max-width:60ch; }

@media (max-width:600px){
  .faq-answer p{ padding-left:20px; }
}

/* ===== Footer ===== */
.site-footer{ border-top:1px solid var(--border); padding:64px 28px 0; }
.footer-inner{
  max-width:1240px; margin:0 auto;
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:48px;
}
.footer-brand p{ color:var(--text-dim); font-size:13.5px; margin-top:14px; max-width:32ch; }
.footer-col h4{ font-family:var(--font-display); font-size:14px; margin-bottom:16px; color:var(--text-primary); }
.footer-col a{ display:block; color:var(--text-muted); font-size:13.5px; padding:6px 0; }
.footer-col a:hover{ color:var(--gold); }
.footer-col p{ color:var(--text-dim); font-size:13px; margin-bottom:14px; }
.footer-sister-link{
  display:inline-flex; flex-direction:column; gap:3px;
  text-decoration:none;
}
.footer-sister-name{
  font-size:15px; font-weight:800; letter-spacing:.4px;
  background:linear-gradient(90deg, #ff3f8e, #f2b544);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  transition:opacity .2s;
}
.footer-sister-link:hover .footer-sister-name{ opacity:.8; }
.footer-sister-sub{
  font-size:12px; color:var(--text-dim); letter-spacing:.2px;
}
.footer-bottom{
  border-top:1px solid var(--border); padding:20px 0; text-align:center;
  font-size:12.5px; color:var(--text-dim);
}

/* ===== Responsive ===== */
@media (max-width:1000px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-join-card{ order:-1; margin-bottom:36px; }
  .room-grid{ grid-template-columns:repeat(2,1fr); }
  .blog-grid{ grid-template-columns:1fr 1fr; }
  .blog-card-feature{ grid-column:span 2; grid-row:span 1; }
  .footer-inner{ grid-template-columns:1fr 1fr; }
}
@media (max-width:720px){
  .main-nav, .header-actions{ display:none; }
  .menu-toggle{ display:flex; }
  .promo-inner{ grid-template-columns:1fr; text-align:center; }
  .promo-visual{ justify-content:center; }
  .room-grid{ grid-template-columns:1fr; }
  .blog-grid{ grid-template-columns:1fr; }
  .blog-card-feature{ grid-column:span 1; }
  .footer-inner{ grid-template-columns:1fr; }
  .hero-stats{ flex-wrap:wrap; gap:20px; }
}

/* ============================================================
   POST HERO (single.php + page.php)
============================================================ */
.post-hero{
  position:relative;
  min-height:360px;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:var(--bg-surface);
}

/* Kapak görseli varsa arka plana yayılır */
.post-hero-has-image{
  background-image: var(--post-hero-img);
  background-size:cover;
  background-position:center top;
  min-height:480px;
}

/* Degrade overlay */
.post-hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(to top, rgba(11,8,16,0.97) 0%, rgba(11,8,16,0.65) 50%, rgba(11,8,16,0.25) 100%),
    radial-gradient(60% 60% at 60% 20%, rgba(255,63,142,0.18), transparent 70%);
  z-index:1;
}

/* Görsel yoksa güzel bir gradyan arka plan */
.post-hero:not(.post-hero-has-image){
  background:
    radial-gradient(60% 70% at 70% 10%, rgba(255,63,142,0.22), transparent 70%),
    radial-gradient(50% 50% at 10% 80%, rgba(242,181,68,0.14), transparent 70%),
    var(--bg-surface);
}
.post-hero:not(.post-hero-has-image) .post-hero-overlay{ display:none; }

.post-hero-inner{
  position:relative; z-index:2;
  max-width:1240px; width:100%;
  margin:0 auto;
  padding:64px 28px 56px;
  display:flex; flex-direction:column; gap:16px;
}

.post-hero-cat{
  align-self:flex-start;
  background:rgba(255,63,142,0.15);
  border:1px solid rgba(255,63,142,0.3);
  padding:5px 14px; border-radius:999px;
  font-size:11.5px;
  transition:background .15s ease;
}
.post-hero-cat:hover{ background:rgba(255,63,142,0.28); }

.post-hero-title{
  font-family:var(--font-display);
  font-size:clamp(26px, 4.5vw, 48px);
  line-height:1.1;
  letter-spacing:-0.025em;
  color:var(--text-primary);
  max-width:22ch;
  text-shadow:0 2px 20px rgba(0,0,0,0.5);
}

.post-hero-meta{
  display:flex; align-items:center; gap:10px;
  color:var(--text-dim); font-size:13px;
  font-family:var(--font-mono);
}

/* page hero biraz daha kısa olabilir */
.page-hero{ min-height:280px; }
.page-hero.post-hero-has-image{ min-height:380px; }

/* ============================================================
   SINGLE / PAGE LAYOUT
============================================================ */
.single-layout{
  display:grid;
  grid-template-columns:1fr 300px;
  gap:56px;
  align-items:start;
}

.single-content{ min-width:0; }

/* ---- Article body ---- */
.article-body{ max-width:72ch; line-height:1.8; }
.article-body h2,
.article-body h3,
.article-body h4{
  font-family:var(--font-display);
  color:var(--text-primary);
  margin:36px 0 14px;
  line-height:1.25;
}
.article-body h2{ font-size:22px; }
.article-body h3{ font-size:18px; }
.article-body p{ color:var(--text-muted); font-size:15.5px; margin-bottom:18px; }
.article-body ul,
.article-body ol{ color:var(--text-muted); font-size:15px; padding-left:22px; margin-bottom:18px; }
.article-body li{ margin-bottom:8px; }
.article-body a{ color:var(--gold); border-bottom:1px solid rgba(242,181,68,0.3); }
.article-body a:hover{ border-color:var(--gold); }
.article-body blockquote{
  border-left:3px solid var(--fuchsia);
  padding:12px 20px; margin:24px 0;
  background:var(--bg-surface); border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  font-style:italic; color:var(--text-muted);
}
.article-body img{ max-width:100%; border-radius:var(--radius-md); }
.article-body code{
  background:var(--bg-surface-2); border:1px solid var(--border);
  border-radius:6px; padding:2px 7px; font-family:var(--font-mono); font-size:13.5px;
  color:var(--gold);
}
.article-body pre{
  background:var(--bg-surface-2); border:1px solid var(--border);
  border-radius:var(--radius-md); padding:20px; overflow-x:auto;
  margin-bottom:20px;
}
.article-body pre code{ background:none; border:none; padding:0; }

/* Sayfa linkleri */
.page-links{
  display:flex; gap:8px; flex-wrap:wrap; margin-top:32px;
}
.page-links a, .page-links span{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:var(--radius-sm);
  background:var(--bg-surface); border:1px solid var(--border);
  font-family:var(--font-mono); font-size:13px; color:var(--text-muted);
}
.page-links a:hover{ border-color:var(--fuchsia); color:var(--fuchsia); }

/* ---- Single post footer ---- */
.single-post-footer{
  margin-top:52px; padding-top:28px; border-top:1px solid var(--border);
}

.single-tags{
  display:flex; flex-wrap:wrap; gap:8px; margin-bottom:32px;
}
.single-tag{
  padding:6px 14px; border-radius:999px;
  background:var(--bg-surface); border:1px solid var(--border);
  font-family:var(--font-mono); font-size:12px; color:var(--text-muted);
  transition:border-color .15s ease, color .15s ease;
}
.single-tag:hover{ border-color:var(--gold); color:var(--gold); }

.post-nav{
  display:grid; grid-template-columns:1fr 1fr; gap:16px;
}
.post-nav-item{
  display:flex; flex-direction:column; gap:6px;
  padding:18px 20px; border-radius:var(--radius-md);
  background:var(--bg-surface); border:1px solid var(--border);
  transition:border-color .2s ease, transform .2s ease;
}
.post-nav-item:hover{ border-color:var(--fuchsia); transform:translateY(-2px); }
.post-nav-next{ text-align:right; align-items:flex-end; }
.post-nav-label{
  display:inline-flex; align-items:center; gap:6px;
  font-family:var(--font-mono); font-size:11px; color:var(--text-dim); text-transform:uppercase; letter-spacing:0.06em;
}
.post-nav-title{ font-size:14px; color:var(--text-primary); font-weight:500; line-height:1.4; }

/* ============================================================
   SIDEBAR
============================================================ */
.single-sidebar{
  position:sticky; top:110px;
  display:flex; flex-direction:column; gap:24px;
}

/* Sohbet Giriş Kartı */
.sidebar-join-card{
  position:relative; overflow:hidden;
  background:linear-gradient(160deg, var(--bg-surface), var(--bg-surface-2));
  border:1px solid rgba(255,63,142,0.3);
  border-radius:var(--radius-lg);
  padding:24px;
  box-shadow:0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,63,142,0.04) inset;
}
.sidebar-join-glow{
  position:absolute; top:-40px; right:-40px; width:160px; height:160px;
  background:radial-gradient(circle, rgba(255,63,142,0.35), transparent 70%);
  filter:blur(20px); pointer-events:none; z-index:0;
}
.sidebar-join-card > *:not(.sidebar-join-glow){ position:relative; z-index:1; }

.sidebar-join-header{
  display:flex; align-items:center; gap:12px; margin-bottom:14px;
}
.sidebar-join-header h3{ font-size:16px; margin-bottom:3px; }
.sidebar-join-header p{ font-size:12px; color:var(--text-dim); display:flex; align-items:center; }

.sidebar-join-desc{
  font-size:13px; color:var(--text-muted); margin-bottom:16px; line-height:1.6;
}

/* Widget kutuları */
.sidebar-widget{
  background:var(--bg-surface);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:20px;
  display:flex; flex-direction:column; gap:0;
}

.sidebar-widget-title{
  display:flex; align-items:center; gap:8px;
  font-family:var(--font-display); font-size:13.5px; font-weight:600;
  color:var(--text-primary);
  margin-bottom:16px; padding-bottom:12px;
  border-bottom:1px solid var(--border);
}
.sidebar-widget-title svg{ color:var(--gold); flex-shrink:0; }

/* Popüler / Son yazı liste öğesi */
.sidebar-post-item{
  display:flex; align-items:flex-start; gap:12px;
  padding:10px 0; border-bottom:1px solid var(--border);
  transition:background .15s ease;
}
.sidebar-post-item:last-child{ border-bottom:none; padding-bottom:0; }
.sidebar-post-item:first-of-type{ padding-top:0; }
.sidebar-post-item:hover .sidebar-post-title{ color:var(--gold); }

.sidebar-post-num{
  font-size:18px; font-weight:600; line-height:1;
  color:var(--border); flex-shrink:0; padding-top:2px;
  min-width:28px;
}
.sidebar-post-title{
  display:block; font-size:13.5px; color:var(--text-primary);
  line-height:1.45; transition:color .15s ease;
  font-weight:500;
}
.sidebar-post-meta{
  display:block; font-family:var(--font-mono); font-size:11px;
  color:var(--text-dim); margin-top:4px;
}

/* Benzer yazılar */
.sidebar-related-item{
  display:flex; align-items:flex-start; gap:12px;
  padding:10px 0; border-bottom:1px solid var(--border);
  transition:opacity .15s ease;
}
.sidebar-related-item:last-child{ border-bottom:none; padding-bottom:0; }
.sidebar-related-item:first-of-type{ padding-top:0; }
.sidebar-related-item:hover{ opacity:0.82; }

.sidebar-related-thumb{
  width:64px; height:56px; flex-shrink:0; border-radius:var(--radius-sm);
  background-size:cover; background-position:center;
}
.sidebar-thumb-placeholder{
  background:radial-gradient(circle at 40% 40%, rgba(255,63,142,0.4), rgba(11,8,16,1) 70%);
}

.sidebar-related-body{
  display:flex; flex-direction:column; gap:4px; min-width:0;
}
.sidebar-related-title{
  font-size:13px; font-weight:500; color:var(--text-primary); line-height:1.4;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}

/* Kategori listesi */
.sidebar-cats{
  display:flex; flex-direction:column; gap:0;
}
.sidebar-cat-item{
  display:flex; align-items:center; justify-content:space-between;
  padding:9px 0; border-bottom:1px solid var(--border);
  font-size:13.5px; color:var(--text-muted);
  transition:color .15s ease;
}
.sidebar-cat-item:last-child{ border-bottom:none; }
.sidebar-cat-item:hover,
.sidebar-cat-item.active{ color:var(--gold); }
.sidebar-cat-count{
  font-family:var(--font-mono); font-size:11.5px; color:var(--text-dim);
  background:var(--bg-surface-2); border:1px solid var(--border);
  padding:2px 8px; border-radius:999px;
}
.sidebar-cat-item.active .sidebar-cat-count{ border-color:var(--gold); color:var(--gold); }

/* Standart WP widget sarmalayıcı */
.sidebar-widgets-wrap{
  display:flex; flex-direction:column; gap:24px;
}
.sidebar-widgets-wrap .widget{
  background:var(--bg-surface); border:1px solid var(--border);
  border-radius:var(--radius-md); padding:20px;
}
.sidebar-widgets-wrap .widget-title{
  font-family:var(--font-display); font-size:13.5px; font-weight:600;
  margin-bottom:14px; padding-bottom:10px; border-bottom:1px solid var(--border);
}

/* ============================================================
   ARCHIVE / INDEX HERO
============================================================ */
.archive-hero{
  position:relative; overflow:hidden;
  padding:72px 28px 64px;
  background:
    radial-gradient(55% 60% at 75% 15%, rgba(255,63,142,0.20), transparent 70%),
    radial-gradient(45% 45% at 15% 85%, rgba(242,181,68,0.12), transparent 70%),
    var(--bg-base);
  border-bottom:1px solid var(--border);
}
.archive-hero-glow{
  position:absolute; top:-80px; right:-60px; width:360px; height:360px;
  background:radial-gradient(circle, rgba(255,63,142,0.22), transparent 70%);
  filter:blur(40px); pointer-events:none;
}
.archive-hero-inner{
  position:relative; z-index:1;
  max-width:1240px; margin:0 auto;
  display:flex; flex-direction:column; gap:16px;
}
.archive-hero-title{
  font-family:var(--font-display);
  font-size:clamp(28px, 4vw, 48px);
  line-height:1.1; letter-spacing:-0.025em;
  color:var(--text-primary); max-width:24ch;
}
.archive-hero-desc{
  color:var(--text-muted); font-size:15px; max-width:52ch; line-height:1.7;
}

/* Arama formu (hero içi) */
.archive-search-form{
  display:flex; align-items:center; gap:0;
  background:var(--bg-surface); border:1px solid var(--border);
  border-radius:999px; padding:4px 4px 4px 20px;
  max-width:420px;
  transition:border-color .2s ease;
}
.archive-search-form:focus-within{ border-color:var(--fuchsia); }
.archive-search-input{
  flex:1; min-width:0; background:none; border:none; outline:none;
  color:var(--text-primary); font-size:14px; font-family:var(--font-body);
}
.archive-search-input::placeholder{ color:var(--text-dim); }
.archive-search-btn{
  flex-shrink:0; width:38px; height:38px; border-radius:999px;
  background:var(--grad-brand); border:none;
  display:flex; align-items:center; justify-content:center;
  color:#0b0810; transition:transform .15s ease;
}
.archive-search-btn:hover{ transform:scale(1.06); }

/* ============================================================
   INDEX POST CARD
============================================================ */
.index-post-card{
  display:grid; grid-template-columns:200px 1fr; gap:0;
  background:var(--bg-surface); border:1px solid var(--border);
  border-radius:var(--radius-md); overflow:hidden;
  transition:border-color .2s ease, transform .2s ease;
}
.index-post-card:hover{ border-color:var(--gold); transform:translateY(-2px); }

.index-card-thumb{
  display:block; min-height:150px;
  background-size:cover; background-position:center;
}
.index-thumb-placeholder{ background:radial-gradient(circle at 40% 40%, rgba(255,63,142,0.4), rgba(11,8,16,1) 70%); }

.index-card-body{
  padding:22px 24px;
  display:flex; flex-direction:column; gap:8px;
}
.index-card-title{
  font-size:18px; line-height:1.35; margin:0;
}
.index-card-title a{ color:inherit; transition:color .15s ease; }
.index-card-title a:hover{ color:var(--gold); }

.index-card-excerpt{
  font-size:14px; color:var(--text-muted); line-height:1.6;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}

.index-card-meta{
  display:flex; align-items:center; gap:8px; flex-wrap:wrap;
  font-size:12px; color:var(--text-dim); font-family:var(--font-mono);
  margin-top:auto; padding-top:4px;
}

/* Sayfalama */
.archive-pagination{ margin-top:48px; }
.archive-pagination .nav-links{
  display:flex; align-items:center; gap:8px; flex-wrap:wrap;
}
.archive-pagination .page-numbers{
  display:inline-flex; align-items:center; justify-content:center; gap:6px;
  min-width:40px; height:40px; padding:0 14px;
  border-radius:var(--radius-sm);
  background:var(--bg-surface); border:1px solid var(--border);
  font-family:var(--font-mono); font-size:13px; color:var(--text-muted);
  transition:border-color .15s ease, color .15s ease;
}
.archive-pagination .page-numbers:hover{ border-color:var(--fuchsia); color:var(--fuchsia); }
.archive-pagination .page-numbers.current{
  background:var(--grad-brand); border-color:transparent; color:#0b0810; font-weight:600;
}

/* Boş arşiv */
.archive-empty{
  padding:80px 0; text-align:center; color:var(--text-muted); font-size:16px;
}

/* ============================================================
   RESPONSIVE — tek kolon layout
============================================================ */
@media (max-width:1000px){
  .single-layout{ grid-template-columns:1fr; gap:40px; }
  .single-sidebar{ position:static; }
}

@media (max-width:720px){
  .post-hero-inner{ padding:48px 20px 40px; }
  .archive-hero{ padding:52px 20px 48px; }
  .post-hero-title{ font-size:clamp(22px, 6vw, 32px); }
  .index-post-card{ grid-template-columns:1fr; }
  .index-card-thumb{ min-height:180px; }
  .post-nav{ grid-template-columns:1fr; }
  .post-nav-next{ text-align:left; align-items:flex-start; }
}

/* ============================================================
   FOOTER — KARDEŞ SİTE BANNER (1001RENK.NET)
============================================================ */
.footer-sister-banner{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:20px 24px;
  background:#1a1a2e;
  border:1px solid #2b2b45;
  border-radius:var(--radius-md);
  text-decoration:none;
  transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  margin-top:4px;
}
.footer-sister-banner:hover{
  border-color:#ff3f8e;
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(255,63,142,0.15);
}

/* Logo satırı */
.fsb-logo{
  display:inline-flex;
  align-items:baseline;
  gap:0;
  line-height:1;
}
.fsb-logo-1001{
  font-family:var(--font-display);
  font-weight:700;
  font-size:22px;
  color:#ffffff;
  letter-spacing:-0.5px;
}
.fsb-logo-renk{
  font-family:var(--font-display);
  font-weight:700;
  font-size:22px;
  color:#ff3f8e;
  letter-spacing:-0.5px;
}
.fsb-logo-domain{
  font-family:var(--font-display);
  font-weight:700;
  font-size:22px;
  color:#ffffff;
  letter-spacing:-0.5px;
}

/* Alt yazı */
.fsb-sub{
  font-family:var(--font-body);
  font-size:13px;
  color:#9999bb;
  letter-spacing:0.01em;
}
