/* =========================================
   Sweet Bonanza Rehberi - Stylesheet
   Mobile-first, hızlı, erişilebilir
   ========================================= */

:root{
  --bg: #fff8f3;
  --bg-soft: #ffeede;
  --surface: #ffffff;
  --ink: #1f1530;
  --ink-mute: #5a4f70;
  --accent: #ff3d8b;
  --accent-2: #7a2bff;
  --accent-3: #ffb13d;
  --line: #ecdcd0;
  --good: #20a37a;
  --bad: #d94545;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px -12px rgba(85, 25, 90, 0.18);
  --shadow-soft: 0 4px 14px -6px rgba(85, 25, 90, 0.15);
  --max: 1140px;
}

*,
*::before,
*::after{ box-sizing: border-box; }

html{
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  background-image:
    radial-gradient(1200px 600px at -10% -20%, rgba(255, 61, 139, 0.10), transparent 60%),
    radial-gradient(900px 500px at 110% 10%, rgba(122, 43, 255, 0.10), transparent 60%);
  background-attachment: fixed;
}

img{ max-width: 100%; height: auto; display: block; }

a{ color: var(--accent-2); text-decoration: none; }
a:hover, a:focus-visible{ text-decoration: underline; }

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

.visually-hidden{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip: rect(0 0 0 0); white-space:nowrap; border:0;
}

/* ============ HEADER ============ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 243, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.brand:hover{ text-decoration: none; }

.brand-mark{
  width: 30px; height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #ffd1e2 0 22%, transparent 23%),
    conic-gradient(from 220deg, var(--accent), var(--accent-3), var(--accent-2), var(--accent));
  box-shadow: 0 4px 12px -4px rgba(255, 61, 139, 0.6);
}

.brand-text span{ color: var(--accent); }

.site-nav{
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.site-nav a{
  color: var(--ink-mute);
  font-weight: 600;
  font-size: 14.5px;
  padding: 6px 2px;
  position: relative;
}
.site-nav a:hover{ color: var(--accent); text-decoration: none; }
.site-nav a::after{
  content:""; position:absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover::after{ transform: scaleX(1); }

/* ============ BREADCRUMB ============ */
.breadcrumb-wrap{
  background: linear-gradient(180deg, rgba(255, 240, 232, 0.55), transparent);
  padding: 10px 0 6px;
}

.breadcrumb{
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-size: 13.5px;
  color: var(--ink-mute);
}

.breadcrumb li + li::before{
  content: "›";
  margin-right: 10px;
  color: #c8b6a8;
}

.breadcrumb a{ color: var(--ink-mute); }
.breadcrumb a:hover{ color: var(--accent); }
.breadcrumb [aria-current="page"]{ color: var(--ink); font-weight: 600; }

/* ============ HERO ============ */
.hero{
  padding: 36px 0 48px;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: center;
}

.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(122, 43, 255, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(122, 43, 255, 0.18);
}

.hero-copy h1{
  font-size: clamp(28px, 4.6vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 14px 0 14px;
  background: linear-gradient(120deg, #2a1748 0%, #7a2bff 45%, #ff3d8b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead{
  font-size: 17px;
  color: var(--ink-mute);
  margin: 0 0 24px;
  max-width: 580px;
}

.cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #ff7d3d 50%, var(--accent-3) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  padding: 16px 26px;
  border-radius: 999px;
  box-shadow: 0 14px 28px -10px rgba(255, 61, 139, 0.55),
              inset 0 -3px 0 rgba(0, 0, 0, 0.10);
  position: relative;
  isolation: isolate;
  transition: transform .18s ease, box-shadow .18s ease;
}

.cta-btn:hover{
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 22px 36px -12px rgba(255, 61, 139, 0.65),
              inset 0 -3px 0 rgba(0, 0, 0, 0.10);
}

.cta-btn:active{ transform: translateY(0); }

.cta-btn svg{ transition: transform .18s ease; }
.cta-btn:hover svg{ transform: translateX(4px); }

.hero-stats{
  display: flex;
  gap: 22px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stats > div{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.hero-stats strong{
  font-size: 19px;
  color: var(--accent-2);
}
.hero-stats span{
  font-size: 12.5px;
  color: var(--ink-mute);
}

.hero-art{
  margin: 0;
  position: relative;
}

.hero-art::before{
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(closest-side, rgba(255, 61, 139, 0.18), transparent 70%);
  z-index: -1;
}

.hero-art img{
  border-radius: 24px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  transform: rotate(-2deg);
  transition: transform .3s ease;
}

.hero-art img:hover{ transform: rotate(0); }

.hero-art figcaption{
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-mute);
  font-style: italic;
}

/* ============ CONTENT ============ */
.content{
  padding: 8px 20px 56px;
}

.content h2{
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.015em;
  margin: 44px 0 14px;
  position: relative;
  padding-left: 18px;
}

.content h2::before{
  content: "";
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 6px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
}

.content h3{
  font-size: 19px;
  margin: 24px 0 10px;
  color: var(--ink);
}

.content p{
  font-size: 16px;
  margin: 0 0 16px;
  color: #2c2440;
}

.content p strong{
  background: linear-gradient(120deg, rgba(255, 177, 61, 0.30) 0%, rgba(255, 177, 61, 0.30) 100%);
  padding: 0 4px;
  border-radius: 4px;
}

/* ============ TABLE ============ */
.table-wrap{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin: 18px 0 22px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.info-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 520px;
}

.info-table caption{
  text-align: left;
  font-weight: 700;
  padding: 16px 18px 4px;
  font-size: 16px;
  color: var(--ink);
  caption-side: top;
}

.info-table th,
.info-table td{
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.info-table thead th{
  background: linear-gradient(180deg, #fff5ec 0%, #ffeede 100%);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.info-table tbody tr:nth-child(even){
  background: #fffaf4;
}

.info-table tbody tr:hover{
  background: #fff1e3;
}

.info-table tbody th[scope="row"]{
  font-weight: 600;
  color: var(--ink-mute);
  width: 42%;
}

.sites-table tbody td:last-child{
  font-weight: 700;
  color: var(--accent-2);
}

/* ============ LISTS ============ */
.check-list{
  list-style: none;
  padding: 0;
  margin: 12px 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px 24px;
}

.check-list li{
  position: relative;
  padding: 8px 10px 8px 38px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

.check-list li::before{
  content: "";
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--accent), var(--accent-3));
  box-shadow: 0 2px 6px -1px rgba(255, 61, 139, 0.45);
}

.check-list li::after{
  content: "";
  position: absolute;
  left: 17px; top: 50%;
  width: 4px; height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translateY(-65%) rotate(45deg);
}

/* ============ PROS / CONS ============ */
.pros-cons{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 16px 0 26px;
}

.pros, .cons{
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.pros{ border-left: 4px solid var(--good); }
.cons{ border-left: 4px solid var(--bad); }

.pros h3, .cons h3{
  margin: 0 0 10px;
  font-size: 17px;
}

.pros h3{ color: var(--good); }
.cons h3{ color: var(--bad); }

.pros ul, .cons ul{
  list-style: none;
  padding: 0; margin: 0;
}

.pros li, .cons li{
  padding: 6px 0 6px 26px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px dashed var(--line);
}

.pros li:last-child, .cons li:last-child{ border-bottom: none; }

.pros li::before, .cons li::before{
  position: absolute;
  left: 0; top: 6px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.4;
}
.pros li::before{ content: "+"; color: var(--good); }
.cons li::before{ content: "−"; color: var(--bad); }

/* ============ EDITOR NOTE ============ */
.editor-note{
  background: linear-gradient(135deg, #fff1e1 0%, #fff7ee 100%);
  border: 1px solid #ffd9b8;
  border-left: 5px solid var(--accent-3);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 18px 0 30px;
  position: relative;
}

.editor-note::before{
  content: "✎";
  position: absolute;
  top: -16px; left: 18px;
  background: var(--accent-3);
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 6px 14px -4px rgba(255, 177, 61, 0.6);
}

.editor-note h3{
  margin: 0 0 8px;
  color: #8a4b0a;
}

.editor-note p{
  margin: 0;
  color: #4a3a1a;
}

/* ============ FAQ ============ */
.faq{
  display: grid;
  gap: 10px;
  margin: 16px 0 26px;
}

.faq details{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  transition: box-shadow .2s ease;
}

.faq details[open]{
  box-shadow: var(--shadow-soft);
  border-color: rgba(122, 43, 255, 0.25);
}

.faq summary{
  cursor: pointer;
  font-weight: 700;
  padding: 16px 50px 16px 18px;
  list-style: none;
  position: relative;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.5;
}

.faq summary::-webkit-details-marker{ display: none; }

.faq summary::after{
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(122, 43, 255, 0.10);
  color: var(--accent-2);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease;
}

.faq details[open] summary::after{
  content: "−";
  transform: translateY(-50%) rotate(180deg);
  background: var(--accent-2);
  color: #fff;
}

.faq details p{
  padding: 0 18px 18px;
  margin: 0;
  color: var(--ink-mute);
  font-size: 15px;
}

/* ============ RESPONSIBLE BANNER ============ */
.responsible-banner{
  margin: 30px 0 10px;
  padding: 16px 18px;
  background: #fff5f5;
  border: 1px solid #f2c2c2;
  border-radius: var(--radius-sm);
  color: #6b1a1a;
  font-size: 14.5px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.responsible-banner strong{
  color: var(--bad);
}
.responsible-banner a{ color: var(--bad); font-weight: 700; }

/* ============ FOOTER ============ */
.site-footer{
  background: #1f1530;
  color: #d9d0e8;
  padding: 22px 0;
  margin-top: 30px;
}

.footer-grid{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.footer-mini{ color: #9a8db0; margin: 0; }
.footer-grid p{ margin: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 880px){
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }
  .hero-art img{
    max-width: 380px;
    transform: rotate(-2deg);
  }
}

@media (max-width: 720px){
  .site-nav{ display: none; }
  .header-inner{ height: 58px; }
  .pros-cons{
    grid-template-columns: 1fr;
  }
  .hero{ padding: 24px 0 32px; }
  .hero-copy h1{ margin-top: 10px; }
  .hero-stats{ gap: 10px; }
  .hero-stats > div{
    flex: 1 1 calc(50% - 10px);
    min-width: 140px;
  }
  .cta-btn{ width: 100%; justify-content: center; font-size: 16px; padding: 15px 22px; }
  .info-table caption{ font-size: 15px; padding: 14px 14px 4px; }
  .info-table th,
  .info-table td{ padding: 11px 14px; font-size: 14px; }
  .content h2{ margin-top: 32px; }
  .footer-grid{ flex-direction: column; }
  .breadcrumb{ font-size: 12.5px; }
}

@media (max-width: 480px){
  body{ font-size: 15.5px; }
  .container{ padding: 0 16px; }
  .hero-art img{ max-width: 300px; }
  .check-list{ grid-template-columns: 1fr; }
  .hero-stats > div{ flex: 1 1 100%; }
}

/* ============ MOTION PREFS ============ */
@media (prefers-reduced-motion: reduce){
  *{
    animation: none !important;
    transition: none !important;
  }
  html{ scroll-behavior: auto; }
}

/* ============ FOCUS ============ */
a:focus-visible,
button:focus-visible,
details:focus-within > summary{
  outline: 3px solid rgba(122, 43, 255, 0.4);
  outline-offset: 2px;
  border-radius: 6px;
}
