/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple: #8b5cf6;
  --purple-dark: #7c3aed;
  --green: #10b981;
  --orange: #f59e0b;
  --pink: #f43f5e;
  --blue: #3b82f6;
  --dark: #0b0f14;
  --dark-secondary: #131822;
  --text: #d1d5dc;
  --text-secondary: #9ca3af;
  --border: #1f2937;

  /* Theme colors */
  --bunker: #0b0f14;
  --mirage: #131822;
  --mischka: #d1d5dc;
  --mountainMeadow: #10b981;
  --buttercup: #F59E0B;
  --carnation: #F43F5E;
}

html,
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bunker) !important;
  color: var(--mischka) !important;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* WordPress body classes */
body.single-post,
body.single,
body.blog,
body.archive,
body.page {
  background: var(--bunker) !important;
}

/* Ensure main content area has dark background */
#content,
.site-content,
main {
  background: var(--bunker);
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 15, 20, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.brand-icon {
  font-size: 28px;
}

.brand-logo {
  height: 31px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
}

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

.nav-links a:hover {
  color: var(--purple);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--purple);
  top: -100px;
  left: -100px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--pink);
  bottom: -100px;
  right: -100px;
  animation-delay: -5s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: var(--green);
  top: 50%;
  left: 50%;
  animation-delay: -10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 100px;
  font-size: 14px;
  color: var(--purple);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: white;
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
}

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

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

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  position: relative;
  width: 300px;
  height: 600px;
  background: var(--dark-secondary);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(19, 24, 34, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  animation: floatCard 3s ease-in-out infinite;
}

.card-1 {
  top: 10%;
  left: -80px;
}

.card-2 {
  bottom: 15%;
  right: -80px;
  animation-delay: -1.5s;
}

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

.card-icon {
  font-size: 32px;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.card-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Features Section */
.features {
  padding: 120px 0;
  background: linear-gradient(
    180deg,
    var(--dark) 0%,
    var(--dark-secondary) 100%
  );
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 100px;
  font-size: 14px;
  color: var(--purple);
  margin-bottom: 16px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 24px;
}

.feature-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: var(--purple);
}
.feature-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}
.feature-icon.orange {
  background: rgba(245, 158, 11, 0.1);
  color: var(--orange);
}
.feature-icon.pink {
  background: rgba(244, 63, 94, 0.1);
  color: var(--pink);
}
.feature-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.feature-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* How It Works */
.how-it-works {
  padding: 120px 0;
  background: var(--dark-secondary);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 100px 1fr 200px;
  gap: 40px;
  align-items: center;
}

.step-reverse {
  grid-template-columns: 200px 1fr 100px;
}

.step-reverse .step-number {
  order: 3;
}
.step-reverse .step-content {
  order: 2;
}
.step-reverse .step-image {
  order: 1;
}

.step-number {
  font-size: 72px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
}

.step-title {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.step-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  border-radius: 24px;
}

.step-icon.purple {
  background: rgba(139, 92, 246, 0.1);
}
.step-icon.pink {
  background: rgba(244, 63, 94, 0.1);
}
.step-icon.green {
  background: rgba(16, 185, 129, 0.1);
}

/* Testimonials */
.testimonials {
  padding: 120px 0;
  background: var(--dark);
}

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

.testimonial-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.testimonial-stars {
  font-size: 20px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.author-time {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Screenshots Section - Gallery Style */
.screenshots {
  padding: 120px 0;
  background: var(--dark);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.screenshot-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
  aspect-ratio: 9/19.5;
}

.screenshot-item::before {
  content: "🔍";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
}

.screenshot-item:hover::before {
  opacity: 1;
}

.screenshot-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
  border-color: var(--purple);
}

.screenshot-item:hover img {
  filter: brightness(0.6);
}

.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s;
}

.screenshot-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  backdrop-filter: blur(8px);
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

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

.lightbox-content {
  position: relative;
  max-width: 500px;
  max-height: 90vh;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}

.lightbox img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
}

.lightbox-close:hover {
  background: var(--purple);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
}

.lightbox-nav:hover {
  background: var(--purple);
}

.lightbox-nav.prev {
  left: -70px;
}

.lightbox-nav.next {
  right: -70px;
}

.lightbox-caption {
  text-align: center;
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
}

/* Download Section */
.download {
  padding: 120px 0;
  background: var(--dark-secondary);
}

.download-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1),
    rgba(244, 63, 94, 0.1)
  );
  border: 1px solid var(--border);
  border-radius: 32px;
}

.download-title {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.download-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.store-button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.store-text {
  font-size: 12px;
  color: var(--text-secondary);
}

.store-name {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.download-phones {
  position: relative;
}

.phones-img {
  width: 100%;
  border-radius: 20px;
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.footer-logo .brand-logo {
  height: 28px;
}

.footer-tagline {
  color: var(--text-secondary);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--purple);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
  .nav-links {
    display: none;
  }
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 48px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .download-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .step {
    grid-template-columns: 1fr !important;
  }
  .step-reverse .step-number {
    order: 1;
  }
  .step-reverse .step-content {
    order: 2;
  }
  .step-reverse .step-image {
    order: 3;
  }
  .lightbox-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 36px;
  }
  .section-title {
    font-size: 32px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .hero-cta {
    flex-direction: column;
  }
  .floating-card {
    display: none;
  }
  .lightbox {
    padding: 20px;
  }
  .lightbox-content {
    max-width: 100%;
  }
}

/* ===================================
   Blog & Archive Styles
   =================================== */

/* Blog Section on Homepage */
.blog-section {
  padding: 120px 0;
  background: var(--bunker);
}

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

.blog-card {
  background: var(--mirage);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.blog-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--mirage), transparent);
  opacity: 0.7;
}

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

.blog-card-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.blog-card-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-badge {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(244, 63, 94, 0.15));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--mischka);
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-badge:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(244, 63, 94, 0.25));
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-2px);
}

.blog-card-info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(209, 213, 220, 0.6);
}

.blog-card-date,
.blog-card-author {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-date svg,
.blog-card-author svg {
  opacity: 0.7;
}

.blog-card-title {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.blog-card-title a {
  color: var(--mischka);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  background: linear-gradient(135deg, #8b5cf6, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-card-excerpt {
  color: rgba(209, 213, 220, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mountainMeadow);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.blog-card-link:hover {
  gap: 12px;
}

.blog-card-comments {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(209, 213, 220, 0.6);
  font-size: 14px;
}

.blog-cta {
  margin-top: 64px;
  text-align: center;
}

.no-posts {
  text-align: center;
  color: rgba(209, 213, 220, 0.6);
  font-size: 18px;
  padding: 80px 20px;
}

/* Archive Page Styles */
.archive-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.archive-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.archive-title {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, #8b5cf6, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.archive-prefix {
  font-size: 18px;
  font-weight: 400;
  color: rgba(209, 213, 220, 0.6);
}

.archive-description {
  color: rgba(209, 213, 220, 0.8);
  font-size: 18px;
  line-height: 1.6;
}

.archive-posts {
  padding: 80px 0 120px;
  background: var(--bunker);
}

.blog-archive-container {
  padding: 80px 0 120px;
}

.blog-archive-header {
  text-align: center;
  margin-bottom: 64px;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, #8b5cf6, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.no-posts-message {
  text-align: center;
  padding: 80px 20px;
}

.no-posts-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.no-posts-message h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--mischka);
}

.no-posts-message p {
  color: rgba(209, 213, 220, 0.6);
  font-size: 18px;
  margin-bottom: 32px;
}

/* Pagination */
.pagination {
  margin-top: 64px;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pagination a,
.pagination .current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  background: var(--mirage);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: var(--mischka);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(244, 63, 94, 0.2));
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

.pagination .current {
  background: linear-gradient(135deg, #8b5cf6, #f43f5e);
  border-color: transparent;
}

/* Single Post Styles */
.single-post {
  background: var(--bunker) !important;
  min-height: 100vh;
}

.post-hero {
  position: relative;
  padding: 120px 0 60px;
  overflow: hidden;
  background: var(--bunker) !important;
}

.post-header-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.post-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.post-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 32px 0;
  color: var(--mischka);
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  background: var(--mirage);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.post-author img {
  border-radius: 50%;
  border: 2px solid rgba(139, 92, 246, 0.3);
}

.author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.author-name {
  font-weight: 600;
  color: var(--mischka);
}

.post-date {
  font-size: 13px;
  color: rgba(209, 213, 220, 0.6);
}

.post-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}

.post-views,
.post-comments-count {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(209, 213, 220, 0.6);
  font-size: 14px;
}

.post-featured-image {
  margin: 48px 0;
}

.post-featured-image img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.post-content-wrapper {
  padding: 60px 0 120px;
  background: var(--bunker) !important;
}

.post-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.post-content {
  max-width: 900px;
  margin: 0 auto;
}

.post-content p {
  color: rgba(209, 213, 220, 0.85);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  color: var(--mischka);
  font-weight: 600;
  margin: 48px 0 24px 0;
  line-height: 1.3;
}

.post-content h2 {
  font-size: 36px;
}

.post-content h3 {
  font-size: 28px;
}

.post-content h4 {
  font-size: 22px;
}

.post-content ul,
.post-content ol {
  color: rgba(209, 213, 220, 0.85);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  padding-left: 32px;
}

.post-content a {
  color: var(--mountainMeadow);
  text-decoration: none;
  border-bottom: 1px solid rgba(16, 185, 129, 0.3);
  transition: border-color 0.3s ease;
}

.post-content a:hover {
  border-bottom-color: var(--mountainMeadow);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 48px 0;
  padding: 24px;
  background: var(--mirage);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tags-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(209, 213, 220, 0.6);
  font-weight: 500;
}

.tag-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mischka);
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag-badge:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
}

.author-bio {
  display: flex;
  gap: 20px;
  padding: 32px;
  margin: 64px 0;
  background: var(--mirage);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar img {
  border-radius: 50%;
  border: 3px solid rgba(139, 92, 246, 0.3);
}

.author-details {
  flex: 1;
}

.author-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--mischka);
  margin-bottom: 8px;
}

.author-description {
  color: rgba(209, 213, 220, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.post-navigation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 64px 0;
}

.nav-post {
  padding: 24px;
  background: var(--mirage);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.nav-post:hover {
  background: rgba(19, 24, 34, 0.8);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
}

.nav-label {
  display: block;
  font-size: 13px;
  color: rgba(209, 213, 220, 0.5);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-title {
  color: var(--mischka);
  font-weight: 500;
  text-decoration: none;
  line-height: 1.4;
}

.nav-next {
  text-align: right;
}

.post-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.related-posts {
  padding: 80px 0 120px;
  background: var(--mirage);
}

.related-posts .section-title {
  text-align: center;
  margin-bottom: 48px;
}

/* Page Styles */
.page-content {
  background: var(--bunker);
}

.page-hero {
  position: relative;
  padding: 120px 0 60px;
  overflow: hidden;
}

.page-header-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-excerpt {
  font-size: 20px;
  color: rgba(209, 213, 220, 0.8);
  line-height: 1.6;
  margin-top: 16px;
}

.page-content-wrapper {
  padding: 60px 0 120px;
}

.page-main-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-main-content p {
  color: rgba(209, 213, 220, 0.85);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.page-main-content h2,
.page-main-content h3,
.page-main-content h4 {
  color: var(--mischka);
  font-weight: 600;
  margin: 48px 0 24px 0;
  line-height: 1.3;
}

/* Responsive Styles for Blog */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }

  .post-content-grid {
    grid-template-columns: 1fr;
  }

  .post-sidebar {
    position: static;
  }
}

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

  .archive-title,
  .page-title {
    font-size: 36px;
  }

  .post-title {
    font-size: 36px;
  }

  .post-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .post-navigation {
    grid-template-columns: 1fr;
  }

  .nav-next {
    text-align: left;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .post-title {
    font-size: 28px;
  }

  .archive-title,
  .page-title {
    font-size: 28px;
  }

  .post-content p,
  .page-main-content p {
    font-size: 16px;
  }
}
