/* CodeTalk Website - Common Styles */

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

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --dark-bg: #1a1a2e;
  --dark-card: #16213e;
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --accent-green: #10b981;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Fixed nav height */
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Navigation - Header only */
nav:has(.nav-container) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a.active {
  color: var(--primary);
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
}

.lang-btn:hover {
  background: var(--primary);
  color: white;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #0f0f23 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Features Section */
.features {
  padding: 100px 20px;
  background: var(--dark-card);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.features-2x2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .features-2x2 {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
  padding: 100px 20px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 50px;
}

.step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Steps Section with Labels */
.steps-section {
  margin-bottom: 50px;
}

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

.steps-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 30px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.steps-label svg {
  width: 20px;
  height: 20px;
  color: white;
}

.steps-label span {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.steps-label.decrypt-label {
  background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%);
}

/* Steps Row with Arrow */
.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.step-arrow {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-arrow svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
  opacity: 0.8;
}

.steps-label.decrypt-label + .steps-row .step-arrow svg {
  color: var(--accent-green);
}

@media (max-width: 768px) {
  .steps-row {
    flex-direction: column;
    gap: 16px;
  }

  .step-arrow {
    transform: rotate(90deg);
    width: 40px;
    height: 40px;
  }

  .step-arrow svg {
    width: 28px;
    height: 28px;
  }
}

/* Step Card */
.step-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  width: 260px;
  flex-shrink: 0;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.step-image {
  width: 100%;
  aspect-ratio: 9/16;
  background: #0f0f23;
  overflow: hidden;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.step-card .step-number {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
  margin: 0;
  z-index: 10;
}

.step-card .step-content {
  padding: 16px;
  text-align: center;
}

.step-card .step-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.step-card .step-content p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .step-card {
    width: 100%;
    max-width: 280px;
  }
}

/* Download Section */
.download {
  padding: 150px 20px 100px;
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-bg) 100%);
  text-align: center;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.download .container {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.download-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.download-logo {
  margin-top: auto;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.download-logo img {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  object-fit: contain;
}

.download-logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  transition: all 0.3s;
}

.store-btn:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.store-btn svg {
  width: 32px;
  height: 32px;
}

.store-btn .store-text {
  text-align: left;
}

.store-btn .store-text span {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
}

.store-btn .store-text strong {
  font-size: 16px;
}

/* Privacy Section */
.privacy {
  padding: 100px 20px;
  background: var(--dark-card);
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
}

.privacy-content h2 {
  font-size: 1.75rem;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary);
}

.privacy-content h3 {
  font-size: 1.2rem;
  margin-top: 30px;
  margin-bottom: 15px;
  padding-left: 12px;
  border-left: 3px solid var(--primary);
}

.privacy-content p {
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.privacy-content ul {
  color: var(--text-secondary);
  padding-left: 24px;
  margin-bottom: 15px;
}

.privacy-content li {
  margin-bottom: 8px;
}

.privacy-content a {
  color: var(--primary);
}

.highlight-box {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 8px;
  padding: 15px 20px;
  margin: 20px 0;
}

.highlight-box strong {
  color: var(--accent-green);
}

.contact-box {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 20px;
  margin-top: 30px;
}

.contact-box h4 {
  margin-bottom: 10px;
}

.updated-date {
  text-align: right;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Blog Section */
.blog-section {
  padding: 100px 20px;
  min-height: calc(100vh - 200px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.blog-card-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-image svg {
  width: 48px;
  height: 48px;
  color: rgba(255,255,255,0.5);
}

.blog-card-content {
  padding: 24px;
}

.blog-card-date {
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-card-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
}

.empty-state-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.empty-state-icon svg {
  width: 40px;
  height: 40px;
  color: var(--text-secondary);
}

.empty-state h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.empty-state p {
  color: var(--text-secondary);
}

/* Coming Soon Section */
.coming-soon {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
}

.coming-soon-content {
  max-width: 600px;
}

.coming-soon-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.coming-soon-icon svg {
  width: 60px;
  height: 60px;
  color: white;
}

.coming-soon h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coming-soon p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Footer */
footer {
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

footer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

footer a {
  color: var(--primary);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  z-index: 99;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav li:last-child {
  border-bottom: none;
}

.mobile-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--text-primary);
}

/* Page Header (for inner pages) */
.page-header {
  padding: 120px 20px 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #0f0f23 100%);
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Privacy Policy Page */
.privacy-section {
  padding: 60px 20px 100px;
  background: var(--dark-bg);
}

.privacy-block {
  margin-bottom: 40px;
}

.privacy-block h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
  padding-left: 12px;
  border-left: 3px solid var(--primary);
}

.privacy-block p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.privacy-block ul {
  color: var(--text-secondary);
  padding-left: 24px;
  margin-bottom: 12px;
}

.privacy-block li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.privacy-block a {
  color: var(--primary);
}

.privacy-highlight {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 16px;
}

.privacy-highlight p {
  color: var(--accent-green);
  font-weight: 600;
  margin-bottom: 0;
}

.privacy-note {
  font-style: italic;
  color: var(--text-secondary);
  opacity: 0.8;
}

.contact-email {
  text-align: center;
  margin-top: 16px;
}

.contact-email a {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 500;
}

.privacy-updated {
  text-align: right;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.privacy-updated p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Coming Soon Features */
.coming-soon-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.coming-soon-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.coming-soon-features {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.feature-preview {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.feature-preview svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.coming-soon-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Blog Post Detail Styles */
.blog-post {
  padding: 100px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.post-header {
  text-align: center;
  margin-bottom: 40px;
}

.post-meta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.post-date {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.post-category {
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.post-header h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.post-excerpt {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.post-hero-image {
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
}

.post-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Table of Contents */
.table-of-contents {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px 30px;
  margin-bottom: 40px;
}

.table-of-contents h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.table-of-contents ol {
  padding-left: 20px;
  color: var(--text-secondary);
}

.table-of-contents li {
  margin-bottom: 8px;
}

.table-of-contents a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.table-of-contents a:hover {
  color: var(--primary);
}

/* Post Content */
.post-content {
  color: var(--text-secondary);
  line-height: 1.8;
}

.post-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 50px;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 4px solid var(--primary);
}

.post-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 35px;
  margin-bottom: 15px;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

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

.post-content a {
  color: var(--primary);
  text-decoration: none;
}

.post-content a:hover {
  text-decoration: underline;
}

.post-content figure {
  margin: 30px 0;
}

.post-content figure img {
  width: 100%;
  border-radius: 12px;
}

.post-content figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 12px;
  font-style: italic;
}

/* News Quote */
.news-quote {
  background: rgba(99, 102, 241, 0.1);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  margin: 30px 0;
  border-radius: 0 12px 12px 0;
}

.news-quote p {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.news-quote cite {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.news-quote cite a {
  color: var(--primary);
}

/* Highlight Box */
.content-highlight {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.05) 100%);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  padding: 24px;
  margin: 30px 0;
}

.content-highlight h4 {
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.content-highlight ul {
  margin-bottom: 0;
}

/* Warning Box */
.warning-box {
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #ef4444;
  padding: 20px 24px;
  margin: 30px 0;
  border-radius: 0 12px 12px 0;
}

.warning-box h4 {
  color: #ef4444;
  margin-bottom: 10px;
}

/* Info Box */
.info-box {
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid var(--accent-green);
  padding: 20px 24px;
  margin: 30px 0;
  border-radius: 0 12px 12px 0;
}

.info-box h4 {
  color: var(--accent-green);
  margin-bottom: 10px;
}

/* Post CTA */
.post-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 50px 0;
}

.post-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.post-cta .btn {
  background: white;
  color: var(--primary-dark);
}

.post-cta .btn:hover {
  background: rgba(255,255,255,0.9);
}

/* Related Posts */
.related-posts {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.related-posts h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

/* Blog Card with Image */
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card a {
  text-decoration: none;
  color: inherit;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .privacy-content {
    padding: 25px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}
