/* 24Picture - Enhanced Styles */

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

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #000000;
  -webkit-font-smoothing: antialiased;
}

/* Video Background */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(240, 240, 240, 0.9) 0%,
    rgba(240, 240, 240, 0.8) 50%,
    rgba(240, 240, 240, 0.9) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  z-index: 100;
}

.logo,
.logo:visited {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000000;
  text-decoration: none;
}

.nav-capsule {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 0.375rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.nav-indicator {
  position: absolute;
  height: calc(100% - 0.75rem);
  top: 0.375rem;
  left: 0;
  background: #1a1a1a;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}

.nav-indicator.active {
  opacity: 1;
}

.nav-capsule a,
.nav-capsule a:visited {
  color: #555555;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  transition: color 0.35s;
  position: relative;
  z-index: 1;
  border-radius: 100px;
}

.nav-capsule a:hover {
  color: #000000;
}

.nav-capsule a.active,
.nav-capsule .nav-active-item {
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  position: relative;
  z-index: 1;
  border-radius: 100px;
  cursor: default;
  pointer-events: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-switcher {
  position: relative;
}
.language-btn {
  background: transparent;
  border: none;
  color: #666666;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.2s;
}

.language-btn:hover {
  color: #000000;
}

.language-btn::after {
  content: '▼';
  font-size: 0.625rem;
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.language-switcher:hover .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu a,
.language-menu a:visited {
  display: block;
  padding: 0.625rem 0.875rem;
  color: #666666;
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: 8px;
  transition: all 0.2s;
}

.language-menu a:hover {
  background: #f5f5f5;
  color: #000000;
}

.language-menu a.active {
  color: #000000;
  font-weight: 600;
}

.subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #2c2c2c;
  color: #ffffff;
  border: none;
  padding: 0.625rem 1.5rem;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.subscribe-btn i {
  font-size: 1.1rem;
}

.subscribe-btn:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}

* {
  -webkit-tap-highlight-color: transparent;
}

/* Subscribe Modal */
.subscribe-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.subscribe-modal-overlay.active {
  display: flex;
}

.subscribe-modal {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15);
  animation: modalIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.subscribe-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.subscribe-modal-close:hover {
  color: #333;
}

.subscribe-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.subscribe-modal-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.subscribe-modal-desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.subscribe-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.subscribe-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e5e5e5;
  border-radius: 14px;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s;
}

.subscribe-input:focus {
  border-color: #1a1a1a;
}

.subscribe-submit {
  padding: 0.875rem 1.75rem;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}

.subscribe-submit:hover {
  background: #333;
  transform: translateY(-1px);
}

.subscribe-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.subscribe-privacy {
  font-size: 0.8125rem;
  color: #999;
  line-height: 1.5;
}

.subscribe-privacy a {
  color: #666;
  text-decoration: underline;
}

.subscribe-success {
  text-align: center;
  padding: 1rem 0;
}

.subscribe-success i {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 1rem;
  display: block;
}

.subscribe-success p {
  font-size: 1.0625rem;
  color: #333;
  font-weight: 600;
  line-height: 1.6;
}

.subscribe-feedback {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
}

.subscribe-error {
  color: #dc2626;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 8rem 3rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 900px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #000000;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  line-height: 0.95;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.hero-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.04em 0.22em 0.1em;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
  isolation: isolate;
}

.hero-brand-text {
  position: relative;
  z-index: 2;
  color: #000000;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.hero-brand::before {
  content: "";
  position: absolute;
  inset: 0.04em 0.04em 0.02em;
  border-radius: 0.18em;
  background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.7), transparent 34%), linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.08));
  opacity: 0.55;
  transform: rotate(-1.5deg);
  z-index: -1;
  animation: hero-brand-card 5.6s ease-in-out infinite;
}

.hero-brand-orbit {
  position: absolute;
  inset: -0.18em -0.4em;
  z-index: 3;
  pointer-events: none;
}

.hero-brand-orbit i {
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #111111;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-brand-orbit i:nth-child(1) {
  left: -0.3rem;
  top: 18%;
  animation: hero-brand-float-a 5.2s ease-in-out infinite;
}

.hero-brand-orbit i:nth-child(2) {
  right: -0.45rem;
  top: 44%;
  animation: hero-brand-float-b 5.8s ease-in-out infinite;
}

.hero-brand-orbit i:nth-child(3) {
  right: 14%;
  bottom: 0.05rem;
  animation: hero-brand-float-c 6.2s ease-in-out infinite;
}

.hero-title-line {
  display: block;
  max-width: 980px;
  font-size: clamp(1.85rem, 4.1vw, 4.05rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

@keyframes hero-brand-card {
  0%, 100% { transform: rotate(-1.5deg) scale(1); }
  45% { transform: rotate(1.2deg) scale(1.015); }
}

@keyframes hero-brand-float-a {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  48% { transform: translate(0.55rem, -0.28rem) rotate(8deg); }
}

@keyframes hero-brand-float-b {
  0%, 100% { transform: translate(0, 0) rotate(10deg); }
  46% { transform: translate(-0.45rem, 0.35rem) rotate(190deg); }
}

@keyframes hero-brand-float-c {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  52% { transform: translate(-0.25rem, -0.35rem) rotate(-10deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-brand::before,
  .hero-brand-orbit i {
    animation: none;
  }
}

@media (max-width: 640px) {
  .hero-title {
    gap: 0.5rem;
  }

  .hero-brand {
    font-size: clamp(2.75rem, 14vw, 4.8rem);
  }

  .hero-title-line {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }

  .hero-brand-orbit i {
    width: 1.45rem;
    height: 1.45rem;
    font-size: 0.82rem;
  }
}

.hero-tagline {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #000000;
  margin-bottom: 0;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

/* Search Box - Minimalist Pill Design */
.search-box {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 10;
  --search-button-width: 132px;
  --search-clear-size: 42px;
}

.search-input {
  width: 100%;
  padding: 1.125rem calc(var(--search-button-width) + var(--search-clear-size) + 2.75rem) 1.125rem 2rem;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #333333;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  background: rgba(242, 242, 244, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Nunito', sans-serif;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.search-input:focus {
  outline: none;
  background: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.search-input::placeholder {
  color: #7a7a7a;
  font-weight: 400;
}

.search-clear {
  position: absolute;
  top: 50%;
  right: calc(var(--search-button-width) + 0.85rem);
  transform: translateY(-50%);
  width: var(--search-clear-size);
  height: var(--search-clear-size);
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #767676;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, color 0.2s ease, background 0.2s ease;
  z-index: 2;
}

.search-box.has-value .search-clear {
  opacity: 1;
  pointer-events: auto;
}

.search-clear:hover {
  color: #1a1a1a;
  background: rgba(0, 0, 0, 0.06);
}

.search-clear:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

.search-button {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: var(--search-button-width);
  height: calc(100% - 0.8rem);
  padding: 0 1.25rem;
  border: none;
  border-radius: 100px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.search-button:hover {
  transform: translateY(calc(-50% - 1px));
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.search-button:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

.search-button:disabled {
  opacity: 0.8;
  cursor: wait;
}

.search-loading-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
}

.search-loading-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-loading-spinner {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 4px solid rgba(0, 0, 0, 0.12);
  border-top-color: #1a1a1a;
  animation: searchSpin 0.8s linear infinite;
}

@keyframes searchSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/* Category Filters - High-End Design */
.category-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
}

.category-filters.search-hidden {
  display: none;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #4a4a4a;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Nunito', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: visible;
}

.category-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.category-btn.active {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.2);
}

.category-icon {
  font-size: 1.25rem;
  line-height: 1;
  position: relative;
  transition: filter 0.35s ease, text-shadow 0.35s ease, opacity 0.35s ease;
}

.category-btn.category-animating .category-icon {
  animation: category-spin 7s linear infinite, category-ghost 1.8s ease-in-out infinite;
  opacity: 1;
}

.category-btn.category-leaving .category-icon {
  animation-play-state: paused;
  opacity: 0.65;
  filter: blur(0.2px);
}

@keyframes category-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes category-ghost {
  0%   { text-shadow: 0 0 0 rgba(255,255,255,0.18), 0 0 0 rgba(255,255,255,0.08); }
  35%  { text-shadow: 4px 6px 12px rgba(255,255,255,0.22), -2px -2px 0 rgba(255,255,255,0.12); }
  65%  { text-shadow: -6px -6px 10px rgba(255,255,255,0.18), 3px 3px 0 rgba(255,255,255,0.16); }
  100% { text-shadow: 0 0 0 rgba(255,255,255,0.18), 0 0 0 rgba(255,255,255,0.08); }
}

/* Tools Grid - High-End Design */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.search-results-actions {
  display: none;
  justify-content: center;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

.search-results-actions.active {
  display: flex;
}

.search-results-reset {
  border: none;
  background: transparent;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.search-results-reset:hover {
  color: #000000;
}

.tool-card,
.tool-card:visited {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
}

.tool-card::before {
  display: none;
}

.tool-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.95);
}

.tool-icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.tool-card:hover .tool-icon-wrapper {
  background: #1a1a1a;
  transform: scale(1.05) rotate(-5deg);
}

.tool-icon {
  font-size: 1.75rem;
  color: #1a1a1a;
  transition: all 0.4s ease;
}

.tool-card:hover .tool-icon {
  color: #ffffff;
}

.tool-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.tool-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
  transition: color 0.4s ease;
}

.tool-desc {
  font-size: 0.9375rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  transition: color 0.4s ease;
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  background: rgba(0, 0, 0, 0.04);
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
  margin-top: 0.5rem;
  transition: all 0.4s ease;
}

.tool-card:hover .tool-badge {
  background: rgba(0, 0, 0, 0.08);
}

.tool-badge-premium {
  background: #1a1a1a;
  color: #ffffff;
  border: none;
}

.tool-card-premium {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.85);
}

.tool-card-premium .tool-icon-wrapper {
  background: #1a1a1a;
}

.tool-card-premium .tool-icon {
  color: #ffffff;
}

.tool-card-premium:hover {
  background: #1a1a1a;
  border-color: transparent;
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.tool-card-premium:hover .tool-icon-wrapper {
  background: #ffffff;
  transform: scale(1.05) rotate(5deg);
}

.tool-card-premium:hover .tool-icon {
  color: #1a1a1a;
}

.tool-card-premium:hover .tool-title {
  color: #ffffff;
}

.tool-card-premium:hover .tool-desc {
  color: rgba(255, 255, 255, 0.8);
}

.tool-card-premium:hover .tool-badge-premium {
  background: #ffffff;
  color: #1a1a1a;
}

.btn-view-all,
.btn-view-all:visited {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Nunito', sans-serif;
}

.btn-view-all:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  gap: 0.75rem;
}

/* Pricing Section */
.pricing-section {
  min-height: 100vh;
  padding: 6rem 3rem;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pricing-grid {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.pricing-card-featured {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card-featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-card-featured .pricing-card-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-period {
  font-size: 1rem;
  color: #999999;
  font-weight: 600;
}

.pricing-card-featured .pricing-period {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-plan-desc {
  font-size: 0.9375rem;
  color: #666666;
  line-height: 1.5;
}

.pricing-card-featured .pricing-plan-desc {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #333333;
}

.pricing-card-featured .pricing-features li {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-features li i {
  font-size: 1.25rem;
  color: #1a1a1a;
  flex-shrink: 0;
}

.pricing-card-featured .pricing-features li i {
  color: #ffffff;
}

.pricing-feature-disabled {
  opacity: 0.4;
}

.pricing-btn,
.pricing-btn:visited {
  display: block;
  width: 100%;
  padding: 0.875rem 1.5rem;
  text-align: center;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Nunito', sans-serif;
  background: rgba(0, 0, 0, 0.04);
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-btn:hover {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

.pricing-btn-featured,
.pricing-btn-featured:visited {
  background: #ffffff;
  color: #1a1a1a;
  border-color: #ffffff;
}

.pricing-btn-featured:hover {
  background: #f0f0f0;
  color: #000000;
  border-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* About Section - Infinite Marquee */
.about-section {
  padding: 20px 3rem;
  background: #000000;
  overflow: hidden;
  position: relative;
}

.about-section::before,
.about-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.about-section::before {
  left: 0;
  background: linear-gradient(to right, #000000 0%, transparent 100%);
}

.about-section::after {
  right: 0;
  background: linear-gradient(to left, #000000 0%, transparent 100%);
}

.about-marquee-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-row {
  overflow: hidden;
  white-space: nowrap;
  padding: 0.75rem 0;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  will-change: transform;
}

.marquee-left .marquee-track {
  animation: marquee-scroll-left 25s linear infinite;
}

.marquee-right .marquee-track {
  animation: marquee-scroll-right 25s linear infinite;
}

.marquee-slow .marquee-track {
  animation-duration: 35s;
}

.marquee-fast .marquee-track {
  animation-duration: 18s;
}

@keyframes marquee-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-text {
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  padding: 0 0.5rem;
  flex-shrink: 0;
}

.marquee-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35);
}

.marquee-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  flex-shrink: 0;
  margin: 0 1.5rem;
}

/* Footer - Pure Black Redesign */
footer {
  background: #000000;
  color: #ffffff;
  padding: 5rem 3rem 2rem;
  position: relative;
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-block {
  max-width: 500px;
}

.footer-brand {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1;
}

.footer-tagline {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  font-weight: 600;
}

.footer-cta,
.footer-cta:visited {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: #ffffff;
  color: #000000;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Nunito', sans-serif;
  flex-shrink: 0;
}

.footer-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
  gap: 0.75rem;
}

.footer-nav {
  max-width: 1400px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-section h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
}

.footer-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.92;
}

.footer-badge:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.footer-badge img {
  display: block;
  width: auto;
  max-width: 100%;
}

.footer-badge-gh {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  background: #24292f;
  color: #ffffff;
  border: 1px solid #444c56;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0.92;
}

.footer-badge-gh:hover {
  background: #1f242b;
  color: #ffffff;
  border-color: #6e7681;
  opacity: 1;
}

.footer-badge-gh i {
  font-size: 18px;
  line-height: 1;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.875rem;
}

.footer-links a,
.footer-links a:visited {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links a i {
  font-size: 1.125rem;
}

/* Footer Recent Updates */
.footer-updates {
  max-width: 1400px;
  margin: 0 auto 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-updates h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
}

.footer-updates-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.footer-update-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: background 0.2s;
}

.footer-update-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.footer-update-ver {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.625rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.footer-update-text {
  flex: 1;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-update-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 600;
  flex-shrink: 0;
}

.footer-updates-all {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-updates-all:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8125rem;
  font-weight: 600;
}

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

.footer-bottom-links a,
.footer-bottom-links a:visited {
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }

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

  .blog-featured-image {
    height: 260px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }

  .pricing-card-featured {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }

  .marquee-text {
    font-size: clamp(1.75rem, 3.5vw, 3.5rem);
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
  }

  .nav-capsule {
    display: none;
  }

  .logo {
    font-size: 1.25rem;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .search-box {
    max-width: 100%;
    --search-button-width: 118px;
    --search-clear-size: 38px;
  }

  .search-button {
    padding-inline: 1rem;
  }

  .category-filters {
    gap: 0.5rem;
  }

  .category-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }

  .search-input {
    padding-left: 1.25rem;
  }

  .search-results-reset {
    font-size: 0.95rem;
  }

  .tool-card {
    padding: 1.5rem 1.25rem;
  }

  .tool-icon {
    font-size: 2rem;
  }

  .tool-title {
    font-size: 1.125rem;
  }

  .tool-desc {
    font-size: 0.875rem;
  }

  .blog-section,
  .pricing-section {
    padding: 4rem 1.5rem;
  }

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

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

  .blog-featured-image {
    height: 200px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card-featured {
    transform: none;
    max-width: none;
    grid-column: auto;
  }

  .pricing-card-featured:hover {
    transform: translateY(-8px);
  }

  .hero-header {
    text-align: center;
  }

  .hero {
    align-items: center;
  }

  .marquee-text {
    font-size: clamp(1.25rem, 3vw, 2.5rem);
  }

  footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
  }

  .footer-brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .subscribe-modal-overlay {
    padding: 1rem;
    align-items: center;
  }

  .subscribe-modal {
    padding: 1.75rem 1.5rem;
    border-radius: 20px;
    max-width: 100%;
  }

  .subscribe-modal-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .subscribe-modal-title {
    font-size: 1.375rem;
  }

  .subscribe-modal-desc {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .subscribe-input-group {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 0.5rem !important;
  }

  .subscribe-input {
    padding: 0.8125rem 1rem;
    border-radius: 12px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .subscribe-submit {
    padding: 0.8125rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    width: 100% !important;
    box-sizing: border-box;
  }

  .subscribe-modal-close {
    top: 1rem;
    right: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════
   Animated Blog Cards — CSS-only "GIF-like" illustrations
   ═══════════════════════════════════════════════════════ */
.blog-anim {
  position: relative;
  overflow: hidden;
}
.blog-anim .ba { position: absolute; pointer-events: none; }
.blog-anim i { position: relative; z-index: 2; }

/* ── 1. Image Editor ─────────────────────────────────── */
.blog-anim-editing {
  background: linear-gradient(135deg, #ede7f6 0%, #d1c4e9 100%);
}
.blog-anim-editing i { color: #5c6bc0; font-size: 2.2rem; animation: ba-editing-icon 3s ease-in-out infinite; }
.blog-anim-editing .ba-1 {
  width: 50px; height: 35px; background: rgba(255,255,255,0.7); border: 2px solid rgba(92,107,192,0.2);
  border-radius: 4px; top: 20%; left: 15%; animation: ba-layer1 3s ease-in-out infinite;
}
.blog-anim-editing .ba-2 {
  width: 50px; height: 35px; background: rgba(255,255,255,0.5); border: 2px solid rgba(92,107,192,0.15);
  border-radius: 4px; top: 28%; left: 19%; animation: ba-layer2 3s ease-in-out infinite 0.2s;
}
.blog-anim-editing .ba-3 {
  width: 50px; height: 35px; background: rgba(255,255,255,0.3); border: 2px solid rgba(92,107,192,0.1);
  border-radius: 4px; top: 36%; left: 23%; animation: ba-layer3 3s ease-in-out infinite 0.4s;
}
.blog-anim-editing .ba-4 {
  width: 8px; height: 8px; border-radius: 50%; background: #7c4dff; top: 22%; right: 20%;
  animation: ba-dot-pulse 1.5s ease-in-out infinite;
}
.blog-anim-editing .ba-5 {
  width: 6px; height: 6px; border-radius: 50%; background: #e040fb; top: 65%; left: 18%;
  animation: ba-dot-pulse 1.5s ease-in-out infinite 0.5s;
}
@keyframes ba-editing-icon { 0%,100%{ transform: rotate(0deg); } 30%{ transform: rotate(-12deg) translateX(-2px); } 60%{ transform: rotate(8deg) translateX(2px); } }
@keyframes ba-layer1 { 0%,100%{ transform: translate(0,0) rotate(-3deg); opacity: 0.9; } 50%{ transform: translate(4px,-8px) rotate(0deg); opacity: 1; } }
@keyframes ba-layer2 { 0%,100%{ transform: translate(0,0) rotate(2deg); opacity: 0.7; } 50%{ transform: translate(-2px,-6px) rotate(-1deg); opacity: 0.9; } }
@keyframes ba-layer3 { 0%,100%{ transform: translate(0,0) rotate(0deg); opacity: 0.5; } 50%{ transform: translate(-4px,-4px) rotate(1deg); opacity: 0.7; } }
@keyframes ba-dot-pulse { 0%,100%{ transform: scale(1); opacity: 0.6; } 50%{ transform: scale(1.8); opacity: 1; } }

/* ── 2. GIF vs MP4 ───────────────────────────────────── */
.blog-anim-gifmp4 {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}
.blog-anim-gifmp4 i { color: #1e88e5; font-size: 2.2rem; animation: ba-gifmp4-icon 2s ease-in-out infinite; }
.blog-anim-gifmp4 .ba-1 {
  width: 36px; height: 28px; border: 2.5px solid #42a5f5; border-radius: 4px;
  top: 25%; left: 18%; animation: ba-frame-blink 1.2s steps(1) infinite;
}
.blog-anim-gifmp4 .ba-2 {
  width: 36px; height: 28px; border: 2.5px solid #1565c0; border-radius: 6px;
  top: 25%; right: 18%; background: rgba(21,101,192,0.08);
}
.blog-anim-gifmp4 .ba-2::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 0; height: 0; border-left: 8px solid #1565c0; border-top: 5px solid transparent; border-bottom: 5px solid transparent;
}
.blog-anim-gifmp4 .ba-3 {
  width: 20px; height: 2px; background: #42a5f5; top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: ba-arrow-flow 1.5s ease-in-out infinite;
}
.blog-anim-gifmp4 .ba-3::after {
  content: ''; position: absolute; right: -4px; top: -3px;
  border-left: 6px solid #42a5f5; border-top: 4px solid transparent; border-bottom: 4px solid transparent;
}
.blog-anim-gifmp4 .ba-4 {
  font-size: 0.5rem; font-weight: 800; color: #42a5f5; top: 56%; left: 20%;
  letter-spacing: 0.05em;
}
.blog-anim-gifmp4 .ba-4::after { content: 'GIF'; }
.blog-anim-gifmp4 .ba-5 {
  font-size: 0.5rem; font-weight: 800; color: #1565c0; top: 56%; right: 20%;
  letter-spacing: 0.05em;
}
.blog-anim-gifmp4 .ba-5::after { content: 'MP4'; }
@keyframes ba-gifmp4-icon { 0%,100%{ transform: scale(1); } 50%{ transform: scale(1.1); } }
@keyframes ba-frame-blink { 0%,49%{ background: rgba(66,165,245,0.15); } 50%,100%{ background: rgba(66,165,245,0.05); } }
@keyframes ba-arrow-flow { 0%{ opacity: 0.3; transform: translate(-60%,-50%) scaleX(0.6); } 50%{ opacity: 1; transform: translate(-50%,-50%) scaleX(1); } 100%{ opacity: 0.3; transform: translate(-40%,-50%) scaleX(0.6); } }

/* ── 3. GIF Creation ─────────────────────────────────── */
.blog-anim-gifcreate {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}
.blog-anim-gifcreate i { color: #43a047; font-size: 2.2rem; animation: ba-gifcreate-bounce 2s ease-in-out infinite; }
.blog-anim-gifcreate .ba-1,
.blog-anim-gifcreate .ba-2,
.blog-anim-gifcreate .ba-3,
.blog-anim-gifcreate .ba-4,
.blog-anim-gifcreate .ba-5 {
  width: 24px; height: 18px; border: 2px solid rgba(67,160,71,0.3); border-radius: 3px;
  background: rgba(255,255,255,0.5); bottom: 18%; animation: ba-filmstrip 4s linear infinite;
}
.blog-anim-gifcreate .ba-1 { left: -10%; animation-delay: 0s; }
.blog-anim-gifcreate .ba-2 { left: -10%; animation-delay: 0.8s; }
.blog-anim-gifcreate .ba-3 { left: -10%; animation-delay: 1.6s; }
.blog-anim-gifcreate .ba-4 { left: -10%; animation-delay: 2.4s; }
.blog-anim-gifcreate .ba-5 { left: -10%; animation-delay: 3.2s; }
@keyframes ba-gifcreate-bounce { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-4px); } }
@keyframes ba-filmstrip { 0%{ transform: translateX(0); opacity: 0; } 10%{ opacity: 1; } 90%{ opacity: 1; } 100%{ transform: translateX(calc(100% + 200px)); opacity: 0; } }

/* ── 4. Meme Maker ───────────────────────────────────── */
.blog-anim-meme {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
}
.blog-anim-meme i { color: #e91e63; font-size: 2.2rem; animation: ba-meme-wobble 1.5s ease-in-out infinite; }
.blog-anim-meme .ba-1 {
  top: 12%; left: 50%; transform: translateX(-50%);
  width: 60%; height: 14px; background: rgba(0,0,0,0.75); border-radius: 3px;
  animation: ba-meme-slam-top 2s ease-out infinite;
}
.blog-anim-meme .ba-2 {
  bottom: 12%; left: 50%; transform: translateX(-50%);
  width: 50%; height: 14px; background: rgba(0,0,0,0.75); border-radius: 3px;
  animation: ba-meme-slam-bottom 2s ease-out infinite 0.3s;
}
.blog-anim-meme .ba-3 {
  font-size: 1.2rem; top: 18%; right: 12%; animation: ba-emoji-float 2.5s ease-in-out infinite;
}
.blog-anim-meme .ba-3::after { content: '😂'; }
.blog-anim-meme .ba-4 {
  font-size: 1rem; bottom: 20%; left: 12%; animation: ba-emoji-float 2.5s ease-in-out infinite 0.8s;
}
.blog-anim-meme .ba-4::after { content: '🔥'; }
.blog-anim-meme .ba-5 {
  font-size: 0.9rem; top: 30%; right: 22%; animation: ba-emoji-float 2.5s ease-in-out infinite 1.5s;
}
.blog-anim-meme .ba-5::after { content: '💀'; }
@keyframes ba-meme-wobble { 0%,100%{ transform: rotate(0deg); } 25%{ transform: rotate(-5deg); } 75%{ transform: rotate(5deg); } }
@keyframes ba-meme-slam-top { 0%{ transform: translateX(-50%) translateY(-30px); opacity: 0; } 15%{ transform: translateX(-50%) translateY(2px); opacity: 1; } 20%{ transform: translateX(-50%) translateY(0); } 80%{ opacity: 1; } 100%{ opacity: 0.6; } }
@keyframes ba-meme-slam-bottom { 0%{ transform: translateX(-50%) translateY(30px); opacity: 0; } 15%{ transform: translateX(-50%) translateY(-2px); opacity: 1; } 20%{ transform: translateX(-50%) translateY(0); } 80%{ opacity: 1; } 100%{ opacity: 0.6; } }
@keyframes ba-emoji-float { 0%,100%{ transform: translateY(0) scale(1); } 50%{ transform: translateY(-8px) scale(1.15); } }

/* ── 5. Gradient Generator ───────────────────────────── */
.blog-anim-gradient {
  background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c, #fda085, #667eea);
  background-size: 400% 400%;
  animation: ba-gradient-flow 6s ease infinite;
}
.blog-anim-gradient i { color: rgba(255,255,255,0.95); font-size: 2.2rem; animation: ba-gradient-icon 3s ease-in-out infinite; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2)); }
.blog-anim-gradient .ba-1 {
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4);
  top: 15%; left: 15%; animation: ba-gradient-orb 4s ease-in-out infinite;
}
.blog-anim-gradient .ba-2 {
  width: 25px; height: 25px; border-radius: 50%; background: rgba(255,255,255,0.15);
  top: 60%; right: 15%; animation: ba-gradient-orb 4s ease-in-out infinite 1s;
}
.blog-anim-gradient .ba-3 {
  width: 15px; height: 15px; border-radius: 50%; background: rgba(255,255,255,0.2);
  bottom: 20%; left: 25%; animation: ba-gradient-orb 4s ease-in-out infinite 2s;
}
.blog-anim-gradient .ba-4 {
  width: 60px; height: 1px; background: rgba(255,255,255,0.3); top: 40%; left: 8%;
  animation: ba-gradient-line 3s ease-in-out infinite;
}
.blog-anim-gradient .ba-5 {
  width: 40px; height: 1px; background: rgba(255,255,255,0.2); bottom: 35%; right: 10%;
  animation: ba-gradient-line 3s ease-in-out infinite 1.5s;
}
@keyframes ba-gradient-flow { 0%{ background-position: 0% 50%; } 50%{ background-position: 100% 50%; } 100%{ background-position: 0% 50%; } }
@keyframes ba-gradient-icon { 0%,100%{ transform: rotate(0deg) scale(1); } 50%{ transform: rotate(180deg) scale(1.1); } }
@keyframes ba-gradient-orb { 0%,100%{ transform: scale(1) translate(0,0); } 50%{ transform: scale(1.3) translate(5px,-5px); } }
@keyframes ba-gradient-line { 0%,100%{ transform: scaleX(1); opacity: 0.3; } 50%{ transform: scaleX(1.5); opacity: 0.6; } }

/* ── 6. SVG Optimizer ────────────────────────────────── */
.blog-anim-svg {
  background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
}
.blog-anim-svg i { color: #00897b; font-size: 2.2rem; animation: ba-svg-zap 1.5s ease-in-out infinite; }
.blog-anim-svg .ba-1 {
  width: 45px; height: 50px; border: 2px solid rgba(0,137,123,0.25); border-radius: 4px;
  top: 18%; left: 16%; background: rgba(255,255,255,0.5);
  animation: ba-svg-shrink 3s ease-in-out infinite;
}
.blog-anim-svg .ba-2 {
  width: 30px; height: 34px; border: 2px solid rgba(0,137,123,0.4); border-radius: 4px;
  top: 24%; right: 20%; background: rgba(255,255,255,0.7);
  animation: ba-svg-shrink 3s ease-in-out infinite 1.5s;
}
.blog-anim-svg .ba-3 {
  font-size: 0.6rem; font-weight: 800; color: #00897b; bottom: 18%; left: 50%; transform: translateX(-50%);
  animation: ba-svg-percent 3s ease-in-out infinite;
}
.blog-anim-svg .ba-3::after { content: '−67%'; }
.blog-anim-svg .ba-4 {
  width: 3px; height: 3px; border-radius: 50%; background: #00897b;
  top: 30%; left: 30%; animation: ba-svg-particle 2s ease-out infinite;
}
.blog-anim-svg .ba-5 {
  width: 3px; height: 3px; border-radius: 50%; background: #00897b;
  top: 35%; left: 35%; animation: ba-svg-particle 2s ease-out infinite 0.5s;
}
@keyframes ba-svg-zap { 0%,100%{ transform: scale(1); filter: brightness(1); } 50%{ transform: scale(1.15); filter: brightness(1.2); } }
@keyframes ba-svg-shrink { 0%,100%{ transform: scale(1); opacity: 0.8; } 50%{ transform: scale(0.7); opacity: 0.5; } }
@keyframes ba-svg-percent { 0%,30%{ opacity: 0; transform: translateX(-50%) translateY(5px); } 50%,80%{ opacity: 1; transform: translateX(-50%) translateY(0); } 100%{ opacity: 0; } }
@keyframes ba-svg-particle { 0%{ transform: translate(0,0) scale(1); opacity: 1; } 100%{ transform: translate(15px,-20px) scale(0); opacity: 0; } }

/* ── 7. Watermark ────────────────────────────────────── */
.blog-anim-watermark {
  background: linear-gradient(135deg, #eceff1 0%, #cfd8dc 100%);
}
.blog-anim-watermark i { color: #546e7a; font-size: 2.2rem; animation: ba-wm-pulse 2.5s ease-in-out infinite; }
.blog-anim-watermark::before {
  content: '24PIC · 24PIC · 24PIC · 24PIC · 24PIC · 24PIC';
  position: absolute; top: 0; left: -50%; width: 200%; white-space: nowrap;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.15em; color: rgba(84,110,122,0.12);
  transform: rotate(-25deg); transform-origin: center;
  animation: ba-wm-scroll 8s linear infinite;
}
.blog-anim-watermark::after {
  content: '24PIC · 24PIC · 24PIC · 24PIC · 24PIC · 24PIC';
  position: absolute; top: 40px; left: -50%; width: 200%; white-space: nowrap;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.15em; color: rgba(84,110,122,0.08);
  transform: rotate(-25deg); transform-origin: center;
  animation: ba-wm-scroll 8s linear infinite 2s;
}
.blog-anim-watermark .ba-1 {
  width: 50px; height: 35px; border-radius: 4px; background: rgba(255,255,255,0.5);
  border: 1.5px solid rgba(84,110,122,0.15); top: 22%; left: 62%;
}
.blog-anim-watermark .ba-2 {
  width: 14px; height: 14px; border-radius: 50%; border: 2px solid rgba(84,110,122,0.2);
  top: 16%; right: 14%; animation: ba-wm-shield 3s ease-in-out infinite;
}
.blog-anim-watermark .ba-2::after {
  content: ''; position: absolute; top: 3px; left: 4px;
  width: 4px; height: 6px; border-bottom: 2px solid rgba(84,110,122,0.3); border-right: 2px solid rgba(84,110,122,0.3);
  transform: rotate(40deg);
}
@keyframes ba-wm-pulse { 0%,100%{ opacity: 0.8; transform: scale(1); } 50%{ opacity: 1; transform: scale(1.05); } }
@keyframes ba-wm-scroll { 0%{ transform: rotate(-25deg) translateX(0); } 100%{ transform: rotate(-25deg) translateX(80px); } }
@keyframes ba-wm-shield { 0%,100%{ transform: scale(1); opacity: 0.6; } 50%{ transform: scale(1.2); opacity: 1; } }

/* ── 8. Image Cropping ───────────────────────────────── */
.blog-anim-crop {
  background: linear-gradient(135deg, #fbe9e7 0%, #ffccbc 100%);
}
.blog-anim-crop i { color: #e64a19; font-size: 2.2rem; animation: ba-crop-snip 2s ease-in-out infinite; }
.blog-anim-crop .ba-1,
.blog-anim-crop .ba-2,
.blog-anim-crop .ba-3,
.blog-anim-crop .ba-4 {
  width: 14px; height: 14px; border-color: rgba(230,74,25,0.5); border-style: solid; border-width: 0;
}
.blog-anim-crop .ba-1 { top: 22%; left: 22%; border-top-width: 2.5px; border-left-width: 2.5px; animation: ba-crop-tl 3s ease-in-out infinite; }
.blog-anim-crop .ba-2 { top: 22%; right: 22%; border-top-width: 2.5px; border-right-width: 2.5px; animation: ba-crop-tr 3s ease-in-out infinite; }
.blog-anim-crop .ba-3 { bottom: 22%; left: 22%; border-bottom-width: 2.5px; border-left-width: 2.5px; animation: ba-crop-bl 3s ease-in-out infinite; }
.blog-anim-crop .ba-4 { bottom: 22%; right: 22%; border-bottom-width: 2.5px; border-right-width: 2.5px; animation: ba-crop-br 3s ease-in-out infinite; }
.blog-anim-crop .ba-5 {
  top: 50%; left: 50%; width: 1px; height: 1px;
  box-shadow:
    -15px 0 0 0 rgba(230,74,25,0.15), 15px 0 0 0 rgba(230,74,25,0.15),
    0 -15px 0 0 rgba(230,74,25,0.15), 0 15px 0 0 rgba(230,74,25,0.15);
  animation: ba-crop-grid 3s ease-in-out infinite;
}
@keyframes ba-crop-snip { 0%,100%{ transform: rotate(0deg); } 50%{ transform: rotate(-10deg) scale(1.05); } }
@keyframes ba-crop-tl { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(8px,8px); } }
@keyframes ba-crop-tr { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(-8px,8px); } }
@keyframes ba-crop-bl { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(8px,-8px); } }
@keyframes ba-crop-br { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(-8px,-8px); } }
@keyframes ba-crop-grid { 0%,100%{ opacity: 0.8; } 50%{ opacity: 0.3; } }

/* ── 9. Batch Convert ────────────────────────────────── */
.blog-anim-batch {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}
.blog-anim-batch i { color: #2e7d32; font-size: 2.2rem; animation: ba-batch-spin 3s linear infinite; }
.blog-anim-batch .ba-1,
.blog-anim-batch .ba-2,
.blog-anim-batch .ba-3 {
  width: 22px; height: 28px; border-radius: 3px; border: 2px solid rgba(46,125,50,0.25);
  background: rgba(255,255,255,0.6);
}
.blog-anim-batch .ba-1 { top: 20%; left: 10%; animation: ba-batch-file 3s ease-in-out infinite; }
.blog-anim-batch .ba-1::after { content: 'J'; position: absolute; bottom: 2px; right: 3px; font-size: 0.45rem; font-weight: 900; color: rgba(46,125,50,0.4); }
.blog-anim-batch .ba-2 { top: 28%; left: 14%; animation: ba-batch-file 3s ease-in-out infinite 0.4s; }
.blog-anim-batch .ba-2::after { content: 'P'; position: absolute; bottom: 2px; right: 3px; font-size: 0.45rem; font-weight: 900; color: rgba(46,125,50,0.4); }
.blog-anim-batch .ba-3 { top: 36%; left: 18%; animation: ba-batch-file 3s ease-in-out infinite 0.8s; }
.blog-anim-batch .ba-3::after { content: 'W'; position: absolute; bottom: 2px; right: 3px; font-size: 0.45rem; font-weight: 900; color: rgba(46,125,50,0.4); }
.blog-anim-batch .ba-4 {
  width: 20px; height: 2px; background: #66bb6a; top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: ba-batch-arrow 2s ease-in-out infinite;
}
.blog-anim-batch .ba-4::after {
  content: ''; position: absolute; right: -4px; top: -3px;
  border-left: 6px solid #66bb6a; border-top: 4px solid transparent; border-bottom: 4px solid transparent;
}
.blog-anim-batch .ba-5 {
  width: 28px; height: 28px; border: 2.5px solid rgba(46,125,50,0.35); border-radius: 50%;
  top: 30%; right: 14%; animation: ba-batch-done 3s ease-in-out infinite;
}
.blog-anim-batch .ba-5::after {
  content: ''; position: absolute; top: 6px; left: 5px;
  width: 6px; height: 10px; border-bottom: 2.5px solid #2e7d32; border-right: 2.5px solid #2e7d32;
  transform: rotate(40deg); opacity: 0; animation: ba-batch-check 3s ease-in-out infinite;
}
@keyframes ba-batch-spin { 0%{ transform: rotate(0deg); } 100%{ transform: rotate(360deg); } }
@keyframes ba-batch-file { 0%{ transform: translateX(0); opacity: 1; } 40%{ transform: translateX(30px); opacity: 1; } 60%{ transform: translateX(30px); opacity: 0; } 100%{ transform: translateX(0); opacity: 1; } }
@keyframes ba-batch-arrow { 0%,100%{ opacity: 0.4; transform: translate(-50%,-50%) scaleX(0.8); } 50%{ opacity: 1; transform: translate(-50%,-50%) scaleX(1.2); } }
@keyframes ba-batch-done { 0%,50%{ transform: scale(0.8); opacity: 0.3; } 70%,90%{ transform: scale(1); opacity: 1; } 100%{ transform: scale(0.8); opacity: 0.3; } }
@keyframes ba-batch-check { 0%,50%{ opacity: 0; } 70%,90%{ opacity: 1; } 100%{ opacity: 0; } }


/* --- Blog Section: Dark Immersive Showcase (Typography Driven) --- */
.blog-section-dark {
  background: #030303;
  color: #ffffff;
  padding: 8rem 3rem;
  position: relative;
  overflow: hidden;
}

.blog-dark-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.dark-glow {
  position: absolute;
  filter: blur(100px);
  opacity: 0.5;
  border-radius: 50%;
  animation: floatGlow 15s ease-in-out infinite alternate;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(64, 156, 255, 0.15), transparent 70%);
  top: -200px;
  left: -200px;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.15), transparent 70%);
  bottom: -100px;
  right: -100px;
  animation-delay: -5s;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.1); }
}

.blog-container.dark-mode {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.dark-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.dark-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #ffffff, #a0a0a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dark-subtitle {
  font-size: 1.125rem;
  color: #888888;
  font-weight: 500;
}

.btn-dark-viewall {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-dark-viewall:hover {
  background: #ffffff;
  color: #000000;
  gap: 0.875rem;
  transform: translateY(-2px);
}

.dark-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.db-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #ffffff;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.db-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.db-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 48px rgba(0,0,0,0.6);
  background: rgba(255, 255, 255, 0.05);
}

.db-card:hover::before {
  opacity: 1;
}

/* Typography Driven Cards Specifics */
.db-span-2 {
  grid-column: span 2;
}

.db-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 320px;
  position: relative;
  z-index: 1;
}

.db-span-2 .db-content {
  padding: 3.5rem;
}

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

.db-tag {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.db-meta {
  font-size: 0.8125rem;
  color: #888888;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.db-body {
  flex: 1;
}

.db-title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: #eeeeee;
  transition: color 0.3s;
}

.db-card:hover .db-title {
  color: #ffffff;
}

.db-span-2 .db-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.db-excerpt {
  color: #a0a0a0;
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 85%;
}

.db-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.db-read-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.db-card:hover .db-read-text {
  color: #ffffff;
}

.db-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.6;
}

.db-card:hover .db-arrow {
  background: #ffffff;
  color: #000000;
  opacity: 1;
  transform: translateX(4px);
}

/* Abstract Background Icons */
.db-bg-icon {
  position: absolute;
  right: -5%;
  bottom: -5%;
  font-size: 16rem;
  color: rgba(255,255,255,0.02);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 0;
}

.db-span-2 .db-bg-icon {
  font-size: 26rem;
  right: -5%;
  bottom: -20%;
}

.db-card:hover .db-bg-icon {
  color: rgba(255,255,255,0.05);
  transform: scale(1.1) rotate(-8deg);
}

/* Ambient Card Glows */
.card-var-1::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 75% 80%, rgba(64,156,255,0.12), transparent 45%); pointer-events: none; z-index: 0; transition: opacity 0.5s; opacity: 0.6; }
.card-var-2::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 80% 90%, rgba(147,51,234,0.15), transparent 50%); pointer-events: none; z-index: 0; transition: opacity 0.5s; opacity: 0.5; }
.card-var-3::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 80% 90%, rgba(16,185,129,0.15), transparent 50%); pointer-events: none; z-index: 0; transition: opacity 0.5s; opacity: 0.5; }
.card-var-4::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 80% 90%, rgba(245,158,11,0.15), transparent 50%); pointer-events: none; z-index: 0; transition: opacity 0.5s; opacity: 0.5; }
.card-var-5::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 80% 90%, rgba(236,72,153,0.15), transparent 50%); pointer-events: none; z-index: 0; transition: opacity 0.5s; opacity: 0.5; }

.db-card:hover::after { opacity: 1; }

@media (max-width: 1024px) {
  .dark-bento {
    grid-template-columns: 1fr 1fr;
  }
  .db-span-2 {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .dark-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .dark-bento {
    grid-template-columns: 1fr;
  }
  .db-span-2 {
    grid-column: span 1;
  }
  .db-span-2 .db-content {
    padding: 2rem;
  }
  .db-span-2 .db-title {
    font-size: 1.5rem;
  }
}


/* Nav Dark Mode Flip */
.logo {
  transition: color 0.4s ease;
}

/* Subscribe button dark mode flip */
/* Subscribe button dark mode flip */
.header-actions .subscribe-btn {
  transition: all 0.4s ease;
}

.header-actions.dark-mode-actions .subscribe-btn {
  background: #ffffff;
  color: #000000;
}

.header-actions.dark-mode-actions .subscribe-btn:hover {
  background: rgba(255,255,255,0.9);
}

.language-btn {
  transition: all 0.4s ease;
}

.header-actions.dark-mode-actions .language-btn {
  color: #ffffff;
  background: rgba(255,255,255,0.1);
}

.header-actions.dark-mode-actions .language-btn:hover {
  background: rgba(255,255,255,0.2);
}