/* ==========================================================================
   TopFollow APK - Global Stylesheet
   Version: 1.0 (2026)
   ========================================================================== */

:root {
  /* Colors */
  --primary: #6C3FEB;
  --primary-dark: #4A1FCC;
  --accent: #00D4FF;
  --accent-hover: #00AACC;

  --bg-dark: #0A0A0F;
  --bg-card: #13131A;
  --bg-card-hover: #1C1C28;

  --border: #2A2A3E;

  --text-primary: #F0F0FF;
  --text-secondary: #9999BB;
  --text-muted: #666688;

  --success: #00E676;
  --warning: #FFD600;
  --danger: #FF4444;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0A0A0F 0%, #1A0A3E 50%, #0A0A0F 100%);
  --gradient-btn: linear-gradient(135deg, #6C3FEB, #00D4FF);
  --gradient-card: linear-gradient(135deg, #13131A, #1C1C28);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background-color: var(--primary);
  color: #fff;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-hover);
}

ul {
  list-style: none;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1,
h2,
h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-top: 2rem;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  margin-top: 1.5rem;
}

h4 {
  font-size: 1.2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

small {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.gradient-text {
  background: var(--gradient-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Layout & Container
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Components: Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 54px;
  /* Accessible tap target */
  text-align: center;
  gap: 8px;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-download {
  background: var(--gradient-btn);
  color: #fff !important;
  font-size: 1.1rem;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(108, 63, 235, 0.1);
}

.btn-sm {
  padding: 8px 16px;
  min-height: 44px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.2rem;
  border-radius: 12px;
}

.btn-block {
  width: 100%;
  display: flex;
}

.pulse {
  animation: pulse-ring 3s infinite;
}

/* ==========================================================================
   Components: Cards
   ========================================================================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(108, 63, 235, 0.2);
}

@media (max-width: 768px) {
  .card {
    padding: 16px;
  }
}

/* ==========================================================================
   Components: Badges & Tags
   ========================================================================== */
.badge-safe {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 230, 118, 0.15);
  color: var(--success);
  border: 1px solid var(--success);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-new {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 212, 255, 0.15);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-version {
  display: inline-block;
  padding: 4px 12px;
  font-family: 'JetBrains Mono', monospace;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
}

/* ==========================================================================
   Notice/Alert Boxes
   ========================================================================== */
.notice-box {
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  color: var(--text-primary);
}

.notice-warning {
  background: rgba(255, 214, 0, 0.1);
  border-left: 4px solid var(--warning);
}

.notice-info {
  background: rgba(0, 212, 255, 0.1);
  border-left: 4px solid var(--accent);
}

.notice-success {
  background: rgba(0, 230, 118, 0.1);
  border-left: 4px solid var(--success);
}

/* Quick Answer & Takeaways */
.quick-answer {
  background: linear-gradient(135deg, rgba(108, 63, 235, 0.15), rgba(0, 212, 255, 0.1));
  border: 1px solid rgba(108, 63, 235, 0.4);
  border-radius: 12px;
  padding: 24px;
  margin: 30px 0;
}

.quick-answer h3 {
  margin-top: 0;
}

.takeaways {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 24px;
  margin: 30px 0;
}

.takeaways h3 {
  margin-top: 0;
}

.takeaways ul {
  margin-top: 15px;
}

.takeaways li {
  margin-bottom: 10px;
  display: flex;
}

.takeaways li::before {
  content: "✓";
  color: var(--success);
  font-weight: bold;
  margin-right: 10px;
}

/* ==========================================================================
   Tables
   ========================================================================== */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 30px 0;
  border-radius: 8px;
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  position: sticky;
  top: 0;
}

tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

tr:hover {
  background: rgba(108, 63, 235, 0.1);
}

/* Comparison Table Specifics */
.comparison-table .winner {
  color: var(--success);
  font-weight: bold;
}

.comparison-table .highlight-col {
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.comparison-table th.highlight-col {
  border-top: 2px solid var(--accent);
}

.comparison-table tr:last-child .highlight-col {
  border-bottom: 2px solid var(--accent);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
  height: 80px;
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 70px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  max-width: 140px;
}

.logo svg {
  width: 32px;
  height: 32px;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logo-text .logo-apk {
  color: var(--accent);
}

/* Desktop Nav */
.main-nav ul {
  display: flex;
  gap: 24px;
}

.main-nav a {
  color: var(--text-primary);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
}

/* Dropdowns */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li {
  width: 100%;
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--text-secondary);
}

.dropdown a:hover {
  background: rgba(108, 63, 235, 0.1);
  color: var(--accent);
}

/* Hamburger */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  position: absolute;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 11px;
}

.hamburger span:nth-child(3) {
  top: 22px;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

.mobile-nav-cta {
  display: none;
}

@media (max-width: 992px) {
  .header-cta {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .site-header {
    height: 60px;
  }

  .site-header.scrolled {
    height: 60px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    padding: 80px 20px 20px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .main-nav a {
    display: block;
    font-size: 1.2rem;
    padding: 10px 0;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
  }

  .main-nav .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding-left: 20px;
    display: none;
  }

  .main-nav .has-dropdown.open .dropdown {
    display: flex;
  }

  .mobile-nav-cta {
    display: block;
    margin-top: 30px;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--gradient-hero);
}

.hero-bg-effects {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(108, 63, 235, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-badge {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 90%;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.hero-stats .stat span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-primary);
}

.hero-stats .stat label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta {
  margin-bottom: 30px;
}

.cta-note {
  font-size: 0.9rem;
  color: var(--success);
  margin-top: 10px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 30px;
  }

  .hero-badge {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .trust-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0;
  }

  .hero-stats {
    gap: 15px;
  }

  .hero-stats .stat span {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   App Info Box
   ========================================================================== */
.app-info-box {
  text-align: center;
}

.app-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px 0;
  text-align: left;
}

.app-info-grid>div {
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.app-info-grid span:last-child {
  font-weight: 500;
  color: var(--text-primary);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .app-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Step-by-Step Lists
   ========================================================================== */
.steps-list {
  counter-reset: steps;
  margin: 30px 0;
}

.step-item {
  counter-increment: steps;
  position: relative;
  padding-left: 60px;
  margin-bottom: 24px;
}

.step-item::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: -5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 4px 15px rgba(108, 63, 235, 0.3);
}

.step-item h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

/* ==========================================================================
   Image Placeholders
   ========================================================================== */
.img-placeholder {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
  border: 1px dashed var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  min-height: 200px;
  width: 100%;
  margin: 20px 0;
  text-align: center;
  padding: 20px;
}

.img-placeholder::before {
  content: "📸 ";
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.open {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 54px;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* When JS adds height explicitly, we just padding top/bottom */
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--text-secondary);
  margin: 0 5px;
}

/* ==========================================================================
   Promo Codes
   ========================================================================== */
.code-box {
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}

.code-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
}

.btn-copy {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent);
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-copy:hover {
  background: var(--accent);
  color: #000;
}

/* ==========================================================================
   Author Bio
   ========================================================================== */
.author-bio {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 50px;
  background: rgba(108, 63, 235, 0.05);
  /* Slight tint for author box */
}

.author-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
}

.author-info h3 {
  font-size: 0.9rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  margin-top: 0;
}

.author-info h4 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.author-info p {
  font-size: 0.95rem;
}

.author-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.author-links a {
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 600px) {
  .author-bio {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding-top: 60px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin: 20px 0;
  font-size: 0.95rem;
}

.app-rating {
  background: var(--bg-card);
  padding: 12px 16px;
  border-radius: 8px;
  display: inline-block;
}

.app-rating .stars {
  color: var(--warning);
  font-size: 1.2rem;
  display: block;
}

.app-rating .rating-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links h3,
.footer-appinfo h3 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--accent);
}

.app-meta-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.app-meta-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 5px;
}

.app-meta-list span {
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 10px;
}

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.8rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Utility & Interactive Elements
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* Sticky Download Bar (Mobile Only) */
.sticky-download-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(19, 19, 26, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.sticky-download-bar.visible {
  transform: translateY(0);
}

.sticky-download-bar span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

@media (min-width: 769px) {
  .sticky-download-bar {
    display: none !important;
  }
}

/* Reading Progress Bar */
.reading-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 1002;
}

.reading-progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(0, 212, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.card,
.step-item,
.notice-box,
.faq-item {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {

  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Content specific adjustments */
.article-content {
  font-size: 1.05rem;
}

.article-content h2,
.article-content h3 {
  color: var(--text-primary);
}

.article-content p {
  color: var(--text-secondary);
}

.article-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.article-content ul li {
  list-style-type: disc;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* Print styles */
@media print {

  .site-header,
  .site-footer,
  .back-to-top,
  .sticky-download-bar,
  .hero-cta {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .card,
  .takeaways,
  .quick-answer,
  .notice-box {
    border: 1px solid #ccc;
    background: #fff !important;
    color: #000;
  }

  h1,
  h2,
  h3,
  a {
    color: #000 !important;
  }
}