/* NodeSoft - Main Stylesheet */
/* SEO Optimized & Performance Enhanced */

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

/* Base */
:root {
  --bg: #000;
  --bg2: #0a0a0a;
  --bg3: #1a1a1a;

  --text: #fff;
  --muted: #aaa;
  --muted2: #666;

  --border: #333;

  --primary: #ff0000;
  --primary2: #cc0000;
  --primary3: #990000;

  --shadow-red: rgba(255, 0, 0, 0.3);
  --shadow-red-strong: rgba(255, 0, 0, 0.5);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg3) 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-container {
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

/* Language Switcher */
.language-switcher {
  display: inline-flex;
  gap: 8px;
  background: var(--bg2);
  padding: 8px;
  border-radius: 50px;
  border: 2px solid var(--border);
  transition: border-color 0.3s ease;
  max-width: 180px;
  margin-top: 15px;
  justify-content: center;
}

.language-switcher:hover {
  border-color: var(--primary);
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 50px;
  color: var(--muted);
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  min-width: 70px;
}

.lang-btn .flag {
  font-size: 1.3em;
  line-height: 1;
}

.lang-btn .lang-text {
  font-size: 0.95em;
  letter-spacing: 1px;
}

.lang-btn:hover {
  color: var(--text);
  background: rgba(255, 0, 0, 0.1);
}

.lang-btn.active {
  background: linear-gradient(45deg, var(--primary), var(--primary2));
  color: var(--text);
  border-color: var(--primary);
  box-shadow: 0 4px 15px var(--shadow-red);
}

.lang-btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg) 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 2px solid var(--primary);
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.3em;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
}

/* Products */
.products {
  padding: 80px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.products h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 60px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.product-card {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--border);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 0, 0, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.product-card:hover::before {
  left: 100%;
}

.product-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 10px 40px var(--shadow-red);
}

.product-icon {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--primary);
}

.product-card h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--text);
}

.product-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1.1em;
}

/* Shared Buttons */
.contact-btn,
.demo-btn,
.comment-submit-btn {
  border: none;
  padding: 15px 40px;
  font-size: 1.1em;
  border-radius: 50px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Contact button */
.contact-btn {
  background: linear-gradient(45deg, var(--primary), var(--primary2));
  color: var(--text);
}

.contact-btn:hover {
  background: linear-gradient(45deg, var(--primary2), var(--primary3));
  transform: scale(1.05);
  box-shadow: 0 5px 20px var(--shadow-red-strong);
}

/* Demo Button + container */
.card-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.demo-btn {
  background: linear-gradient(45deg, var(--primary), var(--primary2));
  color: #fff; /* Kırmızı üstünde siyah istersen kalsın; beyaz istiyorsan #fff yap */
}

.demo-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.demo-btn:hover::before {
  left: 100%;
}

.demo-btn:hover {
  background: linear-gradient(45deg, var(--primary2), var(--primary3));
  transform: scale(1.05);
  box-shadow: 0 5px 20px var(--shadow-red-strong);
}

/* Focus (Accessibility) */
.contact-btn:focus,
.demo-btn:focus,
.profile-link:focus,
.close-btn:focus,
.comment-submit-btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Coming soon badge */
.coming-soon {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary), #ff6600);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 10px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
  }
}

/* About */
.about {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  padding: 80px 20px;
  border-top: 2px solid var(--primary);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.profile-photo {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 4px solid var(--primary);
  object-fit: cover;
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.4);
  display: block;
  margin: 0 auto;
  background: var(--bg);
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.about-content {
  flex: 2;
  min-width: 300px;
}

.about-content h2 {
  font-size: 2.5em;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-content h3 {
  font-size: 1.5em;
  color: var(--text);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.1em;
}

/* Footer */
footer {
  background: var(--bg);
  padding: 40px 20px;
  text-align: center;
  border-top: 2px solid var(--primary);
}

footer p {
  color: var(--muted2);
  font-size: 1em;
}

/* Modal */
.modal[aria-hidden="true"] {
  display: none;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal-content {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
  padding: 50px;
  border-radius: 20px;
  border: 2px solid var(--primary);
  max-width: 560px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: slideIn 0.25s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2em;
  color: var(--primary);
  cursor: pointer;
  background: transparent;
  border: 0;
  line-height: 1;
  transition: transform 0.3s ease;
}

.close-btn:hover {
  transform: rotate(90deg);
}

.contact-info {
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
  text-align: left;
}

.contact-item {
  padding: 15px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.contact-item:hover {
  border-color: var(--primary);
  transform: translateX(5px);
}

.contact-item strong {
  display: inline-block;
  margin-bottom: 6px;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.05em;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--text);
}

.modal-subtitle {
  margin-top: 8px;
  color: var(--muted);
  font-size: 1.05em;
  line-height: 1.5;
}

.profile-links {
  margin-top: 10px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.profile-link {
  color: var(--primary);
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid var(--primary);
  border-radius: 10px;
  transition:
    background 0.3s ease,
    color 0.3s ease;
  display: inline-block;
}

.profile-link:hover {
  background: var(--primary);
  color: #000;
}

/* Blog */
.blog {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  border-top: 2px solid var(--primary);
}

.blog-container {
  max-width: 1400px;
  margin: 0 auto;
}

.blog h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 15px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.blog-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.2em;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.blog-card {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid var(--border);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 0, 0, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.blog-card:hover::before {
  left: 100%;
}

.blog-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 0, 0, 0.2);
}

.blog-date {
  color: var(--primary);
  font-size: 0.9em;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card h3 {
  color: var(--text);
  font-size: 1.4em;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1em;
}

.blog-read-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: color 0.3s ease;
  display: inline-block;
}

.blog-read-more:hover {
  color: var(--text);
}

/* Comments */
.comments {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg3) 100%);
  border-top: 2px solid var(--primary);
}

.comments-container {
  max-width: 900px;
  margin: 0 auto;
}

.comments h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 15px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.comments-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.2em;
  margin-bottom: 50px;
}

.comment-form-container {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid var(--border);
  margin-bottom: 60px;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--text);
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 1em;
}

.form-group input,
.form-group textarea {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 12px 15px;
  color: var(--text);
  font-size: 1em;
  font-family: inherit;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted2);
}

.comment-submit-btn {
  background: linear-gradient(45deg, var(--primary), var(--primary2));
  color: var(--text);
  align-self: flex-start;
}

.comment-submit-btn:hover {
  background: linear-gradient(45deg, var(--primary2), var(--primary3));
  transform: scale(1.05);
  box-shadow: 0 5px 20px var(--shadow-red-strong);
}

.comments-list h3 {
  color: var(--text);
  font-size: 1.8em;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 10px;
}

.comment-item {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
  border: 2px solid var(--border);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.comment-item:hover {
  border-color: var(--primary);
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.1);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.comment-author {
  color: var(--text);
  font-weight: bold;
  font-size: 1.1em;
}

.comment-date {
  color: var(--primary);
  font-size: 0.9em;
  font-weight: bold;
}

/* This class existed but was never used consistently; keep it for safety */
.comment-content {
  color: var(--muted);
  line-height: 1.6;
  font-size: 1em;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2em;
  }

  .logo-container {
    flex-direction: column;
    gap: 20px;
  }

  .language-switcher {
    max-width: 180px;
    justify-content: center;
  }

  .lang-btn {
    justify-content: center;
    padding: 8px 12px;
    min-width: 70px;
  }

  .lang-btn .lang-text {
    font-size: 0.9em;
  }

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

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .modal-content {
    padding: 26px;
  }

  .contact-info {
    text-align: left;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .comment-form-container {
    padding: 25px;
  }

  .comment-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .demo-btn,
  .contact-btn {
    width: 100%;
    padding: 12px 30px;
    font-size: 1em;
    justify-content: center;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

.product-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon-img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  border-radius: 12px; /* görsel kart gibi dursun */
  user-select: none;
  -webkit-user-drag: none;
}

/* ===================== */
/* Blog Detail Page */
/* ===================== */

.blog-detail-section {
  min-height: 60vh;
  padding: 40px 20px;
}

.blog-detail-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  padding: 20px;
  background: var(--bg2);
  border-bottom: 2px solid var(--border);
  margin-bottom: 0;
}

.breadcrumb-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.95em;
}

.breadcrumb-link {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--text);
  text-decoration: underline;
}

.breadcrumb-separator {
  color: var(--muted);
  margin: 0 5px;
  user-select: none;
}

.breadcrumb-current {
  color: var(--text);
  font-weight: 600;
  max-width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Loading State */
.loading-spinner {
  text-align: center;
  padding: 80px 20px;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 5px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 30px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-spinner p {
  color: var(--muted);
  font-size: 1.1em;
}

/* Error State */
.error-container {
  text-align: center;
  padding: 80px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.error-icon {
  font-size: 5em;
  margin-bottom: 20px;
  opacity: 0.8;
}

.error-title {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 2.2em;
}

.error-message {
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 1.15em;
  line-height: 1.6;
}

.back-button {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
  color: var(--text);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.back-button:hover {
  background: linear-gradient(135deg, var(--primary2) 0%, var(--primary3) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-red);
}

/* Blog Article */
.blog-article {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
  border-radius: 15px;
  border: 2px solid var(--border);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Blog Header */
.blog-header {
  padding: 50px 40px 30px;
  border-bottom: 2px solid var(--border);
  background: var(--bg);
}

.blog-title {
  font-size: 2.8em;
  color: var(--text);
  margin-bottom: 25px;
  line-height: 1.3;
  font-weight: bold;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  color: var(--muted);
  font-size: 1em;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-label {
  color: var(--muted2);
  font-weight: 500;
}

.meta-value {
  color: var(--primary);
  font-weight: 700;
}

/* Blog Excerpt */
.blog-excerpt {
  padding: 30px 40px;
  background: rgba(255, 0, 0, 0.05);
  border-left: 4px solid var(--primary);
  margin: 0;
}

.excerpt-text {
  font-size: 1.2em;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin: 0;
}

/* Blog Text Content */
.blog-text {
  padding: 40px;
  font-size: 1.15em;
  line-height: 1.9;
  color: var(--text);
}

.blog-text p {
  margin-bottom: 20px;
}

.blog-text p:last-child {
  margin-bottom: 0;
}

/* Share Section */
.blog-share {
  padding: 40px;
  border-top: 2px solid var(--border);
  background: var(--bg);
}

.share-title {
  color: var(--text);
  font-size: 1.4em;
  margin-bottom: 20px;
  font-weight: 600;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
  border: 2px solid var(--border);
  border-radius: 50px;
  color: var(--text);
  font-size: 0.95em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.share-btn:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.share-btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.share-btn svg {
  flex-shrink: 0;
}

.share-twitter:hover {
  background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
  border-color: #1da1f2;
  color: #fff;
}

.share-facebook:hover {
  background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
  border-color: #1877f2;
  color: #fff;
}

.share-linkedin:hover {
  background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
  border-color: #0077b5;
  color: #fff;
}

.share-whatsapp:hover {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  border-color: #25d366;
  color: #fff;
}

.share-copy:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
  border-color: var(--primary);
}

/* Blog Actions */
.blog-actions {
  padding: 30px 40px;
  text-align: center;
  background: var(--bg);
  border-top: 2px solid var(--border);
}

/* Responsive Design for Blog Detail */
@media (max-width: 768px) {
  .breadcrumb {
    padding: 15px;
  }

  .breadcrumb-container {
    font-size: 0.85em;
  }

  .breadcrumb-current {
    max-width: 200px;
  }

  .blog-title {
    font-size: 2em;
  }

  .blog-header {
    padding: 35px 25px 25px;
  }

  .blog-excerpt {
    padding: 25px;
  }

  .excerpt-text {
    font-size: 1.1em;
  }

  .blog-text {
    padding: 30px 25px;
    font-size: 1.05em;
  }

  .blog-share {
    padding: 30px 25px;
  }

  .blog-actions {
    padding: 25px;
  }

  .blog-meta {
    flex-direction: column;
    gap: 15px;
  }

  .share-buttons {
    flex-direction: column;
  }

  .share-btn {
    width: 100%;
    justify-content: center;
  }

  .back-button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .blog-title {
    font-size: 1.6em;
  }

  .blog-header {
    padding: 25px 20px 20px;
  }

  .blog-excerpt {
    padding: 20px;
  }

  .excerpt-text {
    font-size: 1em;
  }

  .blog-text {
    padding: 25px 20px;
    font-size: 1em;
  }

  .blog-share {
    padding: 25px 20px;
  }

  .blog-actions {
    padding: 20px;
  }

  .breadcrumb {
    padding: 12px;
  }

  .error-icon {
    font-size: 3.5em;
  }

  .error-title {
    font-size: 1.8em;
  }

  .error-message {
    font-size: 1em;
  }
}
