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

:root {
  /* Colors */
  --background: hsl(260, 30%, 8%);
  --foreground: hsl(0, 0%, 98%);
  --card: hsl(260, 30%, 8%);
  --primary: hsl(260, 60%, 45%);
  --primary-light: hsl(260, 60%, 60%);
  --primary-dark: hsl(260, 60%, 30%);
  --secondary: hsl(260, 20%, 16%);
  --muted: hsl(260, 20%, 12%);
  --muted-foreground: hsl(260, 15%, 65%);
  --accent: hsl(42, 95%, 62%);
  --accent-light: hsl(42, 95%, 72%);
  --tertiary: hsl(12, 85%, 62%);
  --tertiary-light: hsl(12, 85%, 72%);
  --success: hsl(142, 76%, 36%);
  --destructive: hsl(0, 84%, 60%);
  --border: hsl(260, 20%, 20%);

  /* Shadows */
  --card-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5),
    0 8px 16px -4px hsla(260, 60%, 45%, 0.3);
  --card-shadow-hover: 0 30px 60px -15px rgba(0, 0, 0, 0.6),
    0 12px 24px -6px hsla(260, 60%, 45%, 0.4);

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Helvetica", "Arial", sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.75rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 17, 47, 0.9),
    rgba(67, 30, 112, 0.1)
  );
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-box {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), hsl(280, 55%, 50%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px hsla(260, 60%, 45%, 0.5);
}

.logo-text {
  color: var(--foreground);
  font-weight: bold;
  font-size: 1.25rem;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  color: var(--muted-foreground);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--background);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -5px var(--accent);
}

.btn-tertiary {
  background: linear-gradient(135deg, var(--tertiary), var(--tertiary-light));
  color: var(--background);
}

.btn-tertiary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -5px var(--tertiary);
}

.btn-lg {
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: url("hero-bg-dark.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), hsl(280, 55%, 50%));
  opacity: 0.95;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 5rem 0;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(30, 17, 47, 0.8),
    rgba(67, 30, 112, 0.1)
  );
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

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

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

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

.hero-description {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 3rem;
}

.hero-text-primary {
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-text-secondary {
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-box {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 4px;
  height: 12px;
  background: var(--accent);
  border-radius: 4px;
  animation: pulse 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Sections */
.section {
  padding: 8rem 0;
}

.section-gradient {
  background: linear-gradient(180deg, var(--background), var(--secondary));
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.5rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-description {
  font-size: 1.125rem;
  color: var(--foreground);
  max-width: 700px;
  margin: 0 auto;
}

/* Grids */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

/* Cards */
.card {
  background: linear-gradient(
    135deg,
    rgba(30, 17, 47, 0.8),
    rgba(67, 30, 112, 0.1)
  );
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.card-hover:hover {
  transform: scale(1.05);
  box-shadow: var(--card-shadow-hover);
}

.card-content {
  display: flex;
  gap: 1.5rem;
}

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.icon-destructive {
  background: rgba(var(--destructive), 0.2);
}

.card-text {
  flex: 1;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* CTA Box */
.cta-box {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 5rem;
}

.cta-box .card {
  border: 2px solid rgba(var(--tertiary), 0.3);
  box-shadow: 0 0 45px hsla(12, 85%, 62%, 0.4);
}

.cta-text {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
}

/* Solution Cards */
.solution-card {
  background: linear-gradient(
    135deg,
    rgba(30, 17, 47, 0.8),
    rgba(67, 30, 112, 0.1)
  );
  backdrop-filter: blur(16px);
  border: 1px solid rgba(var(--primary), 0.1);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.solution-card:hover {
  transform: scale(1.05);
  box-shadow: var(--card-shadow-hover);
}

.solution-header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.icon-box-lg {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
  transition: var(--transition-bounce);
}

.icon-gradient {
  background: linear-gradient(135deg, var(--primary), hsl(280, 55%, 50%));
  box-shadow: 0 0 60px hsla(260, 60%, 45%, 0.5);
}

.solution-card:hover .icon-box-lg {
  transform: scale(1.1);
}

.solution-meta {
  flex: 1;
}

.highlight-badge {
  display: inline-block;
  background: rgba(var(--tertiary), 0.2);
  color: var(--tertiary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--tertiary), 0.3);
  margin-bottom: 1rem;
}

.solution-title {
  font-size: 1.5rem;
}

.solution-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Differentiation Cards */
.diff-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.diff-card:hover {
  box-shadow: var(--card-shadow-hover);
}

.diff-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.icon-box-md {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.icon-accent {
  color: var(--accent);
}
.icon-primary {
  color: var(--primary);
}
.icon-tertiary {
  color: var(--tertiary);
}

.diff-title {
  font-size: 1.125rem;
  flex: 1;
}

.diff-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Service Cards */
.service-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.service-card:hover {
  box-shadow: var(--card-shadow-hover);
}

.service-card .icon-box-md {
  margin-bottom: 1rem;
  transition: var(--transition-bounce);
}

.service-card:hover .icon-box-md {
  transform: scale(1.1);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.service-features li:before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
}

/* Outcomes Box */
.outcomes-box {
  background: rgba(var(--primary), 0.05);
  border: 1px solid rgba(var(--primary), 0.2);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.outcomes-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.outcome-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.outcomes-note {
  text-align: center;
  color: var(--muted-foreground);
  font-style: italic;
}

/* Engagement Cards */
.engagement-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  position: relative;
}

.engagement-card:hover {
  box-shadow: var(--card-shadow-hover);
}

.engagement-card:first-child {
  border-color: var(--primary);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--background);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.engagement-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--muted);
}

.engagement-card:first-child .engagement-icon {
  background: linear-gradient(135deg, var(--primary), hsl(280, 55%, 50%));
}

.engagement-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.25rem;
}

.engagement-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 1rem;
}

.engagement-description {
  color: var(--muted-foreground);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.engagement-features {
  list-style: none;
  padding: 0;
}

.engagement-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

/* Qualification Box */
.qualification-box {
  background: var(--card);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  max-width: 900px;
  margin: 0 auto;
  margin-top: 5rem;
}

.qualification-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.qualification-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 2rem;
}

.qualification-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qualification-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: rgba(var(--success), 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--success);
  font-weight: bold;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.faq-item:hover {
  box-shadow: var(--card-shadow-hover);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: var(--transition-smooth);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--primary), hsl(280, 55%, 50%));
  position: relative;
  overflow: hidden;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

.cta-description {
  font-size: 1.5rem;
  font-weight: 500;
  max-width: 900px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.cta-footer {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  font-weight: 500;
}

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

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-box-footer {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), hsl(280, 55%, 50%));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box-footer .logo-text {
  font-size: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--foreground);
}

.footer-copyright {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

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

/**blog listing page**/
.dsbp-blog-section {
  padding: 80px 20px;
  margin-top: 100px;
}

/* Container */
.dsbp-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Header */
.dsbp-header {
  text-align: center;
  margin-bottom: 48px;
}

.dsbp-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.dsbp-subtitle {
  font-size: 18px;
  color: #a1a1aa;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Filters */
.dsbp-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.dsbp-filter-btn {
  padding: 10px 20px;
  border: 1px solid #27272a;
  background-color: transparent;
  color: #a1a1aa;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dsbp-filter-btn:hover {
  border-color: #3f3f46;
  background-color: #18181b;
  color: #e4e4e7;
}

.dsbp-filter-active {
  background-color: #ffffff;
  color: #0a0a0a;
  border-color: #ffffff;
}

.dsbp-filter-active:hover {
  background-color: #f4f4f5;
  border-color: #f4f4f5;
}

/* Grid */
.dsbp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

/* Card */
.dsbp-card {
  background-color: #18181b;
  border: 1px solid #27272a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.dsbp-card:hover {
  border-color: #3f3f46;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.dsbp-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: #27272a;
}

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

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

.dsbp-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dsbp-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.dsbp-category {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  background-color: #27272a;
  padding: 4px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dsbp-date {
  font-size: 13px;
  color: #71717a;
}

.dsbp-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.dsbp-card-excerpt {
  font-size: 15px;
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.dsbp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #27272a;
}

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

.dsbp-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #27272a;
}

.dsbp-author-name {
  font-size: 14px;
  font-weight: 500;
  color: #e4e4e7;
}

.dsbp-read-time {
  font-size: 13px;
  color: #71717a;
}

/* Load More */
.dsbp-load-more {
  display: flex;
  justify-content: center;
}

.dsbp-load-btn {
  padding: 14px 32px;
  background-color: #ffffff;
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dsbp-load-btn:hover {
  background-color: #f4f4f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .dsbp-blog-section {
    padding: 48px 16px;
  }

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

  .dsbp-subtitle {
    font-size: 16px;
  }

  .dsbp-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .dsbp-card-title {
    font-size: 20px;
  }

  .dsbp-filters {
    justify-content: flex-start;
  }
}

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

  .dsbp-subtitle {
    font-size: 15px;
  }

  .dsbp-card-content {
    padding: 20px;
  }

  .dsbp-card-title {
    font-size: 18px;
  }

  .dsbp-card-excerpt {
    font-size: 14px;
  }

  .dsbp-filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .dsbp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Blog Detail Page Styles */

.dsbp-detail-section {
  background-color: #000000;
  padding: 60px 20px;
  margin-top: 100px;
}

/* Back Button */
.dsbp-back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a0a0a0;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 40px;
  transition: color 0.3s ease;
}

.dsbp-back-button:hover {
  color: #ffffff;
}

/* Article */
.dsbp-article {
  max-width: 800px;
  margin: 0 auto;
}

/* Article Header */
.dsbp-article-header {
  margin-bottom: 40px;
}

.dsbp-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.dsbp-article-category {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.dsbp-article-date,
.dsbp-article-read-time {
  color: #808080;
  font-size: 14px;
}

.dsbp-article-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.dsbp-article-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dsbp-article-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.dsbp-article-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dsbp-article-author-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.dsbp-article-author-bio {
  font-size: 14px;
  color: #808080;
  margin: 0;
}

/* Featured Image */
.dsbp-article-featured-image {
  width: 100%;
  margin-bottom: 48px;
  border-radius: 12px;
  overflow: hidden;
}

.dsbp-article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Article Content */
.dsbp-article-content {
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.8;
}

.dsbp-article-lead {
  font-size: 22px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 40px;
  font-weight: 400;
}

.dsbp-article-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 48px;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.dsbp-article-content p {
  margin-bottom: 24px;
}

.dsbp-article-quote {
  background-color: #1a1a1a;
  border-left: 4px solid #ffffff;
  padding: 24px 32px;
  margin: 40px 0;
  font-size: 20px;
  font-style: italic;
  color: #ffffff;
  line-height: 1.6;
}

.dsbp-article-image {
  margin: 48px 0;
}

.dsbp-article-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.dsbp-article-image-caption {
  text-align: center;
  font-size: 14px;
  color: #808080;
  margin-top: 12px;
  font-style: italic;
}

.dsbp-article-list {
  margin: 24px 0;
  padding-left: 24px;
}

.dsbp-article-list li {
  margin-bottom: 12px;
  color: #d0d0d0;
}

/* Article Footer */
.dsbp-article-footer {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid #2a2a2a;
}

.dsbp-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.dsbp-article-tag {
  background-color: #1a1a1a;
  color: #a0a0a0;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.dsbp-article-tag:hover {
  background-color: #2a2a2a;
  color: #ffffff;
}

.dsbp-article-share {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dsbp-article-share-label {
  color: #808080;
  font-size: 14px;
  font-weight: 500;
}

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

.dsbp-share-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1a1a1a;
  border: none;
  color: #a0a0a0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dsbp-share-button:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
}

/* Author Bio Section */
.dsbp-author-bio-section {
  max-width: 800px;
  margin: 64px auto 0;
}

.dsbp-author-bio-card {
  background-color: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.dsbp-author-bio-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.dsbp-author-bio-content {
  flex: 1;
}

.dsbp-author-bio-name {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.dsbp-author-bio-title {
  font-size: 14px;
  color: #808080;
  margin: 0 0 16px 0;
}

.dsbp-author-bio-description {
  font-size: 16px;
  line-height: 1.6;
  color: #d0d0d0;
  margin-bottom: 20px;
}

.dsbp-author-bio-social {
  display: flex;
  gap: 20px;
}

.dsbp-author-social-link {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.dsbp-author-social-link:hover {
  color: #ffffff;
}

/* Related Posts */
.dsbp-related-posts {
  max-width: 1200px;
  margin: 80px auto 0;
}

.dsbp-related-posts-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
  text-align: center;
}

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

.dsbp-related-post-card {
  background-color: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.dsbp-related-post-card:hover {
  transform: translateY(-4px);
  border-color: #404040;
}

.dsbp-related-post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.dsbp-related-post-content {
  padding: 24px;
}

.dsbp-related-post-category {
  display: inline-block;
  background-color: #1a1a1a;
  color: #a0a0a0;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  margin-bottom: 12px;
}

.dsbp-related-post-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.dsbp-related-post-excerpt {
  font-size: 14px;
  color: #808080;
  line-height: 1.6;
  margin-bottom: 16px;
}

.dsbp-related-post-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.dsbp-related-post-link:hover {
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .dsbp-related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dsbp-detail-section {
    padding: 40px 20px;
  }

  .dsbp-back-button {
    margin-bottom: 32px;
  }

  .dsbp-article-title {
    font-size: 36px;
  }

  .dsbp-article-lead {
    font-size: 18px;
  }

  .dsbp-article-content {
    font-size: 16px;
  }

  .dsbp-article-content h2 {
    font-size: 28px;
    margin-top: 40px;
  }

  .dsbp-article-quote {
    padding: 20px 24px;
    font-size: 18px;
  }

  .dsbp-author-bio-card {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
    align-items: center;
  }

  .dsbp-author-bio-social {
    justify-content: center;
  }

  .dsbp-related-posts-grid {
    grid-template-columns: 1fr;
  }

  .dsbp-related-posts-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .dsbp-article-title {
    font-size: 28px;
  }

  .dsbp-article-meta {
    gap: 12px;
  }

  .dsbp-article-author-avatar {
    width: 48px;
    height: 48px;
  }

  .dsbp-article-content h2 {
    font-size: 24px;
  }

  .dsbp-article-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .dsbp-author-bio-avatar {
    width: 100px;
    height: 100px;
  }

  .dsbp-author-bio-name {
    font-size: 20px;
  }
}
