/* Sweet Bonanza İncelemesi - candy temalı açık tema */

:root {
  --bg: #fff5fa;
  --bg-alt: #ffe9f4;
  --card: #ffffff;
  --ink: #3d2352;
  --ink-soft: #6b4d85;
  --pink: #ff5fa2;
  --pink-deep: #e6337f;
  --purple: #8a3ffc;
  --purple-deep: #5b2a9d;
  --mint: #35c99a;
  --sun: #ffb02e;
  --sky: #4cc3ff;
  --line: #f3d3e5;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(230, 51, 127, 0.10);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background:
    radial-gradient(circle at 12% 8%, rgba(138, 63, 252, 0.07), transparent 42%),
    radial-gradient(circle at 88% 20%, rgba(255, 95, 162, 0.09), transparent 45%),
    var(--bg);
  color: var(--ink);
  line-height: 1.75;
  font-size: 1.06rem;
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */

.site-header {
  background: linear-gradient(90deg, var(--purple-deep), var(--pink-deep));
  color: #fff;
  padding: 0.85rem 0;
  border-bottom: 4px solid var(--sun);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.header-note {
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.16);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

/* Hero */

.hero-figure {
  margin: 1.75rem 0 0.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}

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

article figure {
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card);
}

figcaption {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 0.7rem 1rem;
  background: var(--card);
  border-top: 1px dashed var(--line);
  line-height: 1.5;
}

/* Tipografi */

h1 {
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
  line-height: 1.2;
  margin: 1.5rem 0 0.5rem;
  color: var(--purple-deep);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  margin: 2.5rem 0 0.9rem;
  color: var(--pink-deep);
  position: relative;
  padding-left: 1rem;
}

h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  bottom: 0.28em;
  width: 5px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--pink), var(--purple));
}

h3 {
  font-size: 1.08rem;
  margin-bottom: 0.6rem;
}

p { margin-bottom: 1.1rem; }

.meta-line {
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
  margin-bottom: 1.4rem;
}

.lead {
  font-size: 1.14rem;
  color: var(--ink);
  background: var(--bg-alt);
  border-left: 5px solid var(--pink);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.3rem;
}

strong { color: var(--purple-deep); }

/* Teknik tablo */

.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 1.25rem 0 1.75rem;
  font-size: 0.98rem;
}

.spec-table th,
.spec-table td {
  padding: 0.8rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: none; }

.spec-table th {
  width: 38%;
  color: var(--purple-deep);
  font-weight: 700;
  background: #faf1ff;
}

.spec-table tr:nth-child(even) td { background: #fff9fc; }

/* Artı / eksi kartları */

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.25rem 0 1.75rem;
}

.pc-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow);
  border-top: 6px solid;
}

.pc-card.pros { border-top-color: var(--mint); }
.pc-card.cons { border-top-color: var(--pink-deep); }

.pc-card.pros h3 { color: #1e8e6b; }
.pc-card.cons h3 { color: var(--pink-deep); }

.pc-card ul { list-style: none; }

.pc-card li {
  padding: 0.45rem 0 0.45rem 1.7rem;
  position: relative;
  font-size: 0.97rem;
  line-height: 1.55;
  border-bottom: 1px dashed var(--line);
}

.pc-card li:last-child { border-bottom: none; }

.pc-card.pros li::before {
  content: "+";
  color: var(--mint);
}

.pc-card.cons li::before {
  content: "−";
  color: var(--pink-deep);
}

.pc-card li::before {
  position: absolute;
  left: 0.2rem;
  top: 0.4rem;
  font-weight: 800;
  font-size: 1.05rem;
}

/* Puan kutusu */

.score-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--pink-deep) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.6rem 1.75rem;
  margin: 1.25rem 0 1.75rem;
  box-shadow: 0 14px 36px rgba(91, 42, 157, 0.28);
}

.score-badge {
  flex: 0 0 auto;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #ffd66e, var(--sun));
  color: var(--purple-deep);
  display: flex;
  align-items: baseline;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.28), 0 8px 20px rgba(0, 0, 0, 0.22);
}

.score-num {
  font-size: 2.9rem;
  font-weight: 900;
  line-height: 1;
}

.score-den {
  font-size: 1.15rem;
  font-weight: 700;
  opacity: 0.85;
}

.score-text p { margin: 0; font-size: 1rem; }
.score-text strong { color: #ffd66e; }

/* Footer */

.site-footer {
  margin-top: 3.5rem;
  background: var(--purple-deep);
  color: #e9d9ff;
  padding: 2rem 0 1.5rem;
  font-size: 0.88rem;
  line-height: 1.65;
  border-top: 5px solid var(--pink);
}

.site-footer p { margin-bottom: 0.8rem; }
.site-footer strong {
  color: #fff;
  background: var(--pink-deep);
  padding: 0.1rem 0.5rem;
  border-radius: 6px;
  margin-right: 0.3rem;
}

.copyright {
  opacity: 0.7;
  font-size: 0.8rem;
  margin-top: 1.2rem;
}

/* Responsive */

@media (max-width: 680px) {
  body { font-size: 1rem; }

  .pros-cons { grid-template-columns: 1fr; }

  .score-box {
    flex-direction: column;
    text-align: center;
  }

  .spec-table th { width: 42%; }

  .header-note { display: none; }
}
