@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800;900&family=Bubblegum+Sans&display=swap');

/* =============================================
   ÇOCUK OYUN ALANI - MİNİK DÜNYA
   Gündüz • Renkli • Oyuncaklı • Çocuksu
   ============================================= */

:root {
  --red:    #FF4757;
  --orange: #FF6B35;
  --yellow: #FFD93D;
  --green:  #6BCB77;
  --teal:   #4ECDC4;
  --blue:   #4D96FF;
  --purple: #C77DFF;
  --pink:   #FF69B4;

  --bg:        #FFFBF0;
  --bg-alt:    #F0F9FF;
  --white:     #FFFFFF;
  --dark:      #2D3436;
  --text:      #4A4A4A;
  --text-muted: #888;

  --font-heading: 'Fredoka One', cursive;
  --font-fun:     'Bubblegum Sans', cursive;
  --font-body:    'Nunito', sans-serif;

  --shadow-sm: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --spring: 0.5s cubic-bezier(0.34,1.56,0.64,1);
  --smooth: 0.35s cubic-bezier(0.25,0.8,0.25,1);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--yellow); color: var(--dark); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f5f5f5; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--red), var(--orange), var(--yellow), var(--green));
  border-radius: 4px;
}

/* ========== RAINBOW STRIP ========== */

.rainbow-strip {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 300;
  background: linear-gradient(90deg,
    var(--red), var(--orange), var(--yellow),
    var(--green), var(--teal), var(--blue),
    var(--purple), var(--pink), var(--red));
  background-size: 300% 100%;
  animation: rainbowFlow 6s linear infinite;
  padding: 5px 0;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(255,107,53,0.3);
}

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

.rainbow-track {
  display: flex;
  gap: 36px;
  animation: stripScroll 22s linear infinite;
  white-space: nowrap;
}

.toy-tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

@keyframes stripScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== HEADER ========== */

.co-header {
  position: fixed;
  top: 24px; left: 0;
  width: 100%;
  z-index: 200;
  padding: 12px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,251,240,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 3px solid transparent;
  background-clip: padding-box;
  box-shadow: var(--shadow-sm);
}

.co-header.scrolled {
  box-shadow: 0 4px 25px rgba(255,107,53,0.15);
  border-bottom-color: rgba(255,107,53,0.2);
}

.co-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--orange);
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,107,53,0.25);
  background: rgba(255,107,53,0.06);
  transition: var(--spring);
}

.co-back:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: translateX(-3px);
  box-shadow: 0 4px 15px rgba(255,107,53,0.35);
}

.co-header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-star-spin {
  font-size: 1.4rem;
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(255,211,0,0.4));
}

.co-header-logo a {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--orange);
}

.co-header-logo a span {
  color: var(--purple);
}

/* ========== HERO ========== */

.co-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 90px;
  background: linear-gradient(180deg,
    #E8F4FD 0%,
    #D4EEFF 25%,
    #EAF7F0 55%,
    var(--bg) 100%);
}

/* Clouds */
.cloud {
  position: absolute;
  background: #fff;
  border-radius: 50px;
  opacity: 0.85;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.06));
  pointer-events: none;
}

.cloud::before, .cloud::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 50%;
  top: -35%;
}

.cloud-1 {
  width: 130px; height: 45px;
  top: 12%; left: 6%;
  animation: cloudDrift 14s ease-in-out infinite;
}
.cloud-1::before { width: 65px; height: 65px; left: 15px; }
.cloud-1::after  { width: 45px; height: 45px; left: 60px; }

.cloud-2 {
  width: 100px; height: 35px;
  top: 20%; right: 8%;
  animation: cloudDrift 18s ease-in-out infinite 2s;
}
.cloud-2::before { width: 50px; height: 50px; left: 10px; }
.cloud-2::after  { width: 35px; height: 35px; left: 50px; }

.cloud-3 {
  width: 160px; height: 55px;
  top: 8%; right: 25%;
  animation: cloudDrift 22s ease-in-out infinite 4s;
  opacity: 0.65;
}
.cloud-3::before { width: 80px; height: 80px; left: 20px; }
.cloud-3::after  { width: 55px; height: 55px; left: 80px; }

.cloud-4 {
  width: 90px; height: 30px;
  top: 30%; left: 18%;
  animation: cloudDrift 16s ease-in-out infinite 1s;
  opacity: 0.6;
}
.cloud-4::before { width: 45px; height: 45px; left: 8px; }
.cloud-4::after  { width: 30px; height: 30px; left: 45px; }

@keyframes cloudDrift {
  0%, 100% { transform: translateX(0) translateY(0); }
  33%       { transform: translateX(15px) translateY(-5px); }
  66%       { transform: translateX(-10px) translateY(5px); }
}

/* Rainbow slide track */
.rainbow-track-svg {
  position: absolute;
  bottom: 18%;
  left: 0;
  width: 100%;
  height: 160px;
  z-index: 2;
  pointer-events: none;
}

.rb-path {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
}

.rb-1 { stroke: rgba(255,107,53,0.3); }
.rb-2 { stroke: rgba(255,107,53,0.12); stroke-dasharray: 10 8; }

.track-car {
  font-size: 28px;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15));
}

/* Floating background toys */
.floating-toys {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.ft-item {
  position: absolute;
  animation: toyFloat ease-in-out infinite;
  user-select: none;
}

@keyframes toyFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg) scale(1); }
  50%       { transform: translateY(-20px) rotate(8deg) scale(1.05); }
}

/* ====== PINWHEEL (FIRILDAK) ====== */

.pinwheel-wrapper {
  position: relative;
  z-index: 5;
  width: 520px;
  height: 520px;
  margin: 0 auto;
}

.pw-blades-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  animation: pwSpin 22s linear infinite;
  filter: drop-shadow(0 10px 40px rgba(255,107,53,0.2));
}

@keyframes pwSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Pods wheel - co-rotates with blades */
.pw-pods-wheel {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  animation: pwSpin 22s linear infinite;
}

/* Individual pod */
.pw-pod {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform-origin: 0 0;
  transform: rotate(var(--p-angle)) translateY(-187px);
}

.pw-pod-arm {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), var(--p-color));
  margin: 0 auto;
  box-shadow: 0 0 4px var(--p-color);
}

.pw-pod-body {
  /* Counter-spin: animation-delay cancels each pod's own --p-angle offset */
  animation: pwCounterSpin 22s linear infinite;
  animation-delay: var(--counter-delay, 0s);
  background: #fff;
  border: 3px solid var(--p-color);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 78px;
  transform: translateX(-50%);
  margin-left: 1px;
  box-shadow: var(--shadow-sm), 0 0 12px color-mix(in srgb, var(--p-color) 30%, transparent);
  transition: box-shadow 0.3s;
}

@keyframes pwCounterSpin {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(-360deg); }
}

.pw-pod-icon {
  font-size: 1.3rem;
}

.pw-pod-text {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  color: var(--p-color);
  white-space: nowrap;
}

/* Center title - DOES NOT rotate */
.pw-center-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  pointer-events: none;
}

.pw-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.25;
  color: var(--dark);
  letter-spacing: 1px;
  text-shadow:
    2px 2px 0 rgba(255,107,53,0.15),
    0 4px 20px rgba(255,107,53,0.1);
  animation: titleWobble 4s ease-in-out infinite;
}

@keyframes titleWobble {
  0%, 100% { transform: scale(1) rotate(-0.5deg); }
  50%       { transform: scale(1.03) rotate(0.5deg); }
}

.pw-subtitle {
  font-family: var(--font-fun);
  font-size: 1rem;
  color: var(--orange);
  margin-top: 6px;
  animation: subFloat 3s ease-in-out infinite;
}

@keyframes subFloat {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50%       { transform: translateY(-4px); opacity: 1; }
}

/* Pinwheel stick */
.pw-stick {
  width: 6px;
  height: 60px;
  background: linear-gradient(to bottom, var(--orange), #c0392b);
  margin: -5px auto 0;
  border-radius: 3px;
  position: relative;
  z-index: 4;
  box-shadow: 2px 0 8px rgba(0,0,0,0.12);
}

.pw-base-ground {
  width: 80px;
  height: 14px;
  background: linear-gradient(135deg, var(--green), #27ae60);
  border-radius: 50px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(39,174,96,0.3);
  position: relative;
  z-index: 4;
}

/* Hero Buttons */
.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
  animation: actPop 0.5s 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes actPop {
  0%   { opacity: 0; transform: scale(0.6) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Buttons */
.btn-fun {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--spring);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #e55a2b);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,107,53,0.35), 0 0 0 0 rgba(255,107,53,0.3);
  animation: btnPulse 2.5s infinite ease-in-out;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(255,107,53,0.35), 0 0 0 0 rgba(255,107,53,0.3); }
  50%       { box-shadow: 0 8px 28px rgba(255,107,53,0.45), 0 0 0 8px rgba(255,107,53,0); }
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255,107,53,0.45);
}

.btn-shine {
  position: absolute;
  top: -50%; left: -100%;
  width: 200%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shineSlide 3s infinite;
  pointer-events: none;
}

@keyframes shineSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.btn-secondary {
  background: rgba(255,255,255,0.85);
  color: var(--dark);
  border: 2.5px solid var(--green);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(107,203,119,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2.5px solid var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,107,53,0.3);
}

/* Scroll bounce */
.scroll-bounce {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(74,74,74,0.5);
  animation: fadein 0.8s 1.5s ease both;
}

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

.bounce-toy {
  font-size: 1.4rem;
  animation: bounceToy 1.5s infinite ease-in-out;
}

@keyframes bounceToy {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

.scroll-bounce span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 2px;
}

/* ========== BLOB DIVIDER ========== */

.blob-divider {
  position: relative;
  z-index: 10;
  margin-top: -2px;
  line-height: 0;
}

.blob-divider svg {
  width: 100%;
  height: 70px;
  display: block;
}

.blob-divider.flip {
  transform: scaleY(-1);
  margin-top: 0;
  margin-bottom: -2px;
}

/* ========== SHARED ========== */

section {
  padding: 90px 0;
  position: relative;
  z-index: 10;
}

.co-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  line-height: 1.2;
  margin-top: 8px;
}

.title-highlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}

.title-highlight::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  border-radius: 3px;
}

.section-title.center { text-align: center; }

.section-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 560px;
  margin-top: 14px;
}

.section-header-fun {
  margin-bottom: 50px;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--b-color, var(--orange));
  padding: 7px 18px;
  border-radius: 50px;
  border: 2px solid color-mix(in srgb, var(--b-color, var(--orange)) 25%, transparent);
  background: color-mix(in srgb, var(--b-color, var(--orange)) 8%, transparent);
  margin-bottom: 12px;
}

.eyebrow-badge.center {
  display: flex;
  justify-content: center;
  margin: 0 auto 12px;
  width: fit-content;
}

/* ========== COUNTERS ========== */

.co-counters {
  background: #fff;
  padding: 70px 0;
}

.counters-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.counter-bubble {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-xl);
  background: var(--bubble-light, #fff);
  border: 3px solid color-mix(in srgb, var(--bubble-color) 20%, transparent);
  box-shadow: var(--shadow-sm);
  transition: var(--spring);
  position: relative;
  overflow: hidden;
}

.counter-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--bubble-color);
  border-radius: 50px 50px 0 0;
}

.counter-bubble:hover {
  transform: translateY(-8px) rotate(-1deg) scale(1.02);
  box-shadow: var(--shadow-md), 0 0 0 4px color-mix(in srgb, var(--bubble-color) 15%, transparent);
}

.cb-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
  animation: iconBob 3s ease-in-out infinite;
  display: block;
}

@keyframes iconBob {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-6px) rotate(5deg); }
}

.cb-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--bubble-color);
  line-height: 1;
  display: block;
}

.cb-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

/* ========== INTRO ========== */

.co-intro {
  background: var(--bg);
}

.co-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Scroll animations */
.anim-slide-left {
  transform: translateX(-80px) rotate(-2deg);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.34,1.56,0.64,1), opacity 0.6s ease;
}

.anim-slide-right {
  transform: translateX(80px) rotate(2deg);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.34,1.56,0.64,1), opacity 0.6s ease;
}

.anim-coaster {
  transform: translateY(70px) rotate(-2deg) scale(0.9);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.34,1.56,0.64,1), opacity 0.5s ease;
}

.anim-coaster:nth-child(even) {
  transform: translateY(70px) rotate(2deg) scale(0.9);
}

.anim-drop {
  transform: translateY(-70px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.34,1.56,0.64,1), opacity 0.5s ease;
}

.anim-swing {
  transform: translateY(50px) rotate(6deg);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.34,1.56,0.64,1), opacity 0.5s ease;
  transition-delay: var(--sw-delay, 0s);
}

.anim-zoom {
  transform: scale(0.75) rotate(-2deg);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.34,1.56,0.64,1), opacity 0.5s ease;
}

.anim-visible {
  transform: none !important;
  opacity: 1 !important;
}

/* Fun tags */
.fun-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0 30px;
}

.fun-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  border: 2px solid color-mix(in srgb, var(--t-color) 30%, transparent);
  background: color-mix(in srgb, var(--t-color) 8%, transparent);
  color: var(--t-color);
  transition: var(--spring);
  cursor: default;
}

.fun-tag:hover {
  transform: translateY(-3px) rotate(2deg) scale(1.05);
  background: var(--t-color);
  color: #fff;
}

/* Intro image */
.co-intro-image {
  position: relative;
}

.sticker-frame {
  background: #fff;
  padding: 10px 10px 45px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(255,107,53,0.1);
  transform: rotate(2deg);
  transition: var(--spring);
  position: relative;
}

.sticker-frame:hover {
  transform: rotate(-1deg) scale(1.02);
}

.sticker-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}

.sticker-caption {
  text-align: center;
  margin-top: 14px;
  font-family: var(--font-fun);
  font-size: 1rem;
  color: var(--dark);
  letter-spacing: 0.5px;
}

/* Floating stickers */
.float-sticker {
  position: absolute;
  font-size: 2rem;
  animation: stickerFloat ease-in-out infinite;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15));
  pointer-events: none;
}

.s1 { top: -15px; right: 25px; animation-duration: 3.5s; animation-delay: 0s; }
.s2 { top: 10px; right: -20px; font-size: 1.5rem; animation-duration: 4s; animation-delay: 0.5s; }
.s3 { top: -20px; left: 15px; animation-duration: 5s; animation-delay: 1s; }
.s4 { bottom: 50px; right: -15px; font-size: 1.6rem; animation-duration: 3s; animation-delay: 0.3s; }

@keyframes stickerFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%       { transform: translateY(-15px) rotate(8deg); }
}

.age-badge {
  position: absolute;
  bottom: 8px;
  right: -18px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(255,107,53,0.4);
  border: 4px solid #fff;
  animation: badgeBounce 3s infinite ease-in-out;
  z-index: 3;
}

@keyframes badgeBounce {
  0%, 100% { transform: rotate(-10deg) scale(1); }
  50%       { transform: rotate(5deg) scale(1.08); }
}

.ab-top {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1;
}

.ab-bot {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 2px;
  opacity: 0.85;
}

/* ========== OYUN ABLASI ========== */

.co-ablasi {
  background: linear-gradient(135deg, #FFF5EF 0%, #FFF0F9 50%, #F0F5FF 100%);
  position: relative;
  overflow: hidden;
}

.co-ablasi::before {
  content: '👩‍👧';
  position: absolute;
  font-size: 12rem;
  right: -2%;
  bottom: -2%;
  opacity: 0.04;
  pointer-events: none;
}

.ablasi-header {
  text-align: center;
  margin-bottom: 55px;
}

.ablasi-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.75;
}

.ablasi-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

/* Ablasi card */
.ablasi-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(255,105,180,0.15);
  transition: var(--spring);
}

.ablasi-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: var(--shadow-lg);
}

.ablasi-card-top {
  padding: 28px;
  background: linear-gradient(135deg, #FFF0F9, #FFE8F5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ablasi-avatar {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: visible;
}

.ablasi-avatar img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--pink);
  box-shadow: 0 6px 20px rgba(255,105,180,0.3);
}

.ablasi-heart {
  position: absolute;
  bottom: 0; right: -5px;
  font-size: 1.4rem;
  animation: heartBeat 1.8s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  15%       { transform: scale(1.3); }
  30%       { transform: scale(1); }
  45%       { transform: scale(1.15); }
}

.ablasi-badge-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.ablasi-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 50px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.ablasi-card-body {
  padding: 22px 28px;
}

.ablasi-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.ablasi-card-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.ablasi-quote {
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(255,105,180,0.06), rgba(77,150,255,0.04));
  border-top: 2px dashed rgba(255,105,180,0.2);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  position: relative;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 0.5;
  color: var(--pink);
  opacity: 0.3;
  vertical-align: middle;
  margin-right: 4px;
}

.quote-author {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  color: var(--pink);
}

/* Features */
.ablasi-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ablasi-feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: #fff;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--f-color);
  box-shadow: var(--shadow-sm);
  transition: var(--spring);
}

.ablasi-feat:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.af-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--f-color) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.af-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 5px;
}

.af-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.ablasi-cta-box {
  margin-top: 10px;
  padding: 22px;
  background: linear-gradient(135deg, #FFF5EF, #FFF0E0);
  border-radius: var(--radius-md);
  border: 2px dashed rgba(255,107,53,0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ablasi-cta-box p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
  flex: 1;
}

/* ========== YAŞ GRUPLARI ========== */

.co-ages {
  background: var(--bg);
}

.rainbow-deco {
  display: block;
  margin: 14px auto 0;
  width: 280px;
  height: 40px;
}

.ages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.age-card {
  background: var(--ac-light, #fff);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 3px solid color-mix(in srgb, var(--ac-color) 20%, transparent);
  box-shadow: var(--shadow-sm);
  transition: var(--spring);
  position: relative;
}

.age-card:hover {
  transform: translateY(-10px) rotate(-1deg) scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 0 4px color-mix(in srgb, var(--ac-color) 15%, transparent);
}

.age-card-header {
  padding: 28px 24px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dashed color-mix(in srgb, var(--ac-color) 20%, transparent);
}

.age-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--ac-color);
  line-height: 1;
}

.age-icon {
  font-size: 2.5rem;
  animation: iconBob 3s ease-in-out infinite;
}

.age-card-body {
  padding: 20px 24px 28px;
}

.age-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 14px;
}

.age-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.age-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
}

.age-list li span {
  font-size: 1.1rem;
}

.age-card-ribbon {
  position: absolute;
  top: 18px; right: -28px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 1px;
  padding: 5px 36px;
  transform: rotate(35deg);
}

/* ========== AKTİVİTELER ========== */

.co-activities {
  background: #fff;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.act-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2.5px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--spring);
  cursor: pointer;
  position: relative;
}

.act-card:hover {
  transform: translateY(-10px) scale(1.02) rotate(0.5deg);
  border-color: attr(data-toy-color);
  box-shadow: var(--shadow-lg);
}

.act-card[data-toy-color="#FF4757"]:hover { border-color: #FF4757; }
.act-card[data-toy-color="#FF8C00"]:hover { border-color: #FF8C00; }
.act-card[data-toy-color="#FFD93D"]:hover { border-color: #FFD93D; }
.act-card[data-toy-color="#6BCB77"]:hover { border-color: #6BCB77; }
.act-card[data-toy-color="#C77DFF"]:hover { border-color: #C77DFF; }
.act-card[data-toy-color="#4D96FF"]:hover { border-color: #4D96FF; }

.act-card-emoji {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 2rem;
  z-index: 3;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
  animation: emojiWiggle 3s ease-in-out infinite;
}

@keyframes emojiWiggle {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50%       { transform: rotate(8deg) scale(1.1); }
}

.act-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.act-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--spring);
}

.act-card:hover .act-card-img img {
  transform: scale(1.1) rotate(1deg);
}

.act-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 5px 14px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: #fff;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.act-card-body {
  padding: 18px 20px;
}

.act-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.act-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== SAFETY ========== */

.co-safety {
  background: linear-gradient(135deg, #F0FFF4, #E8F4FD);
  padding: 80px 0;
}

.safety-fun-card {
  display: flex;
  gap: 28px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(107,203,119,0.2);
  transition: var(--spring);
}

.safety-fun-card:hover {
  border-color: rgba(107,203,119,0.5);
  box-shadow: var(--shadow-lg);
}

.safety-icon-big {
  font-size: 4rem;
  flex-shrink: 0;
  animation: iconBob 2.5s ease-in-out infinite;
}

.safety-content h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 10px;
}

.safety-content p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.98rem;
  margin-bottom: 16px;
}

.safety-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sc {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(107,203,119,0.1);
  border: 1.5px solid rgba(107,203,119,0.25);
  color: #27ae60;
}

/* ========== GALLERY ========== */

.co-gallery {
  background: var(--bg);
}

.fun-gallery {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 16px 0;
}

.fg-track {
  display: flex;
  gap: 18px;
  transition: transform 0.6s cubic-bezier(0.34,1.56,0.64,1);
  padding: 10px;
}

.fg-item {
  flex-shrink: 0;
  width: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 3px solid rgba(0,0,0,0.05);
  transition: var(--spring);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.fg-item:hover {
  transform: translateY(-8px) scale(1.03) rotate(1deg);
  border-color: var(--orange);
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(255,107,53,0.1);
}

.fg-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform var(--spring);
}

.fg-item:hover img {
  transform: scale(1.08);
}

.fg-label {
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--dark);
  background: #fff;
}

.fg-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(255,107,53,0.2);
  color: var(--orange);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--spring);
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}

.fg-arrow:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(255,107,53,0.35);
}

.fg-left  { left: 10px; }
.fg-right { right: 10px; }

/* ========== REVIEWS ========== */

.co-reviews {
  background: #fff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.rev-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rev-chain {
  width: 3px; height: 28px;
  background: linear-gradient(to bottom, var(--orange), rgba(255,107,53,0.2));
  border-radius: 3px;
}

.rev-body {
  background: var(--bg);
  border: 2.5px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--spring);
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.rev-card:hover .rev-body {
  transform: translateY(-5px) rotate(0.5deg);
  border-color: rgba(255,107,53,0.2);
  box-shadow: var(--shadow-md);
}

.rev-card:hover .rev-chain { height: 20px; }

.rev-stars { font-size: 1rem; letter-spacing: 2px; }

.rev-text {
  font-size: 0.96rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  flex-grow: 1;
}

.rev-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.rev-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--dark);
}

.rev-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========== CTA ========== */

.co-cta {
  padding: 80px 0;
  background: var(--bg);
}

.cta-funbox {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px;
  background: linear-gradient(135deg, var(--orange), #e55a2b, #c0392b);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 25px 60px rgba(255,107,53,0.35), 0 0 0 6px rgba(255,107,53,0.1);
  overflow: hidden;
  position: relative;
  flex-wrap: wrap;
}

.cta-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.conf {
  position: absolute;
  top: -20px;
  animation: confDrop linear forwards;
  opacity: 0.85;
  border-radius: 2px;
}

@keyframes confDrop {
  0%   { transform: translateY(-20px) rotate(0) scale(1); opacity: 0.85; }
  100% { transform: translateY(400px) rotate(720deg) scale(0.5); opacity: 0; }
}

.cta-toys-deco {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 8rem;
  letter-spacing: 12px;
  opacity: 0.06;
  pointer-events: none;
  white-space: nowrap;
}

.cta-content { position: relative; z-index: 2; }

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.cta-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-top: 10px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-actions .btn-primary {
  background: #fff;
  color: var(--orange);
  animation: none;
}

.cta-actions .btn-primary:hover {
  background: var(--yellow);
  color: var(--dark);
}

.cta-actions .btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
}

.cta-actions .btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
}

/* ========== FOOTER ========== */

.co-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 8% 40px;
  position: relative;
  z-index: 10;
}

.co-footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.co-footer-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.co-flogo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  color: var(--orange);
}

.co-flogo span {
  color: var(--yellow);
}

.co-footer-info p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer-mini-toys {
  font-size: 1.2rem;
  letter-spacing: 4px;
  opacity: 0.5;
}

.co-ftitle {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 16px;
  position: relative;
}

.co-ftitle::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 22px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.co-flinks {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.co-flinks a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color var(--smooth);
}

.co-flinks a:hover {
  color: var(--orange);
}

.co-fcontact {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.co-fcontact li {
  display: flex;
  gap: 11px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.co-fcontact i {
  color: var(--yellow);
  font-size: 0.88rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.co-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.co-footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
}

.co-social {
  display: flex;
  gap: 10px;
}

.co-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  transition: var(--spring);
}

.co-social a:nth-child(1):hover {
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  color: #fff; border-color: transparent;
  transform: translateY(-4px) rotate(-5deg);
}

.co-social a:nth-child(2):hover {
  background: #1877f2;
  color: #fff; border-color: transparent;
  transform: translateY(-4px) rotate(5deg);
}

.co-social a:nth-child(3):hover {
  background: #ff0000;
  color: #fff; border-color: transparent;
  transform: translateY(-4px) rotate(-3deg);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1100px) {
  .ablasi-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .activities-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid .rev-card:last-child {
    grid-column: span 2;
  }
  .co-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .co-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .ablasi-grid {
    grid-template-columns: 1fr;
  }
  .ages-grid {
    grid-template-columns: 1fr;
  }
  .cta-funbox {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }
  .cta-actions {
    justify-content: center;
  }
  .safety-fun-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .activities-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .rev-card:last-child { grid-column: auto; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .ages-grid { grid-template-columns: 1fr; gap: 16px; }

  .pinwheel-wrapper {
    width: 380px;
    height: 380px;
  }

  .pw-pod {
    transform: rotate(var(--p-angle)) translateY(-137px);
  }

  .pw-pod-body {
    padding: 6px 10px;
    min-width: 62px;
  }

  .pw-pod-text {
    font-size: 0.52rem;
    letter-spacing: 1px;
  }

  .pw-pod-icon { font-size: 1rem; }

  .co-footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .co-header { padding: 12px 4%; }
  .co-hero { min-height: 100svh; }

  .pinwheel-wrapper {
    width: 300px;
    height: 300px;
  }

  .pw-pod {
    transform: rotate(var(--p-angle)) translateY(-108px);
  }

  .pw-pod-body {
    padding: 4px 8px;
    min-width: 54px;
    border-radius: 8px;
  }

  .pw-pod-text {
    font-size: 0.48rem;
    letter-spacing: 0.5px;
  }

  .pw-pod-icon { font-size: 0.85rem; }
  .pw-pod-arm { height: 18px; }

  .pw-title {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .fg-item { width: 240px; }

  .rainbow-strip { display: none; }
  .co-header { top: 0; }

  .cta-funbox { padding: 32px 18px; }
  .cta-content h2 { font-size: 1.5rem; }
  .counters-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  .ablasi-cta-box { flex-direction: column; align-items: stretch; }
  .ablasi-cta-box .btn-fun { justify-content: center; }
}
