/* ================================================== */
/* TECHCHILDREN - PROFESYONEL STYLE.CSS (TAM GÜNCELLEME) */
/* Tarih: 2025 - Tüm Sayfalar İçin Optimize */
/* ================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* RENK SİSTEMİ */
  --primary: #007bff;
  --primary-dark: #0056b3;
  --primary-light: #4dabf7;
  --accent: #00d4ff;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  
  /* AÇIK MOD */
  --light-bg: #ffffff;
  --light-bg-secondary: #f8f9fa;
  --light-text: #333333;
  --light-text-secondary: #666666;
  --light-border: #e9ecef;
  --light-card: #ffffff;
  --light-shadow: rgba(0, 0, 0, 0.08);
  
  /* KARANLIK MOD */
  --dark-bg: #121212;
  --dark-bg-secondary: #1e1e1e;
  --dark-text: #ffffff;
  --dark-text-secondary: #b0b0b0;
  --dark-border: #333333;
  --dark-card: #1e1e1e;
  --dark-shadow: rgba(0, 0, 0, 0.3);
  
  /* TYPOGRAPHY */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* SPACING */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* BORDER RADIUS */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* TRANSITIONS */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* SHADOWS */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15), 0 5px 10px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.25), 0 10px 20px rgba(0,0,0,0.1);
  --shadow-2xl: 0 25px 60px rgba(0,0,0,0.3);
}

/* ==================== RESET & BASE STYLES ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: var(--light-bg);
  color: var(--light-text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: all var(--transition-normal);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* DARK MODE */
body[data-theme="dark"] {
  background: var(--dark-bg) !important;
  color: var(--dark-text) !important;
}

/* ==================== TYPOGRAPHY ENHANCEMENTS ==================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
  color: inherit;
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
  margin-bottom: var(--space-lg);
  font-size: var(--font-size-lg);
  color: var(--light-text-secondary);
}

body[data-theme="dark"] p {
  color: var(--dark-text-secondary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

/* ==================== NAVBAR ENHANCEMENTS ==================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-md) 0;
  z-index: 10000;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border-bottom: 1px solid transparent;
}

body[data-theme="dark"] .navbar { 
  background: rgba(18, 18, 18, 0.95);
  border-bottom-color: var(--dark-border);
}

.navbar.scrolled { 
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--light-border);
}

body[data-theme="dark"] .navbar.scrolled {
  border-bottom-color: var(--dark-border);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 52px;
  transition: all var(--transition-normal);
  border-radius: var(--radius-sm);
}

.logo-img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: var(--space-2xl);
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--light-text);
  font-weight: 600;
  font-size: var(--font-size-base);
  position: relative;
  padding: var(--space-sm) 0;
}

body[data-theme="dark"] .nav-links a {
  color: var(--dark-text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--space-sm);
  z-index: 10001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--light-text);
  margin: 6px 0;
  border-radius: 2px;
  transition: all var(--transition-normal);
  transform-origin: center;
}

body[data-theme="dark"] .hamburger span {
  background: var(--dark-text);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ==================== HERO SECTION ENHANCEMENTS ==================== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  padding: 200px var(--space-xl) 140px;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/techlogo.png') center/contain no-repeat;
  opacity: 0.08;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(transparent, var(--light-bg));
}

body[data-theme="dark"] .hero::after {
  background: linear-gradient(transparent, var(--dark-bg));
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  margin-bottom: var(--space-xl);
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #ffffff, #f0f8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.hero p {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* ==================== CARD SYSTEM ENHANCEMENTS ==================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-2xl);
  padding: var(--space-3xl) 0;
}

.card {
  background: var(--light-card);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  border: 1px solid var(--light-border);
  position: relative;
}

body[data-theme="dark"] .card {
  background: var(--dark-card);
  border-color: var(--dark-border);
  box-shadow: var(--shadow-xl);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-2xl);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover img {
  transform: scale(1.05);
}

.card-body {
  padding: var(--space-2xl);
}

.card-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--light-text);
  line-height: 1.3;
}

body[data-theme="dark"] .card-title {
  color: var(--dark-text);
}

.card-meta {
  font-size: var(--font-size-sm);
  color: var(--light-text-secondary);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

body[data-theme="dark"] .card-meta {
  color: var(--dark-text-secondary);
}

.card-meta::before {
  content: '📅';
  font-size: var(--font-size-sm);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--primary);
  font-weight: 600;
  padding: var(--space-sm) 0;
  position: relative;
}

.read-more::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.read-more:hover::after {
  transform: translateX(4px);
}

/* ==================== DARK MODE TOGGLE ENHANCEMENTS ==================== */
.theme-toggle {
  position: fixed;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10002;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.theme-toggle:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255,255,255,0.2);
}

.theme-toggle:active {
  transform: scale(0.95);
}

.theme-toggle svg {
  width: 26px;
  height: 26px;
  fill: white;
  transition: transform var(--transition-normal);
}

/* ==================== MODAL ENHANCEMENTS ==================== */
.subscribe-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10003;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.subscribe-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--light-card);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  width: 90%;
  max-width: 500px;
  text-align: center;
  box-shadow: var(--shadow-2xl);
  transform: scale(0.8) translateY(50px);
  transition: all var(--transition-slow);
  position: relative;
  border: 1px solid var(--light-border);
}

body[data-theme="dark"] .modal-content {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

.subscribe-modal.show .modal-content {
  transform: scale(1) translateY(0);
}

.close-btn {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-size: 2rem;
  color: var(--light-text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-btn:hover {
  color: var(--light-text);
  background: var(--light-bg-secondary);
}

body[data-theme="dark"] .close-btn:hover {
  color: var(--dark-text);
  background: var(--dark-bg-secondary);
}

.modal-header h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.modal-header p {
  font-size: var(--font-size-lg);
  color: var(--light-text-secondary);
  margin-bottom: var(--space-2xl);
}

body[data-theme="dark"] .modal-header p {
  color: var(--dark-text-secondary);
}

.input-group {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.input-group input {
  flex: 1;
  padding: var(--space-lg);
  border: 2px solid var(--light-border);
  border-radius: var(--radius-xl);
  font-size: var(--font-size-base);
  outline: none;
  transition: all var(--transition-fast);
  background: var(--light-bg);
  color: var(--light-text);
}

body[data-theme="dark"] .input-group input {
  background: var(--dark-bg);
  color: var(--dark-text);
  border-color: var(--dark-border);
}

.input-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.subscribe-btn {
  padding: 0 var(--space-xl);
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: var(--font-size-base);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.subscribe-btn:hover {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.subscribe-btn:active {
  transform: translateY(0);
}

.subscribe-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.subscribe-btn:hover svg {
  transform: translateX(2px);
}

.thankyou {
  display: none;
  background: var(--success);
  color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  font-weight: 600;
  animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== FOOTER ENHANCEMENTS ==================== */
footer {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  color: var(--dark-text-secondary);
  padding: var(--space-3xl) var(--space-xl) var(--space-xl);
  text-align: center;
  margin-top: var(--space-3xl);
  position: relative;
}

body[data-theme="dark"] footer {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.social-modern {
  margin-bottom: var(--space-2xl);
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left var(--transition-slow);
}

.social-btn:hover::before {
  left: 100%;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.twitter {
  background: linear-gradient(45deg, #1da1f2, #0d8bd9);
}

.social-btn.youtube {
  background: #FF0000 !important;
  position: relative !important;
  overflow: hidden !important;
}

/* YOUTUBE İKONU MÜKEMMEL ÇÖZÜM */
.social-btn.youtube::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 26px;
  background: white;
  border-radius: 6px;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.social-btn.youtube::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-left: 14px solid #FF0000;
  transform: translate(-40%, -50%);
  z-index: 2;
}

.social-btn.youtube svg {
  opacity: 0 !important;
  pointer-events: none !important;
}

.social-btn:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: var(--shadow-xl);
}

.copyright {
  font-size: var(--font-size-sm);
  opacity: 0.8;
  margin-top: var(--space-lg);
  color: var(--dark-text-secondary);
}

/* ==================== POST CONTENT ENHANCEMENTS ==================== */
.post-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px var(--space-xl) 140px;
  text-align: center;
  line-height: 1.8;
}

.post-content h1,
.post-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 60px 0 30px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

.post-content p,
.post-content li {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.8;
  max-width: 820px;
  margin: 25px auto;
  color: var(--light-text);
  text-align: left;
}

body[data-theme="dark"] .post-content p,
body[data-theme="dark"] .post-content li {
  color: var(--dark-text);
}

.post-content ul {
  text-align: left;
  max-width: 700px;
  margin: 40px auto;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.8;
  padding-left: var(--space-xl);
}

.post-content li {
  margin-bottom: var(--space-md);
  position: relative;
}

.post-content li::before {
  content: '•';
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: -20px;
}

/* TABLO STİLLERİ */
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px auto;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.post-content th,
.post-content td {
  padding: var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--light-border);
}

.post-content th {
  background: var(--primary);
  color: white;
  font-weight: 600;
}

.post-content tr:hover {
  background: var(--light-bg-secondary);
}

body[data-theme="dark"] .post-content tr:hover {
  background: var(--dark-bg-secondary);
}

/* ÖZEL VURGULU KUTU */
.highlight {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}

/* ==================== MOBİL RESPONSIVE - GELİŞMİŞ ==================== */
@media (max-width: 768px) {
  :root {
    font-size: 14px;
  }
  
  .nav-container {
    padding: 0 var(--space-lg) !important;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--light-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all var(--transition-normal);
    z-index: 9998;
    gap: var(--space-xl);
  }
  
  body[data-theme="dark"] .nav-links {
    background: var(--dark-bg);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links a {
    font-size: var(--font-size-2xl) !important;
    padding: var(--space-md) var(--space-xl);
  }
  
  .hero {
    padding: 150px var(--space-lg) 80px !important;
    min-height: 70vh;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }
  
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-xl);
    padding: var(--space-2xl) 0;
  }
  
  .card {
    margin: 0 auto;
    max-width: 100%;
  }
  
  .card-body {
    padding: var(--space-xl);
  }
  
  .post-content {
    padding: 100px var(--space-lg) 80px !important;
  }
  
  .input-group {
    flex-direction: column;
  }
  
  .subscribe-btn {
    justify-content: center;
  }
  
  .theme-toggle {
    top: var(--space-lg);
    right: 70px;
    width: 48px;
    height: 48px;
  }
  
  footer {
    padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  }
  
  .social-btn {
    width: 50px;
    height: 50px;
  }
  
  .social-btn.youtube::after {
    width: 30px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-lg);
  }
  
  .hero {
    padding: 120px var(--space-md) 60px !important;
  }
  
  .card-body {
    padding: var(--space-lg);
  }
  
  .modal-content {
    padding: var(--space-2xl) var(--space-lg);
    margin: var(--space-md);
  }
}

/* ==================== TABLET OPTIMIZASYONU ==================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  
  .nav-container {
    padding: 0 var(--space-lg);
  }
  
  .hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
  }
}

/* ==================== ACCESSIBILITY ENHANCEMENTS ==================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* FOCUS STYLES */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  z-index: 10000;
}

.skip-link:focus {
  top: 6px;
}

/* ==================== PERFORMANCE OPTIMIZATIONS ==================== */
@media (prefers-contrast: high) {
  :root {
    --primary: #0000ff;
    --light-bg: #ffffff;
    --light-text: #000000;
    --dark-bg: #000000;
    --dark-text: #ffffff;
  }
}

/* PRINT STYLES */
@media print {
  .navbar,
  .theme-toggle,
  .subscribe-modal,
  footer {
    display: none !important;
  }
  
  .hero {
    background: white !important;
    color: black !important;
    padding: 50px 20px !important;
  }
  
  .hero h1 {
    color: black !important;
  }
}

/* ==================== İLETİŞİM SAYFASI STİLLERİ ==================== */
.contact-section {
  padding: 80px 20px;
}

.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--light-card);
  border-radius: 24px;
  padding: 50px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-border);
}

body[data-theme="dark"] .contact-form-container {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.contact-header p {
  color: var(--light-text-secondary);
  font-size: 1.1rem;
}

body[data-theme="dark"] .contact-header p {
  color: var(--dark-text-secondary);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--light-text);
}

body[data-theme="dark"] .form-label {
  color: var(--dark-text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 18px;
  border: 2px solid var(--light-border);
  border-radius: 16px;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
  background: var(--light-bg);
  color: var(--light-text);
  font-family: inherit;
}

body[data-theme="dark"] .form-input,
body[data-theme="dark"] .form-textarea {
  background: var(--dark-bg);
  color: var(--dark-text);
  border-color: var(--dark-border);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  padding: 18px;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.form-thankyou {
  margin-top: 20px;
  padding: 15px;
  background: var(--success);
  color: white;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.contact-info-section {
  padding: 60px 20px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info-card {
  background: var(--light-card);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-border);
  transition: all var(--transition-normal);
}

body[data-theme="dark"] .contact-info-card {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.contact-info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--light-text);
}

body[data-theme="dark"] .contact-info-card h3 {
  color: var(--dark-text);
}

.contact-info-card p {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--light-text-secondary);
}

body[data-theme="dark"] .contact-info-card p {
  color: var(--dark-text-secondary);
}

.contact-info-card small {
  color: var(--light-text-secondary);
  opacity: 0.8;
}

body[data-theme="dark"] .contact-info-card small {
  color: var(--dark-text-secondary);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary);
  color: white;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 6px;
}

/* ==================== MOBİL İLETİŞİM STİLLERİ ==================== */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px;
  }
  
  .contact-form-container {
    padding: 30px 25px;
    margin: 0 10px;
  }
  
  .contact-header h2 {
    font-size: 2rem;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-info-card {
    padding: 25px 20px;
  }
  
  .form-input,
  .form-textarea {
    padding: 16px;
    font-size: 1rem;
  }
  
  .submit-btn {
    padding: 16px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 25px 20px;
  }
  
  .contact-header h2 {
    font-size: 1.8rem;
  }
  
  .contact-icon {
    font-size: 2.5rem;
  }
}

/* ==================== HAKKIMIZDA SAYFASI STİLLERİ ==================== */

/* About Sections */
.about-section {
  margin-bottom: 80px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 50px 0;
}

.mission-card,
.vision-card {
  background: var(--light-card);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-border);
  text-align: center;
  transition: all var(--transition-normal);
}

body[data-theme="dark"] .mission-card,
body[data-theme="dark"] .vision-card {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.icon-wrapper {
  font-size: 3rem;
  margin-bottom: 20px;
}

.mission-card h3,
.vision-card h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

/* Values Section */
.values-section {
  margin: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: var(--light-card);
  padding: 30px;
  border-radius: 16px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

body[data-theme="dark"] .value-card {
  background: var(--dark-card);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Services Section */
.what-we-do-section {
  margin: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-item {
  background: var(--light-bg-secondary);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--light-border);
  transition: all var(--transition-normal);
}

body[data-theme="dark"] .service-item {
  background: var(--dark-bg-secondary);
  border-color: var(--dark-border);
}

.service-item:hover {
  background: var(--primary-light);
  transform: translateX(10px);
}

body[data-theme="dark"] .service-item:hover {
  background: var(--primary-dark);
}

.service-item h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Team Section */
.team-section {
  margin: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.team-member {
  text-align: center;
  padding: 30px;
  background: var(--light-card);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-border);
}

body[data-theme="dark"] .team-member {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

.team-member h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.role {
  color: var(--light-text-secondary);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

body[data-theme="dark"] .role {
  color: var(--dark-text-secondary);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 24px;
  text-align: center;
  margin: 80px 0;
}

.cta-content h2 {
  color: white;
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.cta-content p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.highlight-text {
  font-size: 1.3rem !important;
  font-weight: 600;
  margin: 30px 0 !important;
  color: white !important;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta-btn {
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.cta-btn.primary {
  background: white;
  color: var(--primary);
}

.cta-btn.primary:hover {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-btn.secondary:hover {
  background: white;
  color: var(--primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .values-grid,
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-section {
    padding: 40px 20px;
    margin: 60px 0;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
  
  .mission-card,
  .vision-card {
    padding: 30px 20px;
  }
}

/* ==================== BLOG SAYFASI STİLLERİ ==================== */

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--light-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

body[data-theme="dark"] .section-header p {
  color: var(--dark-text-secondary);
}

/* Featured Section */
.featured-section {
  padding: 80px 20px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.featured-card {
  background: var(--light-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  border: 1px solid var(--light-border);
}

body[data-theme="dark"] .featured-card {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

.featured-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.featured-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.featured-content {
  padding: 30px;
}

.featured-content .post-category {
  background: var(--primary);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.featured-content h3 {
  font-size: 1.5rem;
  margin: 15px 0;
  color: var(--light-text);
}

body[data-theme="dark"] .featured-content h3 {
  color: var(--dark-text);
}

.featured-content p {
  color: var(--light-text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

body[data-theme="dark"] .featured-content p {
  color: var(--dark-text-secondary);
}

/* Categories Section */
.categories-section {
  padding: 80px 20px;
  background: var(--light-bg-secondary);
}

body[data-theme="dark"] .categories-section {
  background: var(--dark-bg-secondary);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.category-card {
  background: var(--light-card);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
}

body[data-theme="dark"] .category-card {
  background: var(--dark-card);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.category-card h3 {
  color: var(--light-text);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

body[data-theme="dark"] .category-card h3 {
  color: var(--dark-text);
}

.category-card p {
  color: var(--light-text-secondary);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

body[data-theme="dark"] .category-card p {
  color: var(--dark-text-secondary);
}

.post-count {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

body[data-theme="dark"] .post-count {
  background: var(--primary-dark);
  color: white;
}

/* Blog Section */
.blog-section {
  padding: 80px 20px;
}

.blog-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--light-bg);
  border: 2px solid var(--light-border);
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-weight: 600;
  color: var(--light-text);
}

body[data-theme="dark"] .filter-btn {
  background: var(--dark-bg);
  border-color: var(--dark-border);
  color: var(--dark-text);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.blog-card {
  position: relative;
}

.blog-card .post-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

.card-excerpt {
  color: var(--light-text-secondary);
  margin-bottom: 15px;
  line-height: 1.6;
}

body[data-theme="dark"] .card-excerpt {
  color: var(--dark-text-secondary);
}

.load-more-container {
  text-align: center;
}

.load-more-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.load-more-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.newsletter-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.newsletter-content h2 {
  color: white;
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.newsletter-content p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.newsletter-benefits {
  list-style: none;
  padding: 0;
}

.newsletter-benefits li {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.9);
}

.newsletter-form-inline {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.newsletter-form-inline input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
}

.newsletter-btn {
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-normal);
}

.newsletter-btn:hover {
  background: white;
}

.privacy-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

/* Post Meta */
.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--light-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

body[data-theme="dark"] .post-meta {
  color: var(--dark-text-secondary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .newsletter-form-inline {
    flex-direction: column;
  }
  
  .blog-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .filter-btn {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .featured-content,
  .category-card {
    padding: 20px;
  }
}

/* ==================== BLOG POST STİLLERİ ==================== */

/* Post Hero Meta */
.post-meta-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  flex-wrap: wrap;
}

.post-meta-hero .author {
  font-weight: 600;
}

.post-meta-hero .divider {
  opacity: 0.7;
}

/* Post Introduction */
.post-intro {
  margin-bottom: 50px;
}

.lead-text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--light-text);
  background: var(--light-bg-secondary);
  padding: 30px;
  border-radius: 16px;
  border-left: 4px solid var(--primary);
}

body[data-theme="dark"] .lead-text {
  background: var(--dark-bg-secondary);
  color: var(--dark-text);
}

/* Quick Summary */
.quick-summary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 50px;
}

.quick-summary h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.quick-summary ul {
  list-style: none;
  padding: 0;
}

.quick-summary li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.quick-summary li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: white;
  font-weight: bold;
}

/* Table Section */
.table-section {
  margin: 60px 0;
}

.responsive-table {
  overflow-x: auto;
  margin: 30px 0;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.screen-time-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--light-card);
  border-radius: 12px;
  overflow: hidden;
}

body[data-theme="dark"] .screen-time-table {
  background: var(--dark-card);
}

.screen-time-table th {
  background: var(--primary);
  color: white;
  padding: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
}

.screen-time-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--light-border);
  color: var(--light-text);
}

body[data-theme="dark"] .screen-time-table td {
  border-color: var(--dark-border);
  color: var(--dark-text);
}

.screen-time-table tbody tr:hover {
  background: var(--primary-light);
  transition: background-color 0.3s ease;
}

body[data-theme="dark"] .screen-time-table tbody tr:hover {
  background: var(--primary-dark);
}

.table-note {
  background: var(--warning);
  color: var(--dark-text);
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  border-left: 4px solid var(--warning);
}

/* Science Section */
.science-section {
  margin: 60px 0;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.research-card {
  background: var(--light-card);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
}

body[data-theme="dark"] .research-card {
  background: var(--dark-card);
}

.research-card h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.research-card p {
  color: var(--light-text-secondary);
  margin-bottom: 15px;
  line-height: 1.6;
}

body[data-theme="dark"] .research-card p {
  color: var(--dark-text-secondary);
}

.source {
  font-size: 0.85rem;
  color: var(--light-text-secondary);
  opacity: 0.8;
  font-style: italic;
}

body[data-theme="dark"] .source {
  color: var(--dark-text-secondary);
}

/* Risks Section */
.risks-section {
  margin: 60px 0;
}

.risks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.risk-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: var(--light-bg-secondary);
  padding: 20px;
  border-radius: 12px;
  transition: all var(--transition-normal);
}

body[data-theme="dark"] .risk-item {
  background: var(--dark-bg-secondary);
}

.risk-item:hover {
  transform: translateX(10px);
  background: var(--primary-light);
}

body[data-theme="dark"] .risk-item:hover {
  background: var(--primary-dark);
}

.risk-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.risk-content h4 {
  color: var(--light-text);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

body[data-theme="dark"] .risk-content h4 {
  color: var(--dark-text);
}

.risk-content p {
  color: var(--light-text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

body[data-theme="dark"] .risk-content p {
  color: var(--dark-text-secondary);
}

/* Tips Section */
.tips-section {
  margin: 60px 0;
}

.tip-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.tip-card {
  background: var(--light-card);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all var(--transition-normal);
}

body[data-theme="dark"] .tip-card {
  background: var(--dark-card);
}

.tip-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.tip-card h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.tip-card p {
  color: var(--light-text-secondary);
  line-height: 1.6;
  margin: 0;
}

body[data-theme="dark"] .tip-card p {
  color: var(--dark-text-secondary);
}

/* Key Takeaway */
.key-takeaway {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 40px;
  border-radius: 20px;
  margin: 60px 0;
  text-align: center;
}

.takeaway-content h3 {
  color: white;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.takeaway-content ul {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
}

.takeaway-content li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1rem;
}

.takeaway-content li::before {
  content: '⭐';
  position: absolute;
  left: 0;
}

/* Post CTA */
.post-cta {
  background: var(--light-bg-secondary);
  padding: 40px;
  border-radius: 16px;
  margin: 60px 0;
  text-align: center;
  border: 2px dashed var(--primary);
}

body[data-theme="dark"] .post-cta {
  background: var(--dark-bg-secondary);
}

.post-cta h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.post-cta p {
  color: var(--light-text-secondary);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

body[data-theme="dark"] .post-cta p {
  color: var(--dark-text-secondary);
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.cta-btn.primary {
  background: var(--primary);
  color: white;
}

.cta-btn.primary:hover {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.cta-btn.secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.cta-btn.secondary:hover {
  background: var(--primary);
  color: white;
}

/* Related Posts */
.related-posts {
  background: var(--light-bg-secondary);
  padding: 60px 20px;
  margin-top: 80px;
}

body[data-theme="dark"] .related-posts {
  background: var(--dark-bg-secondary);
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--light-text);
}

body[data-theme="dark"] .related-posts h2 {
  color: var(--dark-text);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.related-card {
  background: var(--light-card);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

body[data-theme="dark"] .related-card {
  background: var(--dark-card);
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.related-card h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.related-card p {
  color: var(--light-text-secondary);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

body[data-theme="dark"] .related-card p {
  color: var(--dark-text-secondary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .post-meta-hero {
    flex-direction: column;
    gap: 8px;
  }
  
  .lead-text {
    font-size: 1.2rem;
    padding: 20px;
  }
  
  .research-grid,
  .risks-grid,
  .tip-cards,
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .risk-item {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
  
  .screen-time-table th,
  .screen-time-table td {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .post-cta,
  .key-takeaway,
  .quick-summary {
    padding: 25px 20px;
  }
  
  .related-card {
    padding: 20px;
  }
}

/* ==================== POST2 ÖZEL STİLLERİ ==================== */

/* Mechanism Steps */
.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.mechanism-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--light-card);
  padding: 25px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

body[data-theme="dark"] .mechanism-step {
  background: var(--dark-card);
}

.mechanism-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  background: var(--primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.step-content p {
  color: var(--light-text-secondary);
  line-height: 1.6;
  margin: 0;
}

body[data-theme="dark"] .step-content p {
  color: var(--dark-text-secondary);
}

.brain-chemistry {
  background: var(--light-bg-secondary);
  padding: 25px;
  border-radius: 12px;
  margin-top: 30px;
  border-left: 4px solid var(--primary);
}

body[data-theme="dark"] .brain-chemistry {
  background: var(--dark-bg-secondary);
}

.brain-chemistry h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Addiction Section */
.addiction-section {
  margin: 60px 0;
}

.addiction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.addiction-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--light-card);
  padding: 25px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

body[data-theme="dark"] .addiction-card {
  background: var(--dark-card);
}

.addiction-card:hover {
  border-color: var(--primary);
}

.addiction-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.addiction-content h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.addiction-content p {
  color: var(--light-text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}

body[data-theme="dark"] .addiction-content p {
  color: var(--dark-text-secondary);
}

.addiction-source {
  font-size: 0.85rem;
  color: var(--light-text-secondary);
  opacity: 0.7;
  font-style: italic;
}

body[data-theme="dark"] .addiction-source {
  color: var(--dark-text-secondary);
}

/* Research Section */
.research-section {
  margin: 60px 0;
}

.research-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.stat-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-desc {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

.research-highlight {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--warning);
  color: var(--dark-text);
  padding: 25px;
  border-radius: 12px;
  margin-top: 30px;
  border-left: 4px solid var(--warning);
}

.highlight-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.highlight-content h4 {
  color: inherit;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.highlight-content p {
  margin: 0;
  line-height: 1.6;
}

/* Solutions Section */
.solutions-section {
  margin: 60px 0;
}

.age-solutions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.age-group {
  background: var(--light-card);
  padding: 25px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--primary-light);
}

body[data-theme="dark"] .age-group {
  background: var(--dark-card);
}

.age-group h4 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.age-group ul {
  list-style: none;
  padding: 0;
}

.age-group li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  color: var(--light-text-secondary);
}

body[data-theme="dark"] .age-group li {
  color: var(--dark-text-secondary);
}

.age-group li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.age-group li strong {
  color: var(--light-text);
}

body[data-theme="dark"] .age-group li strong {
  color: var(--dark-text);
}

.detox-plan {
  background: var(--light-bg-secondary);
  padding: 30px;
  border-radius: 16px;
  margin-top: 40px;
}

body[data-theme="dark"] .detox-plan {
  background: var(--dark-bg-secondary);
}

.detox-plan h4 {
  color: var(--primary);
  margin-bottom: 25px;
  font-size: 1.4rem;
  text-align: center;
}

.detox-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.detox-step {
  background: var(--light-card);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

body[data-theme="dark"] .detox-step {
  background: var(--dark-card);
}

.detox-step h5 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.detox-step p {
  color: var(--light-text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

body[data-theme="dark"] .detox-step p {
  color: var(--dark-text-secondary);
}

/* Strategies Section */
.strategies-section {
  margin: 60px 0;
}

.strategy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.strategy-card {
  background: var(--light-card);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all var(--transition-normal);
}

body[data-theme="dark"] .strategy-card {
  background: var(--dark-card);
}

.strategy-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.strategy-card h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.strategy-card p {
  color: var(--light-text-secondary);
  line-height: 1.6;
  margin: 0;
}

body[data-theme="dark"] .strategy-card p {
  color: var(--dark-text-secondary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mechanism-grid,
  .addiction-grid,
  .age-solutions,
  .detox-steps,
  .strategy-cards {
    grid-template-columns: 1fr;
  }
  
  .mechanism-step,
  .addiction-card {
    flex-direction: column;
    text-align: center;
  }
  
  .research-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .research-highlight {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .research-stats {
    grid-template-columns: 1fr;
  }
  
  .age-group,
  .detox-step,
  .strategy-card {
    padding: 20px;
  }
  
  .addiction-icon,
  .highlight-icon {
    font-size: 2rem;
  }
}

/* ==================== POST3 ÖZEL STİLLERİ ==================== */

/* Safety Section */
.safety-section {
  margin: 50px 0;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.safety-card {
  background: var(--light-card);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
  transition: all var(--transition-normal);
}

body[data-theme="dark"] .safety-card {
  background: var(--dark-card);
}

.safety-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.safety-card h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.safety-card p {
  color: var(--light-text-secondary);
  line-height: 1.6;
  margin: 0;
}

body[data-theme="dark"] .safety-card p {
  color: var(--dark-text-secondary);
}

/* Categories Section */
.categories-section {
  margin: 60px 0;
}

.category-group {
  margin-bottom: 50px;
}

.category-header {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 25px;
}

.category-header h3 {
  color: white;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.category-header p {
  color: rgba(255,255,255,0.9);
  margin: 0;
  font-size: 1.1rem;
}

.prompts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.prompt-card {
  background: var(--light-card);
  border: 2px solid var(--light-border);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

body[data-theme="dark"] .prompt-card {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

.prompt-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.prompt-card::before {
  content: '📋';
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.2rem;
  opacity: 0.7;
}

.prompt-content p {
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

body[data-theme="dark"] .prompt-content p {
  color: var(--dark-text);
}

.prompt-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--light-border);
}

body[data-theme="dark"] .prompt-meta {
  border-color: var(--dark-border);
}

.prompt-age {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

body[data-theme="dark"] .prompt-age {
  background: var(--primary-dark);
  color: white;
}

.prompt-duration {
  color: var(--light-text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
}

body[data-theme="dark"] .prompt-duration {
  color: var(--dark-text-secondary);
}

.copied-message {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  color: var(--success);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Tips Section */
.tips-section {
  margin: 60px 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.tip-card {
  background: var(--light-card);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all var(--transition-normal);
}

body[data-theme="dark"] .tip-card {
  background: var(--dark-card);
}

.tip-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.tip-card h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
  text-align: center;
}

.tip-card ul {
  list-style: none;
  padding: 0;
}

.tip-card li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  color: var(--light-text-secondary);
}

body[data-theme="dark"] .tip-card li {
  color: var(--dark-text-secondary);
}

.tip-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .safety-grid,
  .prompts-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .category-header {
    padding: 20px;
  }
  
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .prompt-card {
    padding: 15px;
  }
  
  .safety-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .prompts-grid {
    grid-template-columns: 1fr;
  }
  
  .prompt-meta {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  
  .tip-card {
    padding: 20px;
  }
}

/* Animation for prompt cards */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.prompt-card:active {
  animation: pulse 0.3s ease;
}

/* ==================== POST4 ÖZEL STİLLERİ ==================== */

/* Creativity Section */
.creativity-section {
  margin: 60px 0;
}

.section-subtitle {
  text-align: center;
  color: var(--light-text-secondary);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="dark"] .section-subtitle {
  color: var(--dark-text-secondary);
}

.prompts-grid-creative {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.creative-prompt-card {
  background: var(--light-card);
  border: 2px solid var(--light-border);
  border-radius: 16px;
  padding: 25px;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

body[data-theme="dark"] .creative-prompt-card {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

.creative-prompt-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.creative-prompt-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.creative-prompt-card:hover::before {
  opacity: 1;
}

.prompt-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  background: var(--primary-light);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body[data-theme="dark"] .prompt-icon {
  background: var(--primary-dark);
}

.prompt-content-creative {
  flex: 1;
}

.prompt-content-creative h4 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.prompt-text {
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
  background: var(--light-bg-secondary);
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid var(--primary);
}

body[data-theme="dark"] .prompt-text {
  color: var(--dark-text);
  background: var(--dark-bg-secondary);
}

.prompt-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.benefit-tag {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

body[data-theme="dark"] .benefit-tag {
  background: var(--primary-dark);
  color: white;
}

/* Interactive Method Section */
.interactive-method {
  margin: 60px 0;
  background: var(--light-bg-secondary);
  padding: 40px;
  border-radius: 20px;
}

body[data-theme="dark"] .interactive-method {
  background: var(--dark-bg-secondary);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.method-step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: var(--light-card);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

body[data-theme="dark"] .method-step {
  background: var(--dark-card);
}

.step-number {
  background: var(--primary);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.step-content p {
  color: var(--light-text-secondary);
  line-height: 1.5;
  margin: 0;
  font-size: 0.95rem;
}

body[data-theme="dark"] .step-content p {
  color: var(--dark-text-secondary);
}

.method-benefit {
  background: var(--primary-light);
  padding: 25px;
  border-radius: 12px;
  margin-top: 30px;
}

body[data-theme="dark"] .method-benefit {
  background: var(--primary-dark);
}

.method-benefit h4 {
  color: var(--primary-dark);
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.3rem;
}

body[data-theme="dark"] .method-benefit h4 {
  color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.benefit-item {
  background: white;
  padding: 15px;
  border-radius: 8px;
  color: var(--light-text);
  font-size: 0.95rem;
  line-height: 1.4;
}

body[data-theme="dark"] .benefit-item {
  background: var(--dark-card);
  color: var(--dark-text);
}

.benefit-item strong {
  color: var(--primary);
}

/* Age Tips Section */
.age-tips-section {
  margin: 60px 0;
}

.age-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.age-tip-card {
  background: var(--light-card);
  padding: 25px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all var(--transition-normal);
}

body[data-theme="dark"] .age-tip-card {
  background: var(--dark-card);
}

.age-tip-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.age-tip-card h4 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.3rem;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--light-border);
}

body[data-theme="dark"] .age-tip-card h4 {
  border-color: var(--dark-border);
}

.age-tip-card ul {
  list-style: none;
  padding: 0;
}

.age-tip-card li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  color: var(--light-text-secondary);
  line-height: 1.5;
}

body[data-theme="dark"] .age-tip-card li {
  color: var(--dark-text-secondary);
}

.age-tip-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Copied Message */
.copied-message {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  color: var(--success);
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .prompts-grid-creative {
    grid-template-columns: 1fr;
  }
  
  .creative-prompt-card {
    flex-direction: column;
    text-align: center;
  }
  
  .method-steps {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .interactive-method {
    padding: 25px 20px;
  }
  
  .age-tips-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .creative-prompt-card {
    padding: 20px;
  }
  
  .prompt-icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
  
  .method-step {
    padding: 15px;
  }
  
  .age-tip-card {
    padding: 20px;
  }
  
  .prompt-benefits {
    justify-content: center;
  }
}

/* Animation for prompt cards */
@keyframes pulse-gentle {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.creative-prompt-card:active {
  animation: pulse-gentle 0.3s ease;
}

/* ==================== POST5 ÖZEL STİLLERİ ==================== */

/* Coding Apps Section */
.coding-apps-section {
  margin: 60px 0;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.app-card {
  background: var(--light-card);
  border: 2px solid var(--light-border);
  border-radius: 20px;
  padding: 25px;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

body[data-theme="dark"] .app-card {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.app-card.expanded {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
}

.app-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.app-icon {
  font-size: 3rem;
  background: var(--primary-light);
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body[data-theme="dark"] .app-icon {
  background: var(--primary-dark);
}

.app-title h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.app-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: #ffc107;
  font-size: 1.1rem;
}

.rating-text {
  color: var(--light-text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
}

body[data-theme="dark"] .rating-text {
  color: var(--dark-text-secondary);
}

.app-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.age-badge {
  background: var(--primary);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.price-badge {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.price-badge.free {
  background: var(--success);
  color: white;
}

.price-badge.paid {
  background: var(--warning);
  color: var(--dark-text);
}

.price-badge.freemium {
  background: var(--info);
  color: white;
}

.platform-badge {
  background: var(--light-bg-secondary);
  color: var(--light-text-secondary);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

body[data-theme="dark"] .platform-badge {
  background: var(--dark-bg-secondary);
  color: var(--dark-text-secondary);
}

.app-description {
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}

body[data-theme="dark"] .app-description {
  color: var(--dark-text);
}

.app-features {
  margin-bottom: 20px;
}

.app-features h4 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.app-features ul {
  list-style: none;
  padding: 0;
}

.app-features li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  color: var(--light-text-secondary);
  line-height: 1.5;
}

body[data-theme="dark"] .app-features li {
  color: var(--dark-text-secondary);
}

.app-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.app-benefits h4 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.benefits-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.benefit-tag {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

body[data-theme="dark"] .benefit-tag {
  background: var(--primary-dark);
  color: white;
}

/* Guidelines Section */
.guidelines-section {
  margin: 60px 0;
}

.guidelines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.guideline-card {
  background: var(--light-card);
  padding: 25px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all var(--transition-normal);
}

body[data-theme="dark"] .guideline-card {
  background: var(--dark-card);
}

.guideline-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.guideline-card h4 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.2rem;
  text-align: center;
}

.guideline-card ul {
  list-style: none;
  padding: 0;
}

.guideline-card li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: var(--light-text-secondary);
  line-height: 1.5;
}

body[data-theme="dark"] .guideline-card li {
  color: var(--dark-text-secondary);
}

.guideline-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Comparison Section */
.comparison-section {
  margin: 60px 0;
}

.comparison-table {
  background: var(--light-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 30px;
}

body[data-theme="dark"] .comparison-table {
  background: var(--dark-card);
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1.5fr;
  background: var(--primary);
  color: white;
  font-weight: 600;
  padding: 20px;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1.5fr;
  padding: 18px 20px;
  border-bottom: 1px solid var(--light-border);
  transition: background-color var(--transition-normal);
}

body[data-theme="dark"] .table-row {
  border-color: var(--dark-border);
}

.table-row:hover {
  background: var(--primary-light);
}

body[data-theme="dark"] .table-row:hover {
  background: var(--primary-dark);
}

.table-cell {
  display: flex;
  align-items: center;
  color: var(--light-text);
}

body[data-theme="dark"] .table-cell {
  color: var(--dark-text);
}

.table-cell strong {
  color: var(--primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .apps-grid {
    grid-template-columns: 1fr;
  }
  
  .guidelines-grid {
    grid-template-columns: 1fr;
  }
  
  .table-header,
  .table-row {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }
  
  .app-header {
    flex-direction: column;
    text-align: center;
  }
  
  .app-icon {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .app-card {
    padding: 20px;
  }
  
  .app-icon {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
  }
  
  .guideline-card {
    padding: 20px;
  }
  
  .comparison-table {
    font-size: 0.9rem;
  }
}

/* Animation for app cards */
@keyframes expand-card {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.app-card:active {
  animation: expand-card 0.3s ease;
}

/* Age Guidelines Section devamı */
.age-guideline-card {
  background: var(--light-card);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--light-border);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

body[data-theme="dark"] .age-guideline-card {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

.age-guideline-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.age-group {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.age-content h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.age-description {
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

body[data-theme="dark"] .age-description {
  color: var(--dark-text);
}

.age-tips {
  background: var(--light-bg-secondary);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

body[data-theme="dark"] .age-tips {
  background: var(--dark-bg-secondary);
}

.age-tips h4 {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.age-tips ul {
  list-style: none;
  padding: 0;
}

.age-tips li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  color: var(--light-text-secondary);
  line-height: 1.5;
}

body[data-theme="dark"] .age-tips li {
  color: var(--dark-text-secondary);
}

.age-tips li::before {
  content: '💡';
  position: absolute;
  left: 0;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .privacy-steps-section,
  .age-guidelines-section {
    margin: 40px 0;
  }
  
  .steps-grid,
  .age-guidelines-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .step-card,
  .age-guideline-card {
    padding: 20px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .step-content h3,
  .age-content h3 {
    font-size: 1.2rem;
  }
  
  .step-description,
  .age-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .step-card,
  .age-guideline-card {
    padding: 15px;
  }
  
  .step-activities,
  .step-script,
  .age-tips {
    padding: 15px;
  }
}

/* Animasyonlar */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-card,
.age-guideline-card {
  animation: fadeInUp 0.6s ease-out;
}

.step-card:nth-child(2),
.age-guideline-card:nth-child(2) {
  animation-delay: 0.1s;
}

.step-card:nth-child(3),
.age-guideline-card:nth-child(3) {
  animation-delay: 0.2s;
}

/* İkonlar ve Görsel Elementler */
.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.step-card:hover::before {
  opacity: 1;
}

.age-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.age-guideline-card:hover .age-group::after {
  transform: scaleX(1);
}

/* Performance optimizations */
* {
  box-sizing: border-box;
}

/* Reading Progress Bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 1000;
  transition: width 0.3s ease;
}

/* Quick Navigation */
.quick-nav {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.quick-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.quick-nav-btn.show {
  opacity: 1;
  transform: translateY(0);
}

.quick-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* Notification System */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 10px;
  background: var(--light-card);
  color: var(--light-text);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--primary);
}

body[data-theme="dark"] .notification {
  background: var(--dark-card);
  color: var(--dark-text);
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  border-left-color: #10b981;
}

.notification.error {
  border-left-color: #ef4444;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==================== PERFORMANS ve ANİMASYONLAR ==================== */

/* Reading Progress Bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 1000;
  transition: width 0.3s ease;
}

/* Quick Navigation */
.quick-nav {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.quick-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.quick-nav-btn.show {
  opacity: 1;
  transform: translateY(0);
}

.quick-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* Notification System */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 10px;
  background: var(--light-card);
  color: var(--light-text);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--primary);
}

body[data-theme="dark"] .notification {
  background: var(--dark-card);
  color: var(--dark-text);
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  border-left-color: #10b981;
}

.notification.error {
  border-left-color: #ef4444;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Age Guidelines Section devamı */
.age-guideline-card {
  background: var(--light-card);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--light-border);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

body[data-theme="dark"] .age-guideline-card {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

.age-guideline-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.age-group {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.age-content h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.age-description {
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

body[data-theme="dark"] .age-description {
  color: var(--dark-text);
}

.age-tips {
  background: var(--light-bg-secondary);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

body[data-theme="dark"] .age-tips {
  background: var(--dark-bg-secondary);
}

.age-tips h4 {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.age-tips ul {
  list-style: none;
  padding: 0;
}

.age-tips li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  color: var(--light-text-secondary);
  line-height: 1.5;
}

body[data-theme="dark"] .age-tips li {
  color: var(--dark-text-secondary);
}

.age-tips li::before {
  content: '💡';
  position: absolute;
  left: 0;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .privacy-steps-section,
  .age-guidelines-section {
    margin: 40px 0;
  }
  
  .steps-grid,
  .age-guidelines-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .step-card,
  .age-guideline-card {
    padding: 20px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .step-content h3,
  .age-content h3 {
    font-size: 1.2rem;
  }
  
  .step-description,
  .age-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .step-card,
  .age-guideline-card {
    padding: 15px;
  }
  
  .step-activities,
  .step-script,
  .age-tips {
    padding: 15px;
  }
}

/* Animasyonlar */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-card,
.age-guideline-card {
  animation: fadeInUp 0.6s ease-out;
}

.step-card:nth-child(2),
.age-guideline-card:nth-child(2) {
  animation-delay: 0.1s;
}

.step-card:nth-child(3),
.age-guideline-card:nth-child(3) {
  animation-delay: 0.2s;
}

/* İkonlar ve Görsel Elementler */
.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.step-card:hover::before {
  opacity: 1;
}

.age-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.age-guideline-card:hover .age-group::after {
  transform: scaleX(1);
}

/* Lazy loading animasyonları */
.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

.lazy-loaded {
  opacity: 1;
}

/* Scroll animasyonları */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

/* ==================== HAKKIMIZDA SAYFASI STİLLERİ ==================== */

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* About Section */
.about-section {
  margin-bottom: 60px;
}

.about-section h2 {
  color: var(--primary);
  margin-bottom: 30px;
  text-align: center;
  font-size: 2.2rem;
}

.about-section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--light-text);
}

body[data-theme="dark"] .about-section p {
  color: var(--dark-text);
}

/* Mission Vision Grid */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.mission-card,
.vision-card {
  background: var(--light-card);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid var(--light-border);
  transition: all var(--transition-normal);
}

body[data-theme="dark"] .mission-card,
body[data-theme="dark"] .vision-card {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.icon-wrapper {
  font-size: 3rem;
  margin-bottom: 20px;
}

.mission-card h3,
.vision-card h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.mission-card p,
.vision-card p {
  text-align: center;
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
}

body[data-theme="dark"] .mission-card p,
body[data-theme="dark"] .vision-card p {
  color: var(--dark-text);
}

/* Values Section */
.values-section {
  margin: 80px 0;
}

.values-section h2 {
  color: var(--primary);
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.value-card {
  background: var(--light-card);
  padding: 30px 25px;
  border-radius: 15px;
  border: 2px solid var(--light-border);
  transition: all var(--transition-normal);
}

body[data-theme="dark"] .value-card {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.value-card p {
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
}

body[data-theme="dark"] .value-card p {
  color: var(--dark-text);
}

/* What We Do Section */
.what-we-do-section {
  margin: 80px 0;
}

.what-we-do-section h2 {
  color: var(--primary);
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-item {
  background: var(--light-card);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid var(--light-border);
  transition: all var(--transition-normal);
}

body[data-theme="dark"] .service-item {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.service-item h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-item p {
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
}

body[data-theme="dark"] .service-item p {
  color: var(--dark-text);
}

/* Team Section */
.team-section {
  margin: 80px 0;
}

.team-section h2 {
  color: var(--primary);
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.team-member {
  background: var(--light-card);
  padding: 35px 30px;
  border-radius: 20px;
  border: 2px solid var(--light-border);
  transition: all var(--transition-normal);
  text-align: center;
}

body[data-theme="dark"] .team-member {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.team-member h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.team-member .role {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.team-member p {
  color: var(--light-text);
  line-height: 1.6;
  margin: 0;
}

body[data-theme="dark"] .team-member p {
  color: var(--dark-text);
}

/* Certification Badges */
.certification-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 15px 0;
  justify-content: center;
}

.badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.badge.stem {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary);
}

.badge.child-dev {
  background: #e8f5e8;
  color: #2e7d32;
  border-color: #4caf50;
}

body[data-theme="dark"] .badge.stem {
  background: var(--primary-dark);
  color: white;
  border-color: var(--primary);
}

body[data-theme="dark"] .badge.child-dev {
  background: #1b5e20;
  color: #a5d6a7;
  border-color: #4caf50;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 60px 30px;
  border-radius: 20px;
  text-align: center;
  margin: 80px 0;
}

.cta-content h2 {
  color: white;
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-text {
  color: white !important;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 30px 0 !important;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta-btn {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.cta-btn.primary {
  background: white;
  color: var(--primary);
}

.cta-btn.primary:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-btn.secondary:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-2px);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .about-section h2,
  .values-section h2,
  .what-we-do-section h2,
  .team-section h2 {
    font-size: 1.8rem;
  }
  
  .mission-vision-grid,
  .values-grid,
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .mission-card,
  .vision-card,
  .value-card,
  .service-item,
  .team-member {
    padding: 25px 20px;
  }
  
  .cta-section {
    padding: 40px 20px;
    margin: 60px 0;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .about-section,
  .values-section,
  .what-we-do-section,
  .team-section {
    margin: 50px 0;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  
  .certification-badges {
    justify-content: center;
  }
  
  .badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
}

.certification-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 15px 0;
  justify-content: center;
}

.badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.badge.stem {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary);
}

.badge.child-dev {
  background: #e8f5e8;
  color: #2e7d32;
  border-color: #4caf50;
}

.badge.trainer {
  background: #fff3e0;
  color: #ef6c00;
  border-color: #ff9800;
}

body[data-theme="dark"] .badge.stem {
  background: var(--primary-dark);
  color: white;
  border-color: var(--primary);
}

body[data-theme="dark"] .badge.child-dev {
  background: #1b5e20;
  color: #a5d6a7;
  border-color: #4caf50;
}

body[data-theme="dark"] .badge.trainer {
  background: #e65100;
  color: #ffcc80;
  border-color: #ff9800;
}

/* ==================== YENİ BLOG SİSTEMİ ==================== */

/* Ana Layout */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.main-content {
  min-width: 0; /* Flexbox overflow fix */
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background: var(--light-card);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  border: 2px solid var(--light-border);
}

body[data-theme="dark"] .sidebar-widget {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

.sidebar-widget h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Popüler Yazılar */
.popular-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popular-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--light-text);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

body[data-theme="dark"] .popular-item {
  color: var(--dark-text);
}

.popular-item:hover {
  background: var(--light-bg-secondary);
  border-color: var(--primary);
  transform: translateX(5px);
}

body[data-theme="dark"] .popular-item:hover {
  background: var(--dark-bg-secondary);
}

.popular-rank {
  background: var(--primary);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
}

.popular-title {
  font-size: 0.9rem;
  line-height: 1.4;
  flex: 1;
}

/* Kategoriler */
.category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--light-text);
  transition: all 0.3s ease;
  border: 1px solid var(--light-border);
}

body[data-theme="dark"] .category-item {
  color: var(--dark-text);
  border-color: var(--dark-border);
}

.category-item:hover {
  background: var(--primary);
  color: white;
  transform: translateX(5px);
}

.category-name {
  font-size: 0.95rem;
}

.category-count {
  background: rgba(255,255,255,0.2);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
}

/* Arama */
.search-container {
  display: flex;
  gap: 8px;
}

.search-input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid var(--light-border);
  border-radius: 10px;
  background: var(--light-bg);
  color: var(--light-text);
  font-size: 0.9rem;
}

body[data-theme="dark"] .search-input {
  background: var(--dark-bg);
  color: var(--dark-text);
  border-color: var(--dark-border);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
}

.search-btn {
  padding: 12px;
  background: var(--primary);
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

/* Kategori Filtreleri */
.category-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--light-card);
  border-radius: 15px;
  border: 2px solid var(--light-border);
}

body[data-theme="dark"] .category-filters {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--light-border);
  background: transparent;
  color: var(--light-text);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
}

body[data-theme="dark"] .filter-btn {
  border-color: var(--dark-border);
  color: var(--dark-text);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Load More Butonu */
.load-more-container {
  text-align: center;
  margin: 50px 0 30px;
}

.load-more-btn {
  padding: 15px 30px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

.load-more-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.load-more-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.load-more-btn:hover svg {
  transform: translateY(2px);
}

/* Section Title */
.section-title {
  color: var(--primary);
  margin-bottom: 30px;
  font-size: 1.8rem;
  text-align: center;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
  .main-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .sidebar {
    position: static;
    order: 2;
  }
  
  .main-content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .category-filters {
    justify-content: center;
    padding: 15px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .sidebar-widget {
    padding: 20px;
  }
  
  .search-container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .category-filters {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 200px;
  }
  
  .popular-item {
    flex-direction: column;
    gap: 8px;
  }
  
  .load-more-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==================== YOL ARKADAŞI TEMA ==================== */

/* Journey CTA Section */
.journey-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 80px 0;
  margin: 60px 0 0;
  text-align: center;
}

.journey-cta .cta-content h2 {
  color: white;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.journey-cta .cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.journey-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Yol Arkadaşı Mesajı */
.journey-message {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.journey-message h3 {
  color: white !important;
}

.message-content p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 15px;
}

.signature {
  text-align: right;
  font-weight: 600;
  color: white;
  font-size: 0.9rem;
}

/* Footer Brand */
.footer-brand {
  text-align: center;
  margin-bottom: 20px;
}

.footer-brand h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.footer-brand p {
  color: var(--light-text);
  margin-bottom: 5px;
}

body[data-theme="dark"] .footer-brand p {
  color: var(--dark-text);
}

.footer-tagline {
  font-style: italic;
  color: var(--primary) !important;
  font-weight: 600;
}

/* Yol Temalı Butonlar */
.cta-btn.primary {
  background: white;
  color: var(--primary);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-btn.primary:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn.secondary:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-2px);
}

/* Yol Rehberi Kartları */
.read-more {
  background: var(--primary);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid var(--primary);
}

.read-more:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .journey-cta {
    padding: 60px 20px;
  }
  
  .journey-cta .cta-content h2 {
    font-size: 2rem;
  }
  
  .journey-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn.primary,
  .cta-btn.secondary {
    width: 200px;
    text-align: center;
  }
}

/* style.css dosyasına ekle */
.card {
    transition: box-shadow 0.3s ease;
}

.filter-btn {
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

/* style.css dosyasına en alta ekle */

/* Filtreleme sistemi için yeni stiller */
.card {
    transition: all 0.3s ease !important;
}

.card[style*="opacity: 0.3"] {
    pointer-events: none !important;
}

.card[style*="opacity: 0.3"] .read-more {
    pointer-events: none !important;
    background: #ccc !important;
    color: #666 !important;
}

/* Filtre butonları için aktif durum */
.filter-btn.active {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3) !important;
}

/* Kaydırma vurgulama efekti */
.card-highlight {
    animation: highlightPulse 2s ease-in-out;
}

@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 3px #4facfe, 0 10px 30px rgba(0,0,0,0.2);
        transform: translateY(-5px);
    }
    70% {
        box-shadow: 0 0 0 3px #4facfe, 0 10px 30px rgba(0,0,0,0.2);
        transform: translateY(-5px);
    }
    100% {
        box-shadow: 0 4px 12px rgba(0,0,0,0.10);
        transform: translateY(0);
    }
}

/* Filtrelenmiş kartlar için görsel stil */
.card-filtered {
    opacity: 0.3 !important;
    transform: translateY(10px) !important;
    pointer-events: none !important;
}

.card-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

/* DARK MODE STYLES */
body.dark-mode {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
}

body.dark-mode .container,
body.dark-mode .card,
body.dark-mode .sidebar-widget,
body.dark-mode .navbar {
  background-color: #1e1e1e;
  color: #ffffff;
  border-color: #333;
}

body.dark-mode .card {
  background: #2d2d2d;
  border: 1px solid #444;
}

body.dark-mode .header,
body.dark-mode .hero {
  background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
}

body.dark-mode .filter-btn {
  background: #333;
  color: #fff;
  border: 1px solid #555;
}

body.dark-mode .filter-btn.active {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}

body.dark-mode .input-group input {
  background: #333;
  color: #fff;
  border-color: #555;
}

body.dark-mode footer {
  background: #1a1a1a;
  color: #fff;
}

/* KAYDIRMA SORUNU İÇİN EK CSS */
.card {
  transition: all 0.3s ease !important;
}

.filter-btn {
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

/* Butonların sayfa başına gitmesini engelle */
.filter-btn {
  position: relative;
  z-index: 10;
}

/* Filtrelenmiş kartlar için stil */
.card[style*="opacity: 0.3"] {
  pointer-events: none;
}

.card[style*="opacity: 0.3"] .read-more {
  pointer-events: none;
  background: #ccc !important;
  color: #666 !important;
}

/* Abone Formu Stilleri */
.subscribe-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.subscribe-modal.show {
  display: flex;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #666;
}

.modal-header {
  text-align: center;
  margin-bottom: 25px;
}

.modal-header h2 {
  color: #333;
  margin-bottom: 10px;
  font-size: 24px;
}

.modal-header p {
  color: #666;
  font-size: 16px;
}

.input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.input-group input {
  flex: 1;
  padding: 15px;
  border: 2px solid #e1e5ee;
  border-radius: 10px;
  font-size: 16px;
}

.input-group input:focus {
  border-color: #4facfe;
  outline: none;
}

.subscribe-btn {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s;
  white-space: nowrap;
  min-width: 140px;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
}

.thankyou {
  display: none;
  text-align: center;
  color: #4CAF50;
  font-weight: 600;
  margin-top: 15px;
}

/* Dark Mode için */
body.dark-mode .modal-content {
  background: #2d2d2d;
  color: white;
}

body.dark-mode .modal-header h2 {
  color: white;
}

body.dark-mode .modal-header p {
  color: #ccc;
}

body.dark-mode .input-group input {
  background: #333;
  color: white;
  border-color: #555;
}


/* ===== FOOTER GÜNCELLEMELERİ ===== */

/* Footer Ana Stilleri */
footer {
    background: linear-gradient(135deg, #2c3e50, #1a2530);
    color: #ecf0f1;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Marka Bölümü */
.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ecf0f1;
    font-weight: 700;
}

.footer-brand p {
    color: #bdc3c7;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-tagline {
    font-style: italic;
    color: #3498db !important;
    font-weight: 500;
}

/* Footer İletişim Bölümü */
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ecf0f1;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #3498db;
}

.footer-contact p {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 14px;
}

/* Sosyal Medya Butonları */
.social-modern {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    background: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.social-btn svg {
    width: 24px;
    height: 24px;
    fill: #ecf0f1;
}

/* Copyright */
.copyright {
    text-align: center;
    color: #bdc3c7;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    grid-column: 1 / -1;
}

/* Dark Mode Footer */
body.dark-mode footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e) !important;
}

body.dark-mode .footer-brand h3,
body.dark-mode .footer-contact h4 {
    color: #ffffff;
}

body.dark-mode .footer-brand p,
body.dark-mode .footer-contact p {
    color: #cccccc;
}

body.dark-mode .social-btn {
    background: rgba(255, 255, 255, 0.15);
}

body.dark-mode .social-btn:hover {
    background: #4facfe;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-contact h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    footer {
        padding: 40px 0 20px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-brand h3 {
        font-size: 20px;
    }
    
    .footer-contact h4 {
        font-size: 16px;
    }
}

/* ===== POPÜLER REHBERLER EMOJİ GÜNCELLEMESİ ===== */
.sidebar-widget.popular-posts h3 {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== İLETİŞİM FORMU METNİ STİLLERİ ===== */
.contact-info {
    margin-top: 20px;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
}

/* Dark mode için iletişim metni */
body.dark-mode .contact-info {
    color: #bdc3c7;
}

/* ===== MEVCUT STİLLERİ GÜNCELLEME ===== */

/* Eğer mevcut footer stilleriniz varsa, bunları override etmek için */
.footer-content .footer-section {
    margin-bottom: 0;
}

/* Grid layout için ek düzenlemeler */
.footer-content > * {
    margin-bottom: 0;
}

/* Sosyal medya butonları için ek stiller */
.social-modern .social-btn.youtube:hover {
    background: #ff0000;
}

/* Hover efektleri */
.footer-brand h3:hover,
.footer-contact h4:hover {
    color: #3498db;
    transition: color 0.3s ease;
}

/* İletişim formu metni için ek stiller */
.modal-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
}

body.dark-mode .modal-header p {
    color: #ccc;
}

/* Form başarı mesajı */
.thankyou {
    display: none;
    text-align: center;
    color: #4CAF50;
    font-weight: 600;
    margin-top: 15px;
    padding: 10px;
    background: #f8fff8;
    border-radius: 8px;
    border: 1px solid #4CAF50;
}

body.dark-mode .thankyou {
    background: #1e3a1e;
    color: #a8e6a8;
    border-color: #4CAF50;
}

/* ===== TÜM SAYFALAR İÇİN ORTAK FOOTER ===== */
footer {
    background: linear-gradient(135deg, #2c3e50, #1a2530);
    color: #ecf0f1;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ecf0f1;
    font-weight: 700;
}

.footer-brand p {
    color: #bdc3c7;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-tagline {
    font-style: italic;
    color: #3498db !important;
    font-weight: 500;
}

.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ecf0f1;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #3498db;
}

.footer-contact p {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 14px;
}

.social-modern {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    background: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.social-btn svg {
    width: 24px;
    height: 24px;
    fill: #ecf0f1;
}

.copyright {
    text-align: center;
    color: #bdc3c7;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    grid-column: 1 / -1;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-contact h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    footer {
        padding: 40px 0 20px;
    }
}

/* ===== POST SAYFALARI İÇİN FOOTER STİLLERİ ===== */

/* Post sayfalarında footer için ek stiller */
.post-content + footer {
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Post sayfalarında footer içeriği için responsive düzenlemeler */
@media (max-width: 768px) {
    .post-content + footer .footer-content {
        text-align: center;
        padding: 0 15px;
    }
    
    .post-content + footer .footer-brand h3 {
        font-size: 22px;
    }
    
    .post-content + footer .footer-contact h4 {
        font-size: 16px;
    }
}

/* Post sayfalarında footer için özel boşluk ayarları */
.post-template footer {
    background: linear-gradient(135deg, #2c3e50, #1a2530);
    padding: 50px 0 20px;
}

/* Dark mode için post footer stilleri */
body.dark-mode .post-template footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

/* Post sayfalarında footer grid düzeni */
.post-template .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Post sayfalarında marka bölümü */
.post-template .footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ecf0f1;
    font-weight: 700;
}

.post-template .footer-brand p {
    color: #bdc3c7;
    margin-bottom: 10px;
    line-height: 1.6;
}

.post-template .footer-tagline {
    font-style: italic;
    color: #3498db !important;
    font-weight: 500;
}

/* Post sayfalarında iletişim bölümü */
.post-template .footer-contact h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ecf0f1;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.post-template .footer-contact h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #3498db;
}

.post-template .footer-contact p {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 14px;
}

/* Post sayfalarında sosyal medya */
.post-template .social-modern {
    display: flex;
    justify-content: center;
    align-items: center;
}

.post-template .social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.post-template .social-btn:hover {
    background: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.post-template .social-btn svg {
    width: 24px;
    height: 24px;
    fill: #ecf0f1;
}

/* Post sayfalarında copyright */
.post-template .copyright {
    text-align: center;
    color: #bdc3c7;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    grid-column: 1 / -1;
}

/* Post sayfaları için responsive footer */
@media (max-width: 768px) {
    .post-template .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .post-template .footer-contact h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .post-template footer {
        padding: 40px 0 20px;
    }
}

/* Eğer post sayfalarında özel container class'ı varsa */
.post-container + footer {
    margin-top: 60px;
}

/* Post sayfalarında footer için ek hover efektleri */
.post-template .footer-brand h3:hover,
.post-template .footer-contact h4:hover {
    color: #3498db;
    transition: color 0.3s ease;
}

/* YouTube butonu için özel hover efekti */
.post-template .social-btn.youtube:hover {
    background: #ff0000;
}

/* Post sayfalarında footer için ek padding ayarları */
@media (max-width: 480px) {
    .post-template .footer-content {
        padding: 0 15px;
    }
    
    .post-template .footer-brand h3 {
        font-size: 20px;
    }
    
    .post-template .footer-contact h4 {
        font-size: 16px;
    }
    
    .post-template footer {
        padding: 30px 0 15px;
    }
}

/* ===== TÜM SAYFALAR İÇİN ORTAK FOOTER STİLLERİ ===== */
footer {
    background: linear-gradient(135deg, #2c3e50, #1a2530);
    color: #ecf0f1;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ecf0f1;
    font-weight: 700;
}

.footer-brand p {
    color: #bdc3c7;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-tagline {
    font-style: italic;
    color: #3498db !important;
    font-weight: 500;
}

.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ecf0f1;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #3498db;
}

.footer-contact p {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 14px;
}

.social-modern {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    background: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.social-btn.youtube:hover {
    background: #ff0000;
}

.social-btn svg {
    width: 24px;
    height: 24px;
    fill: #ecf0f1;
}

.copyright {
    text-align: center;
    color: #bdc3c7;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    grid-column: 1 / -1;
}

/* Dark Mode Footer */
body.dark-mode footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e) !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-contact h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    footer {
        padding: 40px 0 20px;
    }
}

/* ===== POST SAYFALARI İÇİN DİL DEĞİŞTİRME BUTONLARI ===== */
.language-toggle {
  display: flex;
  gap: 10px;
  margin: 25px 0;
  justify-content: center;
}

.lang-btn {
  padding: 10px 20px;
  border: 2px solid #3498db;
  background: white;
  color: #3498db;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}

.lang-btn.active {
  background: #3498db;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.lang-btn:hover {
  transform: translateY(-2px);
}

.tr-content, .en-content {
  display: none;
  animation: fadeIn 0.5s ease-in;
}

.tr-content.active, .en-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== POST İÇERİK STİLLERİ ===== */
.post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.7;
  color: #2c3e50;
}

.post-header {
  text-align: center;
  margin-bottom: 50px;
  border-bottom: 3px solid #3498db;
  padding-bottom: 30px;
}

.post-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.3;
}

.post-subtitle {
  font-size: 1.4rem;
  color: #7f8c8d;
  font-weight: 400;
  margin-bottom: 20px;
  font-style: italic;
}

.post-meta {
  color: #95a5a6;
  font-size: 0.9rem;
}

.post-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bilingual-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  border-left: 5px solid #3498db;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.stat-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
  border-top: 4px solid #3498db;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #3498db;
  margin-bottom: 10px;
  display: block;
}

.solution-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.solution-list li {
  background: white;
  margin: 15px 0;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #2ecc71;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.solution-list li:hover {
  transform: translateX(10px);
}

.solution-number {
  display: inline-block;
  background: #2ecc71;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  margin-right: 10px;
  font-weight: bold;
}

/* Dark mode post stilleri */
body.dark-mode .post-content {
  color: #ecf0f1;
}

body.dark-mode .post-title {
  color: #ecf0f1;
}

body.dark-mode .bilingual-section {
  background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
}

body.dark-mode .stat-card,
body.dark-mode .solution-list li {
  background: #34495e;
  color: #ecf0f1;
}

/* Responsive post stilleri */
@media (max-width: 768px) {
  .post-title {
    font-size: 2rem;
  }
  
  .post-subtitle {
    font-size: 1.2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .bilingual-section {
    padding: 20px;
  }
}