
/* ============================================================
   MISSING CLASSES — Added for full compatibility
   ============================================================ */

/* atk-fade-up — entrance animation for cards/sections */
.atk-fade-up {
  animation: atk-fadeup 0.5s ease both;
}
@keyframes atk-fadeup {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.atk-fade-up:nth-child(1)  { animation-delay: 0.05s; }
.atk-fade-up:nth-child(2)  { animation-delay: 0.10s; }
.atk-fade-up:nth-child(3)  { animation-delay: 0.15s; }
.atk-fade-up:nth-child(4)  { animation-delay: 0.20s; }
.atk-fade-up:nth-child(5)  { animation-delay: 0.25s; }
.atk-fade-up:nth-child(6)  { animation-delay: 0.30s; }
.atk-fade-up:nth-child(7)  { animation-delay: 0.35s; }
.atk-fade-up:nth-child(8)  { animation-delay: 0.40s; }
.atk-fade-up:nth-child(9)  { animation-delay: 0.45s; }
.atk-fade-up:nth-child(10) { animation-delay: 0.50s; }
.atk-fade-up:nth-child(n+11) { animation-delay: 0.55s; }

/* atk-ad-leaderboard */
.atk-ad-leaderboard {
  height: 90px;
  max-width: 728px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* atk-tool-card — used in decay checker & prompt analyzer */
.atk-tool-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}
body.light-theme .atk-tool-card {
  background: #ffffff;
  border-color: #e2e6f0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* atk-tool-desc — subtitle below tool title (decay/prompt pages) */
.atk-tool-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 680px;
}

/* atk-char-count — character count display */
.atk-char-count {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: right;
  margin-top: 6px;
}

/* atk-related-tools — wrapper for related tool links */
.atk-related-tools {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.atk-related-tools .atk-related-title,
.atk-related-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}

/* atk-related-item — individual related tool pill */
.atk-related-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 14px;
  margin: 4px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s;
}
.atk-related-item:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,212,255,0.06);
}
body.light-theme .atk-related-item {
  background: #f0f2f8;
  border-color: #d8dce8;
  color: #0f0f1a;
}
body.light-theme .atk-related-item:hover {
  border-color: #0099cc;
  color: #0099cc;
  background: rgba(0,153,204,0.06);
}
.atk-related-icon { font-size: 1rem; }
.atk-related-name { font-size: 0.8rem; }

/* atk-faq-section — homepage FAQ wrapper */
.atk-faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* atk-blog-card — blog post card */
.atk-blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.atk-blog-card:hover {
  border-color: rgba(0,212,255,0.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,212,255,0.08);
}
body.light-theme .atk-blog-card {
  background: #ffffff;
  border-color: #e2e6f0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
body.light-theme .atk-blog-card:hover {
  border-color: #0099cc;
  box-shadow: 0 8px 24px rgba(0,153,204,0.1);
}

/* atk-blog-tag */
.atk-blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* atk-blog-title */
.atk-blog-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 10px;
}

/* atk-blog-desc */
.atk-blog-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  flex-grow: 1;
}

/* atk-blog-meta */
.atk-blog-meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
body.light-theme .atk-blog-meta {
  border-top-color: #e8eaf2;
}

/* ============================================================
   PERFORMANCE & CLS FIXES
   ============================================================ */
/* Prevent layout shift from fonts */
@font-face {
  font-display: swap;
}
/* Ad placeholder fixed height - prevents CLS */
.atk-ad {
  min-height: 90px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
/* Image optimization */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Prevent invisible text during font load */
.atk-hero-title, .atk-section-title, h1, h2, h3 {
  font-display: swap;
}
/* Better touch targets for mobile */
button, a, input, select, textarea {
  touch-action: manipulation;
}
/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* Print styles */
@media print {
  .atk-nav, .atk-footer, .atk-ad, .atk-btn-primary {
    display: none !important;
  }
  body { color: #000; background: #fff; }
}
/* ============================================================
   AITextKit - Global Stylesheet
   Version: 2.0 | 2026
   ============================================================ */

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Mulish:wght@300;400;500;600&display=swap');

/* CSS VARIABLES */
:root {
  --bg: #0a0a0f;
  --surface: #13131a;
  --surface2: #1c1c27;
  --border: #2a2a3d;
  --accent: #00d4ff;
  --accent2: #7c3aed;
  --accent3: #f59e0b;
  --text: #f0f0ff;
  --muted: #8888aa;
  --success: #10b981;
  --danger: #ef4444;
  --card: #16161f;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Mulish', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* SCROLLBAR */
* { scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.atk-nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 1000;
  width: 90%; max-width: 1000px;
  background: linear-gradient(135deg, rgba(25, 25, 35, 0.75), rgba(15, 15, 20, 0.85));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
  padding: 0 16px 0 20px;
  transition: all 0.3s ease;
}
.atk-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
  width: 100%;
}
.atk-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.atk-logo-dot {
  width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px var(--accent); }
  50% { box-shadow: 0 0 20px var(--accent), 0 0 40px rgba(0,212,255,0.3); }
}
.atk-nav-links { display: flex; gap: 4px; align-items: center; }
.atk-nav-link {
  color: var(--text); text-decoration: none;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  padding: 8px 16px; border-radius: 30px;
  transition: all 0.2s; 
  display: inline-flex; align-items: center;
  opacity: 0.65;
}
.atk-nav-link:hover { opacity: 1; transform: translateY(-1px); }
.atk-nav-link.active { opacity: 1; color: var(--accent); }
.atk-nav-cta {
  background: linear-gradient(135deg, #111, #222); color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 24px; border-radius: 30px;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-decoration: none; transition: all 0.2s;
  display: inline-flex; align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  margin-left: 8px;
}
.atk-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); background: linear-gradient(135deg, #222, #333); }

/* Mobile hamburger */
.atk-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; min-height: 44px;
  justify-content: center;
}
.atk-hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.2s; }
.atk-mobile-menu {
  display: none; position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(10,10,15,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px; z-index: 999;
  flex-direction: column; gap: 4px;
}
.atk-mobile-menu.open { display: flex; }
.atk-mobile-menu a {
  color: var(--muted); text-decoration: none;
  padding: 12px 16px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500;
  transition: all 0.2s; min-height: 44px;
  display: flex; align-items: center;
}
.atk-mobile-menu a:hover { color: var(--text); background: var(--surface2); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.atk-hero {
  padding: 130px 24px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.atk-hero::before {
  content: ''; position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.atk-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--accent); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 30px; margin-bottom: 24px;
}
.atk-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 20px;
}
.atk-hero h1 .gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.atk-hero p {
  color: var(--muted); font-size: 1.05rem;
  max-width: 560px; margin: 0 auto 40px;
  line-height: 1.7; font-weight: 300;
}

/* Stats */
.atk-stats {
  display: flex; justify-content: center;
  gap: 40px; flex-wrap: wrap; margin-bottom: 50px;
}
.atk-stat { text-align: center; }
.atk-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem; font-weight: 800; color: var(--accent);
}
.atk-stat-label {
  font-size: 0.72rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px;
}

/* Trust bar */
.atk-trust {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}
.atk-trust-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; justify-content: center;
  gap: 32px; flex-wrap: wrap; align-items: center;
}
.atk-trust-item { text-align: center; }
.atk-trust-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem; font-weight: 800; color: var(--accent);
  display: block;
}
.atk-trust-label {
  font-size: 0.68rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px;
}

/* ============================================================
   TOOLS GRID
   ============================================================ */
.atk-section { padding: 48px 24px; }
.atk-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem; font-weight: 700;
  text-align: center; margin-bottom: 8px;
}
.atk-section-sub {
  color: var(--muted); text-align: center;
  margin-bottom: 36px; font-size: 0.9rem;
}

/* TOOL FILTER TABS */
.atk-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 40px;
  max-width: 1000px;
  overflow-x: auto;
  padding-bottom: 8px; /* For scrollbar */
  -webkit-overflow-scrolling: touch;
}
.atk-filter-tabs::-webkit-scrollbar {
  height: 4px;
}
.atk-filter-tabs::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
.atk-filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.atk-filter-btn:hover {
  border-color: rgba(0,212,255,0.4);
  color: var(--text);
}
.atk-filter-btn.active {
  background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(124,58,237,0.1));
  border: 1px solid rgba(0,212,255,0.4);
  color: var(--text);
  box-shadow: 0 0 15px rgba(0,212,255,0.1);
}
@media (max-width: 768px) {
  .atk-filter-tabs {
    justify-content: flex-start;
    padding: 0 16px 12px;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .atk-filter-btn {
    padding: 8px 14px;
    font-size: 0.82rem;
    flex: 0 0 auto;
  }
}
.atk-fade-up-in {
  animation: tool-fade-up 0.4s ease forwards;
}
@keyframes tool-fade-up {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.atk-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.atk-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  cursor: pointer; transition: all 0.25s;
  position: relative; overflow: hidden;
  text-decoration: none; display: block;
}
.atk-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0; transition: opacity 0.25s;
}
.atk-card:hover {
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.atk-card:hover::before { opacity: 1; }
.atk-card-icon { font-size: 2rem; margin-bottom: 14px; }
.atk-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem; font-weight: 700; margin-bottom: 8px;
  color: var(--text);
}
.atk-card-desc {
  color: var(--muted); font-size: 0.83rem;
  line-height: 1.6; font-weight: 300;
}
.atk-card-tag {
  display: inline-flex; align-items: center;
  margin-top: 14px; font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.5px;
  padding: 3px 10px; border-radius: 20px;
}
.atk-tag-popular { background: rgba(0,212,255,0.1); color: var(--accent); border: 1px solid rgba(0,212,255,0.2); }
.atk-tag-free { background: rgba(16,185,129,0.1); color: var(--success); border: 1px solid rgba(16,185,129,0.2); }
.atk-tag-new { background: rgba(245,158,11,0.1); color: var(--accent3); border: 1px solid rgba(245,158,11,0.2); }

/* ============================================================
   TOOL PAGE
   ============================================================ */
.atk-tool-wrapper {
  max-width: 900px; margin: 0 auto;
  padding: 84px 24px 80px;
}
.atk-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--muted);
  margin-bottom: 28px; flex-wrap: wrap;
}
.atk-breadcrumb a { color: var(--accent); text-decoration: none; }
.atk-breadcrumb a:hover { text-decoration: underline; }
.atk-breadcrumb span { color: var(--border); }

.atk-tool-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.atk-tool-badge {
  font-size: 0.72rem; padding: 4px 12px;
  border-radius: 20px; font-weight: 600; letter-spacing: 0.5px;
}
.atk-badge-green { background: rgba(16,185,129,0.1); color: var(--success); border: 1px solid rgba(16,185,129,0.2); }
.atk-badge-blue { background: rgba(0,212,255,0.1); color: var(--accent); border: 1px solid rgba(0,212,255,0.2); }
.atk-badge-purple { background: rgba(124,58,237,0.1); color: #a78bfa; border: 1px solid rgba(124,58,237,0.2); }

.atk-tool-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.5px; margin-bottom: 12px;
}
.atk-tool-subtitle {
  color: var(--muted); font-size: 0.95rem;
  line-height: 1.7; margin-bottom: 32px;
  max-width: 680px;
}

/* Workspace */
.atk-workspace {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.atk-workspace-header {
  padding: 14px 20px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.atk-workspace-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.atk-workspace-body { padding: 24px; }

/* Inputs */
.atk-input-group { margin-bottom: 20px; }
.atk-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px; display: block;
}
.atk-textarea, .atk-input, .atk-select {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
  color: var(--text);
  font-family: 'Mulish', sans-serif;
  font-size: 16px; /* Prevent iOS zoom */
  line-height: 1.7; outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.atk-textarea { resize: vertical; min-height: 160px; }
.atk-textarea:focus, .atk-input:focus, .atk-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.atk-select { cursor: pointer; }
.atk-select option { background: var(--surface2); }

/* Char counter */
.atk-char-bar { margin-top: 8px; }
.atk-char-track { height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; }
.atk-char-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px; transition: width 0.3s;
  width: 0%;
}
.atk-char-info {
  display: flex; justify-content: space-between;
  font-size: 0.72rem; color: var(--muted); margin-top: 4px;
}

/* Buttons */
.atk-btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0 16px; }
.atk-btn-primary {
  background: linear-gradient(135deg, var(--accent), #0099cc);
  color: #000; border: none;
  padding: 13px 32px; border-radius: 10px;
  font-family: 'Mulish', sans-serif;
  font-size: 0.92rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; gap: 8px;
  min-height: 48px; -webkit-appearance: none;
}
.atk-btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,212,255,0.3);
}
.atk-btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.atk-btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
  padding: 13px 24px; border-radius: 10px;
  font-family: 'Mulish', sans-serif;
  font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
  min-height: 48px; -webkit-appearance: none;
}
.atk-btn-secondary:hover:not(:disabled) {
  border-color: var(--text); background: var(--surface2);
}
.atk-btn-secondary:disabled { opacity: 0.4; cursor: not-allowed; }

/* Output */
.atk-output-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px; display: block;
}
.atk-output {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 18px;
  min-height: 160px; font-size: 0.92rem;
  line-height: 1.8; white-space: pre-wrap;
  color: var(--text); font-weight: 300;
}
.atk-output-placeholder { color: var(--muted); font-style: italic; }

/* Error/Success */
.atk-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171; padding: 12px 16px;
  border-radius: 10px; font-size: 0.85rem;
  margin-bottom: 16px;
}
.atk-success {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  color: #34d399; padding: 12px 16px;
  border-radius: 10px; font-size: 0.85rem;
  margin-bottom: 16px;
}

/* Spinner */
.atk-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(0,0,0,0.3);
  border-top-color: #000;
  border-radius: 50%;
  animation: atk-spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes atk-spin { to { transform: rotate(360deg); } }

/* SEO Content below tool */
.atk-seo-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 36px;
  margin-top: 32px;
}
.atk-seo-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem; font-weight: 700; margin-bottom: 14px;
}
.atk-seo-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem; font-weight: 600;
  margin: 22px 0 10px; color: var(--accent);
}
.atk-seo-content p {
  color: var(--muted); font-size: 0.88rem;
  line-height: 1.8; margin-bottom: 12px;
}

/* Related tools */
.atk-related { margin-top: 32px; }
.atk-related-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700; margin-bottom: 16px;
}
.atk-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.atk-related-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 14px;
  text-decoration: none; display: block;
  transition: all 0.2s; text-align: center;
}
.atk-related-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.atk-related-icon { font-size: 1.4rem; margin-bottom: 6px; }
.atk-related-name {
  font-size: 0.75rem; font-weight: 600;
  color: var(--muted); line-height: 1.3;
}

/* FAQ */
.atk-faq { margin-top: 32px; }
.atk-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.atk-faq-q {
  font-weight: 700; font-size: 0.92rem;
  margin-bottom: 8px; color: var(--text);
}
.atk-faq-a {
  color: var(--muted); font-size: 0.85rem; line-height: 1.7;
}

/* ============================================================
   ROLES SECTION — "Smart Tools for Every Role"
   ============================================================ */
.atk-roles-section {
  padding: 80px 24px;
  background: var(--bg);
  position: relative;
}
body.light-theme .atk-roles-section {
  background: #f4f6fb;
}
.atk-roles-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.atk-roles-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 48px;
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.atk-roles-title-accent {
  /* accent is part of gradient above */
}
.atk-roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(124,58,237,0.15));
  gap: 1px;
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
body.light-theme .atk-roles-grid {
  background: #d8dce8;
  border-color: #d8dce8;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.atk-roles-card {
  padding: 40px;
  background-color: var(--surface);
  text-align: left;
  transition: background 0.3s ease;
}
body.light-theme .atk-roles-card {
  background-color: #ffffff;
}
.atk-roles-card:hover {
  background-color: var(--surface2);
}
body.light-theme .atk-roles-card:hover {
  background-color: #f7f9ff;
}
.atk-roles-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.atk-roles-card-sub {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  opacity: 0.9;
}
.atk-roles-card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
}
/* Remove old icon/link styles */
.atk-roles-card-icon { display: none; }
.atk-roles-card-link { display: none; }
.atk-roles-label { display: none; }

@media (max-width: 768px) {
  .atk-roles-grid { grid-template-columns: 1fr; }
  .atk-roles-card { padding: 28px 22px; }
  .atk-roles-title { margin-bottom: 32px; }
}
@media (max-width: 480px) {
  .atk-roles-card { padding: 22px 18px; }
  .atk-roles-section { padding: 56px 16px; }
}

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */
.atk-proof-bar-wrap {
  padding: 0 24px;
  max-width: 1080px;
  margin: 0 auto 0;
}
.atk-proof-bar {
  background: linear-gradient(135deg, rgba(0,212,255,0.07), rgba(124,58,237,0.07));
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 16px;
  padding: 18px 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.atk-proof-avatars {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.atk-proof-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  margin-left: -9px;
  flex-shrink: 0;
}
.atk-proof-avatars .atk-proof-avatar:first-child { margin-left: 0; }
.atk-proof-avatar-count {
  background: var(--surface2) !important;
  color: var(--muted) !important;
  font-size: 0.58rem !important;
}
.atk-proof-text {
  font-size: 0.88rem;
  color: var(--muted);
  flex: 1;
  min-width: 0;
}
.atk-proof-text strong { color: var(--text); }
.atk-proof-cta {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #000;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.atk-proof-cta:hover { opacity: 0.9; transform: translateY(-1px); }
@media (max-width: 600px) {
  .atk-proof-bar { padding: 16px 18px; justify-content: center; text-align: center; }
  .atk-proof-text { flex: none; width: 100%; text-align: center; }
  .atk-proof-cta { width: 100%; text-align: center; }
}

/* ============================================================
   TESTIMONIALS SECTION — "Why People Love Us"
   ============================================================ */
.atk-testi-section {
  padding: 80px 0;
  background: var(--surface2);
  overflow: hidden;
}
body.light-theme .atk-testi-section {
  background: #eef0f8;
}
.atk-testi-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 48px;
}
.atk-testi-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.atk-testi-accent {
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.atk-testi-sub {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── Marquee scroll ── */
.atk-marquee-container {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
body.light-theme .atk-marquee-container {
  -webkit-mask-image: linear-gradient(to right, #eef0f8 0%, transparent 6%, transparent 94%, #eef0f8 100%);
  mask-image: none;
}
.atk-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-left 40s linear infinite;
  padding: 12px 4px;
}
.atk-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}

/* ── Cards ── */
.atk-marquee-card {
  width: 310px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
body.light-theme .atk-marquee-card {
  background: #ffffff;
  border-color: #e2e6f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.atk-marquee-card:hover {
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 8px 28px rgba(0,212,255,0.1);
  transform: translateY(-2px);
}
body.light-theme .atk-marquee-card:hover {
  border-color: #0099cc;
  box-shadow: 0 8px 28px rgba(0,153,204,0.12);
}
.atk-testi-stars {
  color: #f59e0b;
  font-size: 0.88rem;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.atk-testi-quote {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.8;
  flex-grow: 1;
  margin-bottom: 20px;
}
body.light-theme .atk-testi-quote {
  color: #444466;
}
.atk-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
body.light-theme .atk-testi-author {
  border-top-color: #e8eaf2;
}
.atk-testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.atk-testi-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.atk-testi-role {
  font-size: 0.74rem;
  color: var(--muted);
}

@media (max-width: 600px) {
  .atk-marquee-card { width: 270px; padding: 22px; }
  .atk-marquee-track { animation-duration: 30s; }
  .atk-testi-section { padding: 60px 0; }
}



/* ============================================================
   FOOTER
   ============================================================ */
.atk-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 32px;
}
.atk-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.atk-footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 260px;
}
.atk-footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.atk-footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.atk-footer-col a:hover { color: var(--accent); }
.atk-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.atk-footer-bottom p {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── Social Icons ── */
.atk-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.atk-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
  overflow: hidden;
}
.atk-social-btn:hover {
  border-color: var(--accent);
  background: rgba(0,212,255,0.1);
  color: var(--accent);
  transform: translateY(-2px);
}
.atk-social-btn svg {
  width: 16px !important;
  height: 16px !important;
  fill: currentColor;
  display: block;
  flex-shrink: 0;
}
.atk-social-btn.tw:hover { border-color: #1DA1F2; background: rgba(29,161,242,0.1); color: #1DA1F2; }
.atk-social-btn.ig:hover { border-color: #E1306C; background: rgba(225,48,108,0.1); color: #E1306C; }
.atk-social-btn.yt:hover { border-color: #FF0000; background: rgba(255,0,0,0.1); color: #FF0000; }
.atk-social-btn.fb:hover { border-color: #1877F2; background: rgba(24,119,242,0.1); color: #1877F2; }
.atk-social-btn.li:hover { border-color: #0A66C2; background: rgba(10,102,194,0.1); color: #0A66C2; }

/* Light mode footer */
body.light-theme .atk-social-btn {
  background: #f0f2f8;
  border-color: #e2e6f0;
  color: #5a5a7a;
}
body.light-theme .atk-footer-col a { color: #5a5a7a; }
body.light-theme .atk-footer-col a:hover { color: #0099cc; }
body.light-theme .atk-footer-bottom { border-top-color: #e2e6f0; }

/* Responsive footer */
@media (max-width: 900px) {
  .atk-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .atk-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .atk-footer-bottom { flex-direction: column; text-align: center; }
}

/* THEME TOGGLE */
.atk-theme-wrapper{display:flex;align-items:center;gap:8px;margin-left:4px}
.atk-theme-icon{font-size:0.9rem;cursor:pointer}
.atk-theme-toggle{width:44px;height:24px;background:var(--surface2);border:1px solid var(--border);border-radius:30px;cursor:pointer;position:relative;transition:all 0.3s;display:flex;align-items:center;padding:3px;flex-shrink:0}
.atk-theme-toggle::after{content:'';width:18px;height:18px;border-radius:50%;background:var(--accent);transition:transform 0.3s;box-shadow:0 0 8px rgba(0,212,255,0.5)}
body.light-theme .atk-theme-toggle::after{transform:translateX(20px);background:var(--accent2)}

/* Light mode - workspace (old tool pages) */
body.light-theme .atk-workspace {
  background: #ffffff;
  border-color: #e2e6f0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
body.light-theme .atk-workspace-header {
  background: #f4f6fb;
  border-bottom-color: #e2e6f0;
}
body.light-theme .atk-workspace-body {
  background: #ffffff;
}

/* Light mode - SEO content section */
body.light-theme .atk-seo-content {
  background: #ffffff;
  border-color: #e2e6f0;
}
body.light-theme .atk-seo-content h2 { color: #0f0f1a; }
body.light-theme .atk-seo-content h3 { color: #0099cc; }

/* Light mode - FAQ items */
body.light-theme .atk-faq-item { border-bottom-color: #e2e6f0; }
body.light-theme .atk-faq-q { color: #0f0f1a; }

/* Light mode - related tools */
body.light-theme .atk-related-tools { border-top-color: #e2e6f0; }
body.light-theme .atk-related-card {
  background: #f4f6fb;
  border-color: #e2e6f0;
}
body.light-theme .atk-related-card:hover { border-color: #0099cc; }

/* Light mode - tool cards (homepage grid) */
body.light-theme .atk-card {
  background: #ffffff;
  border-color: #e2e6f0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
body.light-theme .atk-card:hover {
  border-color: #0099cc;
  box-shadow: 0 8px 24px rgba(0,153,204,0.1);
}
body.light-theme .atk-card-title { color: #0f0f1a; }
body.light-theme .atk-card-desc { color: #5a5a7a; }

/* Light mode - badge */
body.light-theme .atk-badge {
  background: rgba(0,153,204,0.08);
  border-color: rgba(0,153,204,0.25);
  color: #0099cc;
}

/* Light mode - output */
body.light-theme .atk-output {
  background: #f4f6fb;
  border-color: #e2e6f0;
  color: #0f0f1a;
}

/* Light mode - buttons */
body.light-theme .atk-btn-secondary {
  color: #0f0f1a;
  border-color: #dde1ed;
}
body.light-theme .atk-btn-secondary:hover:not(:disabled) {
  background: #eef0f8;
  border-color: #0099cc;
}

/* Light mode - breadcrumb */
body.light-theme .atk-breadcrumb a { color: #0099cc; }
body.light-theme .atk-breadcrumb span { color: #5a5a7a; }

/* Light mode - blog section */
body.light-theme .atk-blog-tag { color: #0099cc; }
body.light-theme .atk-blog-title { color: #0f0f1a; }
body.light-theme .atk-blog-desc { color: #5a5a7a; }

/* Light mode - filter tabs */
body.light-theme .atk-filter-btn {
  border-color: #dde1ed;
  color: #5a5a7a;
}
body.light-theme .atk-filter-btn:hover {
  border-color: #0099cc;
  color: #0099cc;
}
body.light-theme .atk-filter-btn.active {
  background: rgba(0,153,204,0.08);
  border-color: rgba(0,153,204,0.35);
  color: #0099cc;
}

/* Light mode - error/success */
body.light-theme .atk-error {
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.25);
  color: #dc2626;
}

/* LIGHT THEME */
body.light-theme{--bg:#f8f9fc;--surface:#ffffff;--surface2:#f0f2f7;--border:#dde1ed;--accent:#0099cc;--accent2:#6d28d9;--text:#0f0f1a;--muted:#5a5a7a;--card:#ffffff}
body.light-theme .atk-nav{background:rgba(248,249,252,0.95)}
body.light-theme .atk-textarea,body.light-theme .atk-input,body.light-theme .atk-select{background:#f0f2f7;color:var(--text)}
body.light-theme .atk-output{background:#f0f2f7}
body.light-theme .atk-mobile-menu{background:rgba(248,249,252,0.98)}
body.theme-transition{transition:background 0.3s,color 0.3s}


/* Stats cards light mode fix */
body.light-theme .atk-stats-section {
  background: #f0f2f7 !important;
}
body.light-theme .atk-stats-card {
  background: #ffffff !important;
  border: 1px solid #dde1ed !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}

/* ============================================================
   SEO CONTENT STYLING
   ============================================================ */
.atk-seo-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  margin: 64px auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
  font-family: inherit;
  color: var(--text);
  max-width: 900px;
}

.atk-seo-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 800;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.atk-seo-content h2:first-child {
  margin-top: 0;
}

/* Gradient Underline for H2 */
.atk-seo-content h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.atk-seo-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 4px solid var(--accent);
}

.atk-seo-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 24px;
}

.atk-seo-content ul, .atk-seo-content ol {
  margin-bottom: 32px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.atk-seo-content li {
  margin-bottom: 10px;
}

.atk-seo-content li strong {
  color: var(--text);
  font-weight: 700;
}

/* FAQs inside SEO */
.atk-seo-content .atk-faq {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.atk-seo-content .atk-faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.atk-seo-content .atk-faq-item:hover {
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transform: translateY(-2px);
}

.atk-seo-content .atk-faq-q {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
}

.atk-seo-content .atk-faq-a {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  border-top: 1px dashed var(--border);
  padding-top: 16px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .atk-seo-content {
    padding: 28px 20px;
    margin: 40px auto;
    border-radius: 16px;
  }
}

/* ============================================================
   ABOUT PAGE RE-DESIGN
   ============================================================ */
.atk-about-wrapper {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 40%),
              var(--bg);
  padding: 120px 24px 80px;
  display: flex;
  justify-content: center;
}

body.light-theme .atk-about-wrapper {
  background: radial-gradient(circle at 10% 20%, rgba(0, 153, 204, 0.06) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(109, 40, 217, 0.06) 0%, transparent 40%),
              var(--bg);
}

.atk-about-container {
  max-width: 860px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 80px 80px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.atk-about-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.atk-about-header {
  text-align: center;
  margin-bottom: 72px;
}

.atk-about-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.atk-about-title span {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.atk-about-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.atk-about-section {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}

.atk-about-section:last-child {
  margin-bottom: 0;
}

/* Subtle separator between sections */
.atk-about-section:not(:first-child)::before {
  content: '✦';
  display: block;
  font-size: 1.2rem;
  color: var(--border);
  margin-bottom: 64px;
}

.atk-about-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.atk-about-text {
  font-size: 1.05rem;
  line-height: 2; /* Highly readable editorial spacing */
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 24px;
  font-weight: 400;
}

.atk-about-text:last-child {
  margin-bottom: 0;
}

/* Highlight tags for tools */
.atk-about-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.atk-about-tool-tag {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05));
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.atk-about-tool-tag:hover {
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.05);
  color: var(--accent);
}

@media (max-width: 768px) {
  .atk-about-container {
    padding: 56px 24px;
  }
  .atk-about-text {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE IMPROVEMENTS
   ============================================================ */

/* MOBILE NAV - TABLET & BELOW */
@media (max-width: 768px) {
  .atk-nav {
    width: 95%;
    top: 12px;
    padding: 0 12px;
  }
  
  .atk-nav-inner {
    height: 56px;
  }
  
  .atk-logo {
    font-size: 1.1rem;
  }
  
  .atk-nav-links {
    display: none;
  }
  
  .atk-hamburger {
    display: flex;
  }
  
  .atk-nav-cta {
    display: none;
  }
}

/* HAMBURGER MENU ANIMATION - TABLET & BELOW */
@media (max-width: 768px) {
  .atk-hamburger {
    animation: slideInRight 0.3s ease-out;
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .atk-hamburger span {
    transition: all 0.3s ease;
    background: var(--text);
  }
  
  .atk-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }
  
  .atk-hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .atk-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }
  
  .atk-mobile-menu {
    top: 56px;
    animation: slideDown 0.3s ease-out;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .atk-mobile-menu a {
    min-height: 48px;
    font-weight: 600;
    border-radius: 10px;
    margin-bottom: 4px;
  }
  
  .atk-mobile-menu a:active {
    background: var(--surface2);
  }
}

/* THEME TOGGLE - MOBILE */
@media (max-width: 768px) {
  .atk-theme-wrapper {
    margin-left: 8px;
  }
  
  .atk-theme-icon {
    font-size: 1rem;
  }
}

/* HERO SECTION - MOBILE */
@media (max-width: 768px) {
  .atk-hero {
    padding: 100px 20px 40px;
  }
  
  .atk-hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    margin-bottom: 16px;
  }
  
  .atk-hero p {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 32px;
  }
  
  .atk-badge {
    font-size: 0.65rem;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .atk-hero {
    padding: 80px 14px 32px;
  }
  
  .atk-hero h1 {
    font-size: clamp(1.6rem, 4.5vw, 2rem);
  }
  
  .atk-hero p {
    font-size: 0.9rem;
  }
}

/* STATS - MOBILE */
@media (max-width: 768px) {
  .atk-stats {
    gap: 20px;
    padding: 0 8px;
  }
  
  .atk-stat-num {
    font-size: 1.5rem;
  }
  
  .atk-stat-label {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .atk-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 6px;
    margin-bottom: 28px;
    padding: 0 6px;
    align-items: start;
  }
  
  .atk-stat {
    width: 100%;
    min-width: 0;
  }

  .atk-stats .atk-stat:nth-child(4) {
    grid-column: 2;
  }
  
  .atk-stat-num {
    font-size: 1.3rem;
  }
  
  .atk-stat-label {
    font-size: 0.62rem;
  }
}

/* TRUST BAR - MOBILE */
@media (max-width: 768px) {
  .atk-trust {
    padding: 14px 0;
    overflow-x: hidden;
  }
  
  .atk-trust-inner {
    gap: 16px;
    padding: 0 12px;
  }
}

@media (max-width: 480px) {
  .atk-trust {
    padding: 12px 8px;
  }
  
  .atk-trust-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
    padding: 0 8px;
    align-items: start;
  }
  
  .atk-trust-item {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .atk-trust-inner .atk-trust-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }
  
  .atk-trust-num {
    font-size: 1.2rem;
  }
  
  .atk-trust-label {
    font-size: 0.6rem;
  }
}

/* SECTION TITLES - MOBILE */
@media (max-width: 768px) {
  .atk-section {
    padding: 40px 20px;
  }
  
  .atk-section-title {
    font-size: 1.5rem;
  }
  
  .atk-section-sub {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .atk-section {
    padding: 32px 16px;
  }
  
  .atk-section-title {
    font-size: 1.3rem;
  }
}

/* TOOL GRID - MOBILE */
@media (max-width: 768px) {
  .atk-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
  
  .atk-card {
    padding: 20px;
  }
  
  .atk-card-icon {
    font-size: 1.8rem;
  }
  
  .atk-card-title {
    font-size: 0.95rem;
  }
  
  .atk-card-desc {
    font-size: 0.75rem;
  }
}

@media (max-width: 560px) {
  .atk-grid {
    grid-template-columns: 1fr;
  }
  
  .atk-card {
    padding: 18px;
  }
}

/* TOOL PAGE - MOBILE */
@media (max-width: 768px) {
  .atk-tool-wrapper {
    padding: 80px 20px 60px;
  }
  
  .atk-tool-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  
  .atk-tool-subtitle {
    font-size: 0.9rem;
  }
  
  .atk-workspace {
    border-radius: 16px;
    margin-bottom: 20px;
  }
  
  .atk-workspace-body {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .atk-tool-wrapper {
    padding: 70px 16px 50px;
  }
  
  .atk-tool-title {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }
}

/* INPUTS & BUTTONS - MOBILE */
@media (max-width: 768px) {
  .atk-label {
    font-size: 0.7rem;
  }
  
  .atk-textarea, .atk-input, .atk-select {
    font-size: 16px;
    padding: 12px 14px;
    min-height: 48px;
    border-radius: 8px;
  }
  
  .atk-textarea {
    min-height: 140px;
  }
  
  .atk-btn-primary, .atk-btn-secondary {
    min-height: 48px;
    padding: 12px 24px;
    font-size: 0.9rem;
    border-radius: 8px;
    width: 100%;
  }
  
  .atk-btn-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .atk-btn-row .atk-btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .atk-input-group {
    margin-bottom: 16px;
  }
  
  .atk-textarea, .atk-input, .atk-select {
    font-size: 16px;
    padding: 11px 12px;
  }
  
  .atk-char-info {
    font-size: 0.65rem;
  }
}

/* OUTPUT - MOBILE */
@media (max-width: 768px) {
  .atk-output {
    padding: 16px;
    font-size: 0.9rem;
    min-height: 140px;
  }
  
  .atk-output-label {
    font-size: 0.7rem;
  }
}

/* COPY BUTTON - MOBILE */
@media (max-width: 768px) {
  .atk-btn-copy {
    width: 100%;
  }
}

/* SEO CONTENT - MOBILE */
@media (max-width: 768px) {
  .atk-seo-content {
    padding: 24px 18px;
    margin: 32px auto;
    border-radius: 16px;
  }
  
  .atk-seo-content h2 {
    font-size: 1.4rem;
    margin-top: 32px;
    margin-bottom: 16px;
  }
  
  .atk-seo-content h3 {
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 12px;
  }
  
  .atk-seo-content p {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  .atk-seo-content ul, .atk-seo-content ol {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
}

/* BREADCRUMB - MOBILE */
@media (max-width: 768px) {
  .atk-breadcrumb {
    font-size: 0.75rem;
    gap: 6px;
  }
}

/* RELATED TOOLS - MOBILE */
@media (max-width: 768px) {
  .atk-related-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  
  .atk-related-card {
    padding: 12px;
  }
  
  .atk-related-icon {
    font-size: 1.2rem;
  }
  
  .atk-related-name {
    font-size: 0.7rem;
  }
}

/* ABOUT PAGE - MOBILE */
@media (max-width: 768px) {
  .atk-about-wrapper {
    padding: 100px 16px 60px;
  }
  
  .atk-about-container {
    padding: 40px 18px;
  }
  
  .atk-about-title {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    margin-bottom: 16px;
  }
  
  .atk-about-subtitle {
    font-size: 1rem;
  }
  
  .atk-about-section-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  
  .atk-about-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .atk-about-wrapper {
    padding: 80px 12px 50px;
  }
  
  .atk-about-container {
    padding: 32px 14px;
  }
  
  .atk-about-header {
    margin-bottom: 40px;
  }
  
  .atk-about-section {
    margin-bottom: 40px;
  }
}

/* ROLES SECTION - MOBILE */
@media (max-width: 768px) {
  .atk-roles-grid {
    grid-template-columns: 1fr;
  }
  
  .atk-roles-card {
    padding: 24px 18px;
  }
  
  .atk-roles-section {
    padding: 50px 16px;
  }
}

/* PROOF BAR - MOBILE */
@media (max-width: 768px) {
  .atk-proof-bar-wrap {
    padding: 0 16px;
  }
  
  .atk-proof-bar {
    padding: 14px 14px;
    flex-direction: column;
    gap: 12px;
  }
  
  .atk-proof-text {
    font-size: 0.8rem;
    text-align: center;
  }
  
  .atk-proof-cta {
    width: 100%;
    padding: 11px 20px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .atk-proof-avatars {
    justify-content: center;
  }
}

/* TESTIMONIALS - MOBILE */
@media (max-width: 768px) {
  .atk-testi-section {
    padding: 50px 0;
  }
  
  .atk-testi-header {
    padding: 0 16px;
    margin-bottom: 32px;
  }
  
  .atk-testi-title {
    font-size: clamp(1.4rem, 4vw, 2rem);
  }
  
  .atk-marquee-card {
    width: 280px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .atk-marquee-card {
    width: 260px;
    padding: 16px;
  }
  
  .atk-testi-quote {
    font-size: 0.8rem;
  }
  
  .atk-testi-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .atk-testi-name {
    font-size: 0.8rem;
  }
  
  .atk-testi-role {
    font-size: 0.65rem;
  }
}

/* FOOTER - MOBILE (Already mostly covered, but enhancing) */
@media (max-width: 768px) {
  .atk-footer-inner {
    padding: 40px 16px 24px;
  }
  
  .atk-footer-grid {
    gap: 24px;
  }
  
  .atk-footer-col h4 {
    font-size: 0.68rem;
    margin-bottom: 12px;
  }
  
  .atk-footer-col a {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .atk-footer-inner {
    padding: 32px 12px 20px;
  }
  
  .atk-footer-brand p {
    font-size: 0.8rem;
  }
  
  .atk-footer-bottom {
    flex-direction: column;
  }
  
  .atk-footer-bottom p {
    font-size: 0.7rem;
    text-align: center;
  }
}

/* SMALL PHONES (320px - 375px) */
@media (max-width: 375px) {
  .atk-nav {
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    transform: none;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    padding: 0 8px;
  }
  
  .atk-nav-inner {
    height: 56px;
    padding: 0 4px;
  }
  
  .atk-logo {
    font-size: 1rem;
    gap: 6px;
  }
  
  .atk-logo-dot {
    width: 6px;
    height: 6px;
  }
  
  .atk-theme-wrapper {
    gap: 6px;
    margin-left: 4px;
  }
  
  .atk-theme-toggle {
    width: 40px;
    height: 22px;
  }
  
  .atk-hamburger {
    padding: 6px;
    gap: 4px;
  }
  
  .atk-hamburger span {
    width: 20px;
    height: 2px;
  }
  
  .atk-mobile-menu {
    padding: 12px 14px;
  }
  
  .atk-mobile-menu a {
    padding: 10px 12px;
    font-size: 0.85rem;
    min-height: 45px;
  }
  
  .atk-hero {
    padding: 70px 12px 28px;
  }
  
  .atk-hero h1 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin-bottom: 12px;
  }
  
  .atk-hero p {
    font-size: 0.85rem;
    max-width: 100%;
  }
  
  .atk-badge {
    font-size: 0.58rem;
    padding: 5px 10px;
    gap: 6px;
    margin-bottom: 16px;
  }
  
  .atk-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 4px;
    margin-bottom: 20px;
    padding: 0 8px;
  }
  
  .atk-stat {
    width: 100%;
    min-width: 0;
  }

  .atk-stats .atk-stat:nth-child(4) {
    grid-column: 2;
  }
  
  .atk-stat-num {
    font-size: 1.1rem;
  }
  
  .atk-stat-label {
    font-size: 0.6rem;
  }
  
  .atk-trust {
    padding: 12px 0;
  }
  
  .atk-trust-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 8px;
    gap: 10px 8px;
    align-items: start;
  }
  
  .atk-trust-item {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .atk-trust-inner .atk-trust-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }
  
  .atk-trust-num {
    font-size: 1.2rem;
  }
  
  .atk-trust-label {
    font-size: 0.58rem;
  }
  
  .atk-section {
    padding: 28px 12px;
  }
  
  .atk-section-title {
    font-size: 1.3rem;
    margin-bottom: 4px;
  }
  
  .atk-section-sub {
    font-size: 0.8rem;
    margin-bottom: 20px;
  }
  
  .atk-filter-tabs {
    padding: 0 8px 12px;
    gap: 6px;
    margin: 0 auto 28px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  
  .atk-filter-btn {
    padding: 7px 12px;
    font-size: 0.75rem;
  }
  
  .atk-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
    padding: 0 8px;
  }
  
  .atk-card {
    padding: 16px;
    margin: 0;
  }
  
  .atk-card-icon {
    font-size: 1.6rem;
  }
  
  .atk-card-title {
    font-size: 0.9rem;
  }
  
  .atk-card-desc {
    font-size: 0.72rem;
  }
}

/* ACCESSIBILITY - TOUCH FRIENDLY */
@media (hover: none) and (pointer: coarse) {
  button,
  a.atk-btn-primary,
  a.atk-btn-secondary,
  .atk-card,
  .atk-related-card,
  .atk-related-item {
    min-height: 48px;
  }
  
  .atk-btn-primary:active {
    transform: scale(0.98);
  }
  
  .atk-btn-secondary:active {
    background: var(--surface2);
  }
  
  .atk-card:active {
    transform: translateY(-2px);
  }
}

/* LANDSCAPE MODE ADJUSTMENTS */
@media (max-height: 600px) and (orientation: landscape) {
  .atk-hero {
    padding: 60px 24px 30px;
  }
  
  .atk-hero h1 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  
  .atk-hero p {
    margin-bottom: 20px;
    font-size: 0.9rem;
  }
  
  .atk-stats {
    gap: 24px;
    margin-bottom: 20px;
  }
}

/* ============================================================
   OVERFLOW PREVENTION & HORIZONTAL SCROLL FIX
   ============================================================ */

/* Ensure no horizontal overflow on any device */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Maximum width constraints for all sections */
.atk-hero,
.atk-trust,
.atk-section,
.atk-footer {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Flex containers - prevent overflow */
.atk-stats,
.atk-trust-inner,
.atk-grid {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Ensure all containers respect viewport */
.atk-nav-inner,
.atk-grid {
  width: 100%;
  max-width: 100%;
}

/* Fix for any overflowing text */
p, span, div, a {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Prevent images from exceeding viewport */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevent tables from overflowing */
table {
  max-width: 100%;
  overflow-x: auto;
  display: block;
}

/* Ensure form elements don't overflow */
form, label, input, textarea, select, button {
  max-width: 100%;
  box-sizing: border-box;
}

/* On very small screens, reduce padding on fixed navbar */
@media (max-width: 380px) {
  .atk-nav {
    width: calc(100% - 8px);
    margin: 0 4px;
  }
}

/* ============================================================
   AITEXTKIT - MOBILE FIX PATCH + ADSENSE READY (April 2026)
   Add this at the END of your existing style.css
   ============================================================ */

/* FIX: Tool page "How it works" steps — stack on small phones */
@media (max-width: 480px) {
  .atk-tool-card [style*="grid-template-columns"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .atk-tool-card [style*="grid-template-columns"] > div {
    padding: 12px !important;
  }
}
@media (max-width: 360px) {
  .atk-tool-card [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* FIX: Tool page badges wrapping on small screens */
@media (max-width: 480px) {
  .atk-tool-badges {
    gap: 6px;
  }
  .atk-tool-badges .atk-badge,
  .atk-tool-badges .atk-tool-badge {
    font-size: 0.62rem;
    padding: 4px 10px;
  }
}

/* FIX: Content Detector / Decay Checker score cards on mobile */
@media (max-width: 480px) {
  .detect-score-card,
  .decay-score-card {
    padding: 20px 14px;
    border-radius: 14px;
  }
  .detect-score-number,
  .decay-score-number {
    font-size: 3rem;
  }
  .detect-section,
  .decay-section {
    padding: 14px;
    border-radius: 12px;
  }
  .detect-meter-row {
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
  }
  .detect-meter-label {
    min-width: unset;
    font-size: 0.78rem;
  }
  .detect-meter-val {
    text-align: left;
    min-width: unset;
  }
}

/* FIX: Blog cards grid on homepage mobile */
@media (max-width: 768px) {
  .atk-blogs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .atk-blog-card {
    border-radius: 14px;
  }
  .atk-blog-card img {
    height: 160px;
  }
}

/* FIX: SEO content readability on mobile */
@media (max-width: 480px) {
  .atk-seo-content {
    padding: 18px 14px;
    border-radius: 12px;
  }
  .atk-seo-content h2 {
    font-size: 1.2rem;
    margin-top: 24px;
  }
  .atk-seo-content h3 {
    font-size: 1rem;
  }
  .atk-seo-content p,
  .atk-seo-content li {
    font-size: 0.85rem;
    line-height: 1.7;
  }
  .atk-seo-content ul,
  .atk-seo-content ol {
    padding-left: 18px;
  }
}

/* FIX: Footer social links on mobile */
@media (max-width: 480px) {
  .atk-social-links {
    justify-content: center;
    gap: 10px;
  }
  .atk-social-btn {
    width: 38px;
    height: 38px;
  }
  .atk-social-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* FIX: Related tools grid wrapping on small screens */
@media (max-width: 380px) {
  .atk-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .atk-related-item {
    padding: 10px 6px;
    font-size: 0.68rem;
  }
}

/* FIX: Error messages responsive */
@media (max-width: 480px) {
  .atk-error {
    font-size: 0.82rem;
    padding: 12px 14px;
    border-radius: 10px;
  }
}

/* FIX: Touch targets - minimum 48px for all interactive elements */
@media (max-width: 768px) {
  .atk-select {
    min-height: 48px;
    font-size: 16px; /* Prevent iOS zoom */
  }
  .atk-breadcrumb a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* FIX: Prevent horizontal scroll from decorative elements */
@media (max-width: 768px) {
  .atk-hero::before {
    width: 100%;
    max-width: 100vw;
  }
}

/* ============================================================
   ADSENSE AD SLOTS — Activate when AdSense approved
   ============================================================ */

/* Ad container base styles */
.atk-ad {
  width: 100%;
  max-width: 728px;
  margin: 20px auto;
  text-align: center;
  min-height: 90px;
  overflow: hidden;
}

/* Responsive ad sizing */
@media (max-width: 768px) {
  .atk-ad {
    max-width: 100%;
    min-height: 50px;
  }
  .atk-ad-leaderboard {
    max-width: 100%;
    height: auto;
    min-height: 50px;
  }
}

@media (max-width: 480px) {
  .atk-ad {
    margin: 12px auto;
    min-height: 50px;
  }
}

/* Ad label for user trust */
.atk-ad::before {
  content: '';
  display: none; /* Enable when ads are active */
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* In-article ad for blog posts */
.atk-ad-inline {
  margin: 24px auto;
  padding: 16px 0;
  max-width: 100%;
}

/* ============================================================
   COOKIE CONSENT BANNER — AdSense / GDPR
   ============================================================ */
#atk-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 2px solid var(--border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 99999;
  flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.25);
  animation: atk-slideup 0.4s ease;
}
@keyframes atk-slideup {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
body.light-theme #atk-cookie-banner {
  background: #ffffff;
  border-top-color: #dde1ed;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.08);
}
#atk-cookie-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 220px;
}
#atk-cookie-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
#atk-cookie-content p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}
body.light-theme #atk-cookie-content p { color: #5a5a7a; }
#atk-cookie-content a {
  color: var(--accent);
  text-decoration: underline;
}
#atk-cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
#atk-accept-cookies {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}
#atk-accept-cookies:hover { opacity: 0.88; }
#atk-decline-cookies {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: border-color 0.2s, color 0.2s;
}
#atk-decline-cookies:hover {
  border-color: var(--accent);
  color: var(--accent);
}
@media (max-width: 600px) {
  #atk-cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }
  #atk-cookie-btns {
    width: 100%;
    justify-content: flex-end;
  }
}
