
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

:root {
  
  --color-primary: #6366f1;
  --color-primary-dark: #4f46e5;
  --color-primary-light: #818cf8;
  --color-secondary: #ec4899;
  --color-accent: #f59e0b;
  
  
  --bg-dark: #0f172a;
  --bg-darker: #020617;
  --bg-light: #f8fafc;
  --bg-lighter: #ffffff;
  --bg-subtle: #f1f5f9;
  
  
  --text-primary-dark: #ffffff;
  --text-secondary-dark: #e2e8f0;
  --text-tertiary-dark: #cbd5e1;
  --text-primary-light: #0f172a;
  --text-secondary-light: #475569;
  --text-tertiary-light: #64748b;
  
  
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-info: #3b82f6;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  
  
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Poppins', sans-serif;
  
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  
  
  --icon-sm: 1rem;
  --icon-md: 1.5rem;
  --icon-lg: 2rem;
  --icon-xl: 3rem;
  --icon-2xl: 4rem;
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;
}

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

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 2.25rem;
  font-weight: var(--fw-extrabold);
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 1.875rem;
  font-weight: var(--fw-bold);
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  h3 {
    font-size: 2.25rem;
  }
}

h4 {
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
}

@media (min-width: 768px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
}

h6 {
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  p {
    font-size: 1rem;
  }
}

a {
  text-decoration: none;
  transition: all var(--transition-base);
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--text-primary-dark);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--text-primary-dark);
}

.btn-secondary:hover {
  background-color: #d1347a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--text-primary-dark);
}

.btn-light {
  background-color: var(--bg-lighter);
  color: var(--text-primary-light);
  border: 1px solid #e2e8f0;
}

.btn-light:hover {
  background-color: var(--bg-subtle);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-primary);
}

.btn-ghost:hover {
  background-color: rgba(99, 102, 241, 0.1);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

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

.btn i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.5rem 1rem;
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
}

.badge-primary {
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--color-primary);
}

.badge-secondary {
  background-color: rgba(236, 72, 153, 0.1);
  color: var(--color-secondary);
}

.badge-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
}

.badge-warning {
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--color-warning);
}

.card {
  background-color: var(--bg-lighter);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .card {
    padding: 2rem;
  }
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-dark {
  background-color: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .grid {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .grid {
    gap: 2rem;
  }
}

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

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

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

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

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.flex {
  display: flex;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .flex {
    gap: var(--space-md);
  }
}

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

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

.flex-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .flex-col {
    gap: var(--space-md);
  }
}

.flex-wrap {
  flex-wrap: wrap;
}

section {
  overflow: hidden;
}

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

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

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

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-italic {
  font-style: italic;
}

.font-bold {
  font-weight: var(--fw-bold);
}

.font-semibold {
  font-weight: var(--fw-semibold);
}

.font-medium {
  font-weight: var(--fw-medium);
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: var(--space-xs); }
.pt-2 { padding-top: var(--space-sm); }
.pt-3 { padding-top: var(--space-md); }
.pt-4 { padding-top: var(--space-lg); }
.pt-5 { padding-top: var(--space-xl); }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: var(--space-xs); }
.pb-2 { padding-bottom: var(--space-sm); }
.pb-3 { padding-bottom: var(--space-md); }
.pb-4 { padding-bottom: var(--space-lg); }
.pb-5 { padding-bottom: var(--space-xl); }

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background-color: rgba(99, 102, 241, 0.1);
}

.icon-wrapper.primary {
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--color-primary);
}

.icon-wrapper.secondary {
  background-color: rgba(236, 72, 153, 0.1);
  color: var(--color-secondary);
}

.icon-wrapper.accent {
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--color-accent);
}

.icon-wrapper.success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
}

.icon-wrapper i {
  font-size: var(--icon-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.form-group label {
  font-weight: var(--fw-semibold);
  color: var(--text-primary-light);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-base);
  background-color: var(--bg-lighter);
  color: var(--text-primary-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.list-unstyled {
  list-style: none;
}

.list-unstyled li {
  padding: var(--space-sm) 0;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  list-style: none;
}

.list-inline li {
  padding: 0;
}

.divider {
  height: 1px;
  background-color: #e2e8f0;
  margin: var(--space-md) 0;
}

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

.spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
}

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

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

.animate-slide-up {
  animation: slideInUp 0.6s ease-in-out;
}

.animate-slide-down {
  animation: slideInDown 0.6s ease-in-out;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-in-out;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-in-out;
}

::selection {
  background-color: var(--color-primary);
  color: var(--text-primary-dark);
}

::-moz-selection {
  background-color: var(--color-primary);
  color: var(--text-primary-dark);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background-color: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-primary-dark);
}

  .psycho-nav {
    background-color: var(--bg-darker);
    border-bottom: 2px solid var(--color-primary);
    position: relative;
    z-index: 1000;
    box-shadow: var(--shadow-md);
  }

  .psycho-nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  

  .psycho-nav-logo {
    flex-shrink: 0;
  }

  .psycho-nav-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all var(--transition-base);
    padding: 0.5rem 0;
  }

  .psycho-nav-brand i {
    font-size: 1.75rem;
    color: var(--color-primary);
  }

  .psycho-nav-brand span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    color: var(--text-primary-dark);
    letter-spacing: -0.5px;
  }

  .psycho-nav-brand:hover {
    color: var(--color-primary-light);
  }

  .psycho-nav-brand:hover i {
    color: var(--color-primary-light);
    transform: scale(1.1);
  }

  .psycho-nav-brand:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: 4px;
  }

  

  .psycho-nav-desktop-nav {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
    margin-left: 2rem;
  }

  @media (min-width: 1024px) {
    .psycho-nav-desktop-nav {
      display: flex;
    }
  }

  .psycho-nav-nav-link {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: var(--fw-medium);
    color: var(--text-secondary-dark);
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
  }

  .psycho-nav-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-base);
  }

  .psycho-nav-nav-link:hover {
    color: var(--color-primary-light);
  }

  .psycho-nav-nav-link:hover::after {
    width: 100%;
  }

  .psycho-nav-nav-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 6px;
    border-radius: 2px;
  }

  

  .psycho-nav-cta-button {
    display: none;
    padding: 0.75rem 1.75rem;
    background-color: var(--color-primary);
    color: var(--text-primary-light);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: var(--fw-semibold);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
    border: none;
  }

  @media (min-width: 1024px) {
    .psycho-nav-cta-button {
      display: inline-block;
    }
  }

  .psycho-nav-cta-button:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .psycho-nav-cta-button:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
  }

  .psycho-nav-cta-button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
  }

  

  .psycho-nav-mobile-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    width: 2.5rem;
    height: 2.5rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    transition: all var(--transition-base);
  }

  @media (min-width: 1024px) {
    .psycho-nav-mobile-toggle {
      display: none;
    }
  }

  .psycho-nav-mobile-toggle span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: var(--text-primary-dark);
    border-radius: 1px;
    transition: all var(--transition-base);
  }

  .psycho-nav-mobile-toggle:hover {
    transform: scale(1.05);
  }

  .psycho-nav-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
  }

  .psycho-nav-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .psycho-nav-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
  }

  .psycho-nav-mobile-toggle:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: 4px;
  }

  

  .psycho-nav-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all var(--transition-slow);
    overflow-y: auto;
  }

  .psycho-nav-mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  @media (min-width: 1024px) {
    .psycho-nav-mobile-menu {
      display: none;
    }
  }

  .psycho-nav-mobile-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .psycho-nav-mobile-close {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
  }

  .psycho-nav-mobile-close i {
    font-size: 1.5rem;
    color: var(--text-primary-dark);
  }

  .psycho-nav-mobile-close:hover i {
    color: var(--color-primary-light);
    transform: rotate(90deg);
  }

  .psycho-nav-mobile-close:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: 4px;
  }

  

  .psycho-nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    flex: 1;
    list-style: none;
  }

  .psycho-nav-mobile-link {
    display: block;
    padding: 1.25rem 1.5rem;
    color: var(--text-secondary-dark);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: var(--fw-medium);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
  }

  .psycho-nav-mobile-link:hover {
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--color-primary-light);
    padding-left: 2rem;
  }

  .psycho-nav-mobile-link:active {
    background-color: rgba(99, 102, 241, 0.15);
  }

  .psycho-nav-mobile-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
  }

  

  .psycho-nav-mobile-cta {
    display: block;
    margin: 1.5rem;
    padding: 1rem 2rem;
    background-color: var(--color-primary);
    color: var(--text-primary-light);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    text-decoration: none;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
  }

  .psycho-nav-mobile-cta:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .psycho-nav-mobile-cta:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
  }

  .psycho-nav-mobile-cta:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
  }

  

  @media (max-width: 768px) {
    .psycho-nav-container {
      padding: 0.75rem 1rem;
    }

    .psycho-nav-brand span {
      font-size: 1.1rem;
    }

    .psycho-nav-brand i {
      font-size: 1.5rem;
    }

    .psycho-nav-cta-button {
      padding: 0.65rem 1.25rem;
      font-size: 0.85rem;
    }
  }

  @media (max-width: 480px) {
    .psycho-nav-container {
      padding: 0.5rem 0.75rem;
    }

    .psycho-nav-brand span {
      font-size: 1rem;
      display: none;
    }

    .psycho-nav-brand i {
      font-size: 1.5rem;
    }

    .psycho-nav-mobile-toggle {
      width: 2.25rem;
      height: 2.25rem;
    }

    .psycho-nav-mobile-toggle span {
      width: 1.25rem;
    }

    .psycho-nav-mobile-menu {
      width: 100%;
    }

    .psycho-nav-mobile-link {
      padding: 1rem 1.25rem;
      font-size: 0.95rem;
    }

    .psycho-nav-mobile-cta {
      margin: 1rem;
      padding: 0.875rem 1.75rem;
      font-size: 0.95rem;
    }
  }

  

  body.menu-open {
    overflow: hidden;
  }

  
  @media (prefers-reduced-motion: reduce) {
    .psycho-nav-brand,
    .psycho-nav-nav-link,
    .psycho-nav-cta-button,
    .psycho-nav-mobile-toggle,
    .psycho-nav-mobile-close,
    .psycho-nav-mobile-menu,
    .psycho-nav-mobile-link,
    .psycho-nav-mobile-cta {
      transition: none;
    }

    .psycho-nav-mobile-toggle[aria-expanded="true"] span:nth-child(1),
    .psycho-nav-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: none;
    }
  }

    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

    
    .behavior-hub .hero-section {
      background-color: var(--bg-darker);
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

    @media (min-width: 768px) {
      .behavior-hub .hero-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .behavior-hub .hero-section {
        padding: 6rem 0;
      }
    }

    .behavior-hub .hero-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
      }
    }

    .behavior-hub .hero-text {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      flex: 1;
    }

    .behavior-hub .hero-section h1 {
      color: var(--text-primary-dark);
      font-size: 2.25rem;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .behavior-hub .hero-section h1 {
        font-size: 3rem;
      }
    }

    @media (min-width: 1024px) {
      .behavior-hub .hero-section h1 {
        font-size: 3.75rem;
      }
    }

    .behavior-hub .hero-section p {
      color: var(--text-secondary-dark);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .behavior-hub .hero-section p {
        font-size: 1rem;
      }
    }

    .behavior-hub .hero-cta {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 1rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .hero-cta {
        flex-direction: row;
        gap: 1.5rem;
      }
    }

    .behavior-hub .hero-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .behavior-hub .hero-image img {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-xl);
      object-fit: cover;
    }

    
    .behavior-hub .features-section {
      background-color: var(--bg-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .behavior-hub .features-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .behavior-hub .features-section {
        padding: 6rem 0;
      }
    }

    .behavior-hub .features-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .features-content {
        gap: 3rem;
      }
    }

    .behavior-hub .section-header {
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .section-header {
        margin-bottom: 3rem;
      }
    }

    .behavior-hub .features-section h2 {
      color: var(--text-primary-light);
      font-size: 1.875rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .features-section h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .behavior-hub .features-section h2 {
        font-size: 3rem;
      }
    }

    .behavior-hub .features-section .section-header p {
      color: var(--text-secondary-light);
      font-size: 0.95rem;
      max-width: 600px;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .behavior-hub .features-section .section-header p {
        font-size: 1rem;
      }
    }

    .behavior-hub .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .behavior-hub .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .behavior-hub .feature-card {
      background-color: var(--bg-lighter);
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: all var(--transition-base);
      border-left: 4px solid var(--color-primary);
    }

    @media (min-width: 768px) {
      .behavior-hub .feature-card {
        padding: 2rem;
        gap: 1.5rem;
      }
    }

    .behavior-hub .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .behavior-hub .feature-card .icon-wrapper {
      width: 3rem;
      height: 3rem;
      background-color: rgba(99, 102, 241, 0.1);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
    }

    .behavior-hub .feature-card h3 {
      color: var(--text-primary-light);
      font-size: 1.25rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .feature-card h3 {
        font-size: 1.5rem;
      }
    }

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

    @media (min-width: 768px) {
      .behavior-hub .feature-card p {
        font-size: 1rem;
      }
    }

    
    .behavior-hub .about-section {
      background-color: var(--bg-darker);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .behavior-hub .about-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .behavior-hub .about-section {
        padding: 6rem 0;
      }
    }

    .behavior-hub .about-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .about-content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
      }
    }

    .behavior-hub .about-image {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .behavior-hub .about-image img {
      width: 100%;
      max-width: 380px;
      height: auto;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-xl);
      object-fit: cover;
    }

    .behavior-hub .about-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .behavior-hub .about-section h2 {
      color: var(--text-primary-dark);
      font-size: 1.875rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .about-section h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .behavior-hub .about-section h2 {
        font-size: 3rem;
      }
    }

    .behavior-hub .about-section p {
      color: var(--text-secondary-dark);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .behavior-hub .about-section p {
        font-size: 1rem;
      }
    }

    .behavior-hub .about-highlights {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 1rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .about-highlights {
        gap: 1.5rem;
      }
    }

    .behavior-hub .highlight-item {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .behavior-hub .highlight-item h4 {
      color: var(--color-primary);
      font-size: 1rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .highlight-item h4 {
        font-size: 1.125rem;
      }
    }

    .behavior-hub .highlight-item p {
      color: var(--text-tertiary-dark);
      font-size: 0.85rem;
    }

    
    .behavior-hub .featured-posts-section {
      background-color: var(--bg-subtle);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .behavior-hub .featured-posts-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .behavior-hub .featured-posts-section {
        padding: 6rem 0;
      }
    }

    .behavior-hub .featured-posts-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .featured-posts-content {
        gap: 3rem;
      }
    }

    .behavior-hub .featured-posts-section h2 {
      color: var(--text-primary-light);
      font-size: 1.875rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .behavior-hub .featured-posts-section h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .behavior-hub .featured-posts-section h2 {
        font-size: 3rem;
      }
    }

    .behavior-hub .posts-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .behavior-hub .posts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .behavior-hub .post-card {
      background-color: var(--bg-lighter);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: all var(--transition-base);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .behavior-hub .post-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .behavior-hub .post-image {
      width: 100%;
      height: 220px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      position: relative;
      overflow: hidden;
    }

    .behavior-hub .post-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .behavior-hub .post-body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      flex: 1;
    }

    @media (min-width: 768px) {
      .behavior-hub .post-body {
        padding: 2rem;
        gap: 1.5rem;
      }
    }

    .behavior-hub .post-card h3 {
      color: var(--text-primary-light);
      font-size: 1.25rem;
      line-height: 1.3;
    }

    @media (min-width: 768px) {
      .behavior-hub .post-card h3 {
        font-size: 1.5rem;
      }
    }

    .behavior-hub .post-card p {
      color: var(--text-secondary-light);
      font-size: 0.9rem;
      flex: 1;
    }

    @media (min-width: 768px) {
      .behavior-hub .post-card p {
        font-size: 0.95rem;
      }
    }

    .behavior-hub .post-link {
      color: var(--color-primary);
      font-weight: var(--fw-semibold);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all var(--transition-base);
    }

    .behavior-hub .post-link:hover {
      color: var(--color-primary-dark);
      transform: translateX(4px);
    }

    .behavior-hub .see-all-btn {
      text-align: center;
      margin-top: 1rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .see-all-btn {
        margin-top: 2rem;
      }
    }

    
    .behavior-hub .engagement-section {
      background-color: var(--bg-darker);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .behavior-hub .engagement-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .behavior-hub .engagement-section {
        padding: 6rem 0;
      }
    }

    .behavior-hub .engagement-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .engagement-content {
        gap: 3rem;
      }
    }

    .behavior-hub .engagement-section h2 {
      color: var(--text-primary-dark);
      font-size: 1.875rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .behavior-hub .engagement-section h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .behavior-hub .engagement-section h2 {
        font-size: 3rem;
      }
    }

    .behavior-hub .drivers-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .drivers-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .behavior-hub .drivers-list {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }

    .behavior-hub .driver-item {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      align-items: flex-start;
    }

    .behavior-hub .driver-number {
      min-width: 50px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-primary-dark);
      font-weight: var(--fw-bold);
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .behavior-hub .driver-text {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .behavior-hub .driver-text h3 {
      color: var(--text-primary-dark);
      font-size: 1.125rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .driver-text h3 {
        font-size: 1.25rem;
      }
    }

    .behavior-hub .driver-text p {
      color: var(--text-secondary-dark);
      font-size: 0.9rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .driver-text p {
        font-size: 0.95rem;
      }
    }

    
    .behavior-hub .statistics-section {
      background-color: var(--bg-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .behavior-hub .statistics-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .behavior-hub .statistics-section {
        padding: 6rem 0;
      }
    }

    .behavior-hub .statistics-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .statistics-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .behavior-hub .statistics-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
      }
    }

    .behavior-hub .stat-card {
      background-color: var(--bg-lighter);
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      border-top: 4px solid var(--color-primary);
    }

    @media (min-width: 768px) {
      .behavior-hub .stat-card {
        padding: 2rem;
      }
    }

    .behavior-hub .stat-number {
      color: var(--color-primary);
      font-size: 2rem;
      font-weight: var(--fw-extrabold);
    }

    @media (min-width: 768px) {
      .behavior-hub .stat-number {
        font-size: 2.5rem;
      }
    }

    .behavior-hub .stat-label {
      color: var(--text-primary-light);
      font-weight: var(--fw-semibold);
      font-size: 0.95rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .stat-label {
        font-size: 1rem;
      }
    }

    .behavior-hub .stat-description {
      color: var(--text-secondary-light);
      font-size: 0.85rem;
    }

    
    .behavior-hub .contact-section {
      background-color: var(--bg-darker);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .behavior-hub .contact-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .behavior-hub .contact-section {
        padding: 6rem 0;
      }
    }

    .behavior-hub .contact-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      max-width: 700px;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .behavior-hub .contact-content {
        gap: 3rem;
      }
    }

    .behavior-hub .contact-header {
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .behavior-hub .contact-section h2 {
      color: var(--text-primary-dark);
      font-size: 1.875rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .contact-section h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .behavior-hub .contact-section h2 {
        font-size: 3rem;
      }
    }

    .behavior-hub .contact-section .contact-header p {
      color: var(--text-secondary-dark);
      font-size: 0.95rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .contact-section .contact-header p {
        font-size: 1rem;
      }
    }

    .behavior-hub .contact-form {
      background-color: var(--bg-dark);
      padding: 2rem;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .contact-form {
        padding: 2.5rem;
        gap: 2rem;
      }
    }

    .behavior-hub .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .behavior-hub .form-group label {
      color: var(--text-primary-dark);
      font-weight: var(--fw-semibold);
      font-size: 0.95rem;
    }

    @media (min-width: 768px) {
      .behavior-hub .form-group label {
        font-size: 1rem;
      }
    }

    .behavior-hub .form-group input,
    .behavior-hub .form-group textarea {
      background-color: var(--bg-darker);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--radius-md);
      padding: 0.75rem 1rem;
      color: var(--text-primary-dark);
      font-family: var(--font-primary);
      font-size: 0.95rem;
      transition: all var(--transition-base);
    }

    @media (min-width: 768px) {
      .behavior-hub .form-group input,
      .behavior-hub .form-group textarea {
        padding: 1rem 1.25rem;
        font-size: 1rem;
      }
    }

    .behavior-hub .form-group input::placeholder,
    .behavior-hub .form-group textarea::placeholder {
      color: var(--text-tertiary-dark);
    }

    .behavior-hub .form-group input:focus,
    .behavior-hub .form-group textarea:focus {
      outline: none;
      border-color: var(--color-primary);
      box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    }

    .behavior-hub .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .behavior-hub .form-submit-btn {
      background-color: var(--color-primary);
      color: var(--text-primary-dark);
      border: none;
      padding: 0.875rem 2rem;
      border-radius: var(--radius-lg);
      font-weight: var(--fw-semibold);
      font-size: 0.95rem;
      cursor: pointer;
      transition: all var(--transition-base);
      font-family: var(--font-primary);
    }

    @media (min-width: 768px) {
      .behavior-hub .form-submit-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
      }
    }

    .behavior-hub .form-submit-btn:hover {
      background-color: var(--color-primary-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .behavior-hub .form-submit-btn:active {
      transform: translateY(0);
    }

    .behavior-hub .form-privacy {
      text-align: center;
      color: var(--text-tertiary-dark);
      font-size: 0.8rem;
    }

    .behavior-hub .form-privacy a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color var(--transition-base);
    }

    .behavior-hub .form-privacy a:hover {
      color: var(--color-primary-light);
      text-decoration: underline;
    }

    
    .behavior-hub .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: var(--bg-darker);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 1.5rem var(--space-sm);
      box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      text-align: center;
    }

    @media (min-width: 768px) {
      .behavior-hub .cookie-banner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 1.5rem var(--space-md);
      }
    }

    .behavior-hub .cookie-banner.hidden {
      display: none;
    }

    .behavior-hub .cookie-text {
      color: var(--text-secondary-dark);
      font-size: 0.9rem;
      flex: 1;
    }

    @media (min-width: 768px) {
      .behavior-hub .cookie-text {
        font-size: 0.95rem;
      }
    }

    .behavior-hub .cookie-actions {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      width: 100%;
    }

    @media (min-width: 768px) {
      .behavior-hub .cookie-actions {
        flex-direction: row;
        gap: 1rem;
        width: auto;
      }
    }

    .behavior-hub .cookie-btn {
      padding: 0.625rem 1.25rem;
      border: none;
      border-radius: var(--radius-md);
      font-weight: var(--fw-semibold);
      cursor: pointer;
      font-size: 0.85rem;
      transition: all var(--transition-base);
      font-family: var(--font-primary);
      white-space: nowrap;
    }

    @media (min-width: 768px) {
      .behavior-hub .cookie-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
      }
    }

    .behavior-hub .cookie-accept {
      background-color: var(--color-primary);
      color: var(--text-primary-dark);
    }

    .behavior-hub .cookie-accept:hover {
      background-color: var(--color-primary-dark);
      box-shadow: var(--shadow-md);
    }

    .behavior-hub .cookie-decline {
      background-color: transparent;
      color: var(--text-secondary-dark);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .behavior-hub .cookie-decline:hover {
      border-color: rgba(255, 255, 255, 0.4);
    }

    
  
  .footer {
    background-color: var(--bg-darker);
    color: var(--text-primary-dark);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .footer {
      padding: 4rem 0;
    }
  }

  @media (min-width: 1024px) {
    .footer {
      padding: 5rem 0;
    }
  }

  
  .footer-content {
    display: block;
  }

  
  .footer-about {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.1);
  }

  @media (min-width: 768px) {
    .footer-about {
      margin-bottom: 3rem;
      padding-bottom: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-about {
      margin-bottom: 4rem;
      padding-bottom: 4rem;
    }
  }

  .footer-about-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    color: var(--text-primary-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
  }

  @media (min-width: 768px) {
    .footer-about-title {
      font-size: 1.5rem;
      margin-bottom: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-about-title {
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }
  }

  .footer-about-text {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-secondary-dark);
    max-width: 600px;
  }

  @media (min-width: 768px) {
    .footer-about-text {
      font-size: 0.95rem;
      line-height: 1.8;
    }
  }

  @media (min-width: 1024px) {
    .footer-about-text {
      font-size: 1rem;
    }
  }

  
  .footer-nav-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.1);
  }

  @media (min-width: 768px) {
    .footer-nav-section {
      margin-bottom: 3rem;
      padding-bottom: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-nav-section {
      margin-bottom: 4rem;
      padding-bottom: 4rem;
    }
  }

  .footer-nav-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: var(--fw-semibold);
    color: var(--text-primary-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
  }

  @media (min-width: 768px) {
    .footer-nav-title {
      font-size: 1rem;
      margin-bottom: 1.25rem;
    }
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  @media (min-width: 768px) {
    .footer-nav {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      max-width: 400px;
    }
  }

  @media (min-width: 1024px) {
    .footer-nav {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      max-width: 600px;
    }
  }

  .footer-link {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--text-secondary-dark);
    text-decoration: none;
    transition: color var(--transition-base), 
                transform var(--transition-base);
    display: inline-block;
    position: relative;
  }

  .footer-link:hover {
    color: var(--color-primary-light);
    transform: translateX(4px);
  }

  .footer-link:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
  }

  @media (min-width: 768px) {
    .footer-link {
      font-size: 0.9rem;
    }
  }

  
  .footer-legal-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.1);
  }

  @media (min-width: 768px) {
    .footer-legal-section {
      margin-bottom: 3rem;
      padding-bottom: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-legal-section {
      margin-bottom: 3rem;
      padding-bottom: 3rem;
    }
  }

  .footer-legal-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: var(--fw-semibold);
    color: var(--text-primary-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
  }

  @media (min-width: 768px) {
    .footer-legal-title {
      font-size: 1rem;
      margin-bottom: 1.25rem;
    }
  }

  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  @media (min-width: 768px) {
    .footer-legal {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      max-width: 400px;
    }
  }

  @media (min-width: 1024px) {
    .footer-legal {
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      max-width: 100%;
    }
  }

  .footer-legal-link {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--text-tertiary-dark);
    text-decoration: none;
    transition: color var(--transition-base),
                text-decoration var(--transition-base);
    display: inline-block;
  }

  .footer-legal-link:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }

  .footer-legal-link:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
  }

  @media (min-width: 768px) {
    .footer-legal-link {
      font-size: 0.9rem;
    }
  }

  
  .footer-copyright {
    padding-top: 2rem;
  }

  @media (min-width: 768px) {
    .footer-copyright {
      padding-top: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-copyright {
      padding-top: 3rem;
    }
  }

  .footer-copyright-text {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    color: var(--text-tertiary-dark);
    text-align: center;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .footer-copyright-text {
      font-size: 0.85rem;
    }
  }

  @media (min-width: 1024px) {
    .footer-copyright-text {
      font-size: 0.9rem;
    }
  }

  
  .footer .container {
    padding: 0 var(--space-sm);
  }

  @media (min-width: 768px) {
    .footer .container {
      padding: 0 var(--space-md);
    }
  }

  @media (min-width: 1024px) {
    .footer .container {
      padding: 0 var(--space-lg);
    }
  }
    

.category-hero-psychology-digital-entertainment {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1f3a 100%);
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .category-hero-psychology-digital-entertainment {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .category-hero-psychology-digital-entertainment {
    padding: 6rem 0;
  }
}

.hero-content-psychology-digital-entertainment {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .hero-content-psychology-digital-entertainment {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-content-psychology-digital-entertainment {
    gap: 4rem;
  }
}

.hero-text-psychology-digital-entertainment {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .hero-text-psychology-digital-entertainment {
    gap: 1.5rem;
  }
}

.hero-text-psychology-digital-entertainment h1 {
  color: var(--text-primary-dark);
  font-size: 2.25rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-text-psychology-digital-entertainment h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-text-psychology-digital-entertainment h1 {
    font-size: 3.75rem;
  }
}

.hero-text-psychology-digital-entertainment p {
  color: var(--text-secondary-dark);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .hero-text-psychology-digital-entertainment p {
    font-size: 1rem;
  }
}

.hero-stats-psychology-digital-entertainment {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hero-stats-psychology-digital-entertainment {
    gap: 2rem;
  }
}

.stat-item-psychology-digital-entertainment {
  background: rgba(99, 102, 241, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .stat-item-psychology-digital-entertainment {
    padding: 2rem;
  }
}

.stat-number-psychology-digital-entertainment {
  font-size: 2.25rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .stat-number-psychology-digital-entertainment {
    font-size: 2.75rem;
  }
}

.stat-label-psychology-digital-entertainment {
  color: var(--text-tertiary-dark);
  font-size: 0.875rem;
  line-height: 1.4;
}

.posts-grid-section-psychology-digital-entertainment {
  background-color: var(--bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .posts-grid-section-psychology-digital-entertainment {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .posts-grid-section-psychology-digital-entertainment {
    padding: 6rem 0;
  }
}

.posts-grid-psychology-digital-entertainment {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .posts-grid-psychology-digital-entertainment {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .posts-grid-psychology-digital-entertainment {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.card-psychology-digital-entertainment {
  background-color: var(--bg-lighter);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid #f0f1f3;
}

@media (min-width: 768px) {
  .card-psychology-digital-entertainment {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .card-psychology-digital-entertainment {
    gap: 1.5rem;
  }
}

.card-psychology-digital-entertainment:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-psychology-digital-entertainment img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .card-psychology-digital-entertainment img {
    height: 220px;
  }
}

@media (min-width: 1024px) {
  .card-psychology-digital-entertainment img {
    height: 240px;
  }
}

.card-psychology-digital-entertainment h3 {
  color: var(--text-primary-light);
  font-size: 1.25rem;
  line-height: 1.3;
  padding: 0 1.25rem;
  padding-top: 0.5rem;
}

@media (min-width: 768px) {
  .card-psychology-digital-entertainment h3 {
    font-size: 1.5rem;
    padding: 0 1.5rem;
    padding-top: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .card-psychology-digital-entertainment h3 {
    font-size: 1.75rem;
    padding: 0 1.75rem;
  }
}

.card-psychology-digital-entertainment p {
  color: var(--text-secondary-light);
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .card-psychology-digital-entertainment p {
    font-size: 0.95rem;
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .card-psychology-digital-entertainment p {
    font-size: 1rem;
    padding: 0 1.75rem;
    flex: 1;
  }
}

.card-psychology-digital-entertainment a {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  font-size: 0.875rem;
  padding: 0 1.25rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .card-psychology-digital-entertainment a {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (min-width: 1024px) {
  .card-psychology-digital-entertainment a {
    padding: 0 1.75rem 1.75rem;
    font-size: 1rem;
  }
}

.card-psychology-digital-entertainment a:hover {
  color: var(--color-primary-dark);
  transform: translateX(4px);
}

.insights-section-psychology-digital-entertainment {
  background-color: var(--bg-dark);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .insights-section-psychology-digital-entertainment {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .insights-section-psychology-digital-entertainment {
    padding: 6rem 0;
  }
}

.insights-content-psychology-digital-entertainment h2 {
  color: var(--text-primary-dark);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .insights-content-psychology-digital-entertainment h2 {
    margin-bottom: 3rem;
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .insights-content-psychology-digital-entertainment h2 {
    margin-bottom: 4rem;
    font-size: 3rem;
  }
}

.insights-grid-psychology-digital-entertainment {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .insights-grid-psychology-digital-entertainment {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .insights-grid-psychology-digital-entertainment {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.insight-item-psychology-digital-entertainment {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .insight-item-psychology-digital-entertainment {
    padding: 2rem;
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .insight-item-psychology-digital-entertainment {
    padding: 2.5rem;
    gap: 1.5rem;
  }
}

.insight-item-psychology-digital-entertainment:hover {
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-4px);
}

.insight-icon-psychology-digital-entertainment {
  font-size: 2rem;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .insight-icon-psychology-digital-entertainment {
    font-size: 2.5rem;
  }
}

.insight-item-psychology-digital-entertainment h3 {
  color: var(--text-primary-dark);
  font-size: 1.125rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .insight-item-psychology-digital-entertainment h3 {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .insight-item-psychology-digital-entertainment h3 {
    font-size: 1.375rem;
  }
}

.insight-item-psychology-digital-entertainment p {
  color: var(--text-secondary-dark);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .insight-item-psychology-digital-entertainment p {
    font-size: 0.95rem;
  }
}

@media (min-width: 1024px) {
  .insight-item-psychology-digital-entertainment p {
    font-size: 1rem;
  }
}

.best-practices-section-psychology-digital-entertainment {
  background-color: var(--bg-lighter);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .best-practices-section-psychology-digital-entertainment {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .best-practices-section-psychology-digital-entertainment {
    padding: 6rem 0;
  }
}

.best-practices-content-psychology-digital-entertainment h2 {
  color: var(--text-primary-light);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .best-practices-content-psychology-digital-entertainment h2 {
    margin-bottom: 3rem;
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .best-practices-content-psychology-digital-entertainment h2 {
    margin-bottom: 4rem;
    font-size: 3rem;
  }
}

.practices-list-psychology-digital-entertainment {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .practices-list-psychology-digital-entertainment {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .practices-list-psychology-digital-entertainment {
    gap: 2.5rem;
  }
}

.practice-item-psychology-digital-entertainment {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--bg-subtle);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .practice-item-psychology-digital-entertainment {
    flex-direction: row;
    gap: 1.5rem;
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .practice-item-psychology-digital-entertainment {
    gap: 2rem;
    padding: 2.5rem;
  }
}

.practice-number-psychology-digital-entertainment {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary);
  color: var(--text-primary-dark);
  border-radius: var(--radius-lg);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .practice-number-psychology-digital-entertainment {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .practice-number-psychology-digital-entertainment {
    width: 4rem;
    height: 4rem;
    font-size: 1.75rem;
  }
}

.practice-text-psychology-digital-entertainment {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.practice-text-psychology-digital-entertainment h3 {
  color: var(--text-primary-light);
  font-size: 1.125rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .practice-text-psychology-digital-entertainment h3 {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .practice-text-psychology-digital-entertainment h3 {
    font-size: 1.375rem;
  }
}

.practice-text-psychology-digital-entertainment p {
  color: var(--text-secondary-light);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .practice-text-psychology-digital-entertainment p {
    font-size: 0.95rem;
  }
}

@media (min-width: 1024px) {
  .practice-text-psychology-digital-entertainment p {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-psychology-digital-entertainment,
  .insight-item-psychology-digital-entertainment {
    transition: none;
  }

  .card-psychology-digital-entertainment:hover,
  .insight-item-psychology-digital-entertainment:hover {
    transform: none;
  }
}

.behavioral-analysis-consumption-breadcrumbs {
  background-color: var(--bg-light);
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-breadcrumbs {
    padding: 1.25rem 0;
  }
}

.behavioral-analysis-consumption-breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-breadcrumbs .container {
    gap: 1rem;
    font-size: 0.95rem;
  }
}

.behavioral-analysis-consumption-breadcrumbs a {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  transition: color var(--transition-base);
}

.behavioral-analysis-consumption-breadcrumbs a:hover {
  color: var(--color-primary-dark);
}

.behavioral-analysis-consumption-breadcrumbs span {
  color: var(--text-tertiary-light);
}

.breadcrumb-separator {
  color: var(--text-tertiary-light);
  margin: 0 0.25rem;
}

.behavioral-analysis-consumption-hero {
  background-color: #1a1a2e;
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-hero {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-hero {
    padding: 8rem 0;
  }
}

.behavioral-analysis-consumption-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-hero-content {
    gap: 2rem;
  }
}

.behavioral-analysis-consumption-hero h1 {
  color: #ffffff;
  font-size: 2.25rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-hero h1 {
    font-size: 3.75rem;
  }
}

.behavioral-analysis-consumption-lead {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 700px;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-lead {
    font-size: 1.125rem;
  }
}

.behavioral-analysis-consumption-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.875rem;
}

.meta-item i {
  color: var(--color-primary);
}

.behavioral-analysis-consumption-content-1 {
  background-color: #ffffff;
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-content-1 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-content-1 {
    padding: 6rem 0;
  }
}

.behavioral-analysis-consumption-content-1-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-content-1-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.behavioral-analysis-consumption-text-block h2 {
  color: #0f172a;
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-text-block h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-text-block h2 {
    font-size: 2.5rem;
  }
}

.behavioral-analysis-consumption-text-block p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-text-block p {
    font-size: 1rem;
  }
}

.behavioral-analysis-consumption-text-block p:last-child {
  margin-bottom: 0;
}

.behavioral-analysis-consumption-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.behavioral-analysis-consumption-content-2 {
  background-color: #f8fafc;
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-content-2 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-content-2 {
    padding: 6rem 0;
  }
}

.behavioral-analysis-consumption-content-2-content h2 {
  color: #0f172a;
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-content-2-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-content-2-content h2 {
    font-size: 2.5rem;
  }
}

.behavioral-analysis-consumption-content-2-content > p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-content-2-content > p {
    font-size: 1rem;
  }
}

.behavioral-analysis-consumption-highlight-box {
  background-color: #ffffff;
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2.5rem 0;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-highlight-box {
    padding: 2.5rem;
    margin: 3rem 0;
  }
}

.behavioral-analysis-consumption-highlight-box h3 {
  color: #0f172a;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.behavioral-analysis-consumption-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.behavioral-analysis-consumption-list li {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-list li {
    font-size: 1rem;
  }
}

.behavioral-analysis-consumption-list li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.behavioral-analysis-consumption-list strong {
  color: #0f172a;
}

.behavioral-analysis-consumption-content-3 {
  background-color: #ffffff;
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-content-3 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-content-3 {
    padding: 6rem 0;
  }
}

.behavioral-analysis-consumption-content-3-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-content-3-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.behavioral-analysis-consumption-content-3-content .behavioral-analysis-consumption-image-block {
  order: -1;
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-content-3-content .behavioral-analysis-consumption-image-block {
    order: 0;
  }
}

.behavioral-analysis-consumption-content-3-content h2 {
  color: #0f172a;
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-content-3-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-content-3-content h2 {
    font-size: 2.5rem;
  }
}

.behavioral-analysis-consumption-content-3-content p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-content-3-content p {
    font-size: 1rem;
  }
}

.behavioral-analysis-consumption-content-4 {
  background-color: #f0f4f8;
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-content-4 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-content-4 {
    padding: 6rem 0;
  }
}

.behavioral-analysis-consumption-content-4-content h2 {
  color: #0f172a;
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-content-4-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-content-4-content h2 {
    font-size: 2.5rem;
  }
}

.behavioral-analysis-consumption-content-4-content > p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-content-4-content > p {
    font-size: 1rem;
  }
}

.behavioral-analysis-consumption-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.behavioral-analysis-consumption-feature-item {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-feature-item {
    padding: 2rem;
  }
}

.behavioral-analysis-consumption-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.behavioral-analysis-consumption-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(99, 102, 241, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.behavioral-analysis-consumption-feature-item h4 {
  color: #0f172a;
  font-size: 1.125rem;
}

.behavioral-analysis-consumption-feature-item p {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.behavioral-analysis-consumption-content-5 {
  background-color: #ffffff;
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-content-5 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-content-5 {
    padding: 6rem 0;
  }
}

.behavioral-analysis-consumption-content-5-content h2 {
  color: #0f172a;
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-content-5-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-content-5-content h2 {
    font-size: 2.5rem;
  }
}

.behavioral-analysis-consumption-content-5-content p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-content-5-content p {
    font-size: 1rem;
  }
}

.behavioral-analysis-consumption-callout {
  background-color: #e0e7ff;
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-callout {
    padding: 2rem;
    margin: 2.5rem 0;
  }
}

.behavioral-analysis-consumption-callout p {
  color: #3730a3;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-callout p {
    font-size: 1rem;
  }
}

.behavioral-analysis-consumption-conclusion {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-conclusion {
    padding: 6rem 0;
  }
}

.behavioral-analysis-consumption-conclusion-content h2 {
  color: #ffffff;
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-conclusion-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-conclusion-content h2 {
    font-size: 2.5rem;
  }
}

.behavioral-analysis-consumption-conclusion-content p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-conclusion-content p {
    font-size: 1rem;
  }
}

.behavioral-analysis-consumption-conclusion-content p:last-child {
  margin-bottom: 0;
}

.behavioral-analysis-consumption-related {
  background-color: #f8fafc;
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-related {
    padding: 6rem 0;
  }
}

.behavioral-analysis-consumption-related-content h2 {
  color: #0f172a;
  font-size: 1.875rem;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-related-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-related-content h2 {
    font-size: 2.5rem;
  }
}

.behavioral-analysis-consumption-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .behavioral-analysis-consumption-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.behavioral-analysis-consumption-related-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.behavioral-analysis-consumption-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.behavioral-analysis-consumption-related-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #e2e8f0;
}

.behavioral-analysis-consumption-related-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.behavioral-analysis-consumption-related-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-related-info {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.behavioral-analysis-consumption-related-card h3 {
  color: #0f172a;
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 0;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-related-card h3 {
    font-size: 1.5rem;
  }
}

.behavioral-analysis-consumption-related-card p {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .behavioral-analysis-consumption-related-card p {
    font-size: 0.95rem;
  }
}

.behavioral-analysis-consumption-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  font-size: 0.875rem;
  text-decoration: none;
  transition: all var(--transition-base);
}

.behavioral-analysis-consumption-related-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.behavioral-analysis-consumption-related-link i {
  font-size: 0.75rem;
}

@media (max-width: 1023px) {
  .behavioral-analysis-consumption-image-block {
    max-width: 100%;
  }
}

.post-motivation-psychology-gaming {
  overflow: hidden;
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-breadcrumbs {
  background-color: var(--bg-light);
  padding: 1.5rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-breadcrumbs {
    padding: 2rem 0;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-breadcrumbs-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-breadcrumbs-content {
    gap: 1rem;
    font-size: 0.95rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-breadcrumb-link {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: all var(--transition-base);
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-breadcrumb-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-breadcrumb-separator {
  color: var(--text-tertiary-light);
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-breadcrumb-current {
  color: var(--text-secondary-light);
  font-weight: var(--fw-medium);
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-hero {
  background-color: var(--bg-dark);
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-hero {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-hero {
    padding: 8rem 0;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-hero-content {
    gap: 2rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-title {
  color: var(--text-primary-dark);
  font-size: 2.25rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-title {
    font-size: 3.75rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-lead {
  color: var(--text-secondary-dark);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-lead {
    font-size: 1.25rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-meta {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-meta {
    gap: 2rem;
    margin-top: 1.5rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-read-time,
.post-motivation-psychology-gaming .motivation-psychology-gaming-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-tertiary-dark);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-read-time,
  .post-motivation-psychology-gaming .motivation-psychology-gaming-category {
    font-size: 0.95rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-read-time i,
.post-motivation-psychology-gaming .motivation-psychology-gaming-category i {
  color: var(--color-primary-light);
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-1 {
  background-color: var(--bg-lighter);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-1 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-1 {
    padding: 6rem 0;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-1-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-1-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-text-block {
    gap: 1.75rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-1 h2 {
  color: var(--text-primary-light);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-1 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-1 h2 {
    font-size: 2.75rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-1 p {
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-1 p {
    font-size: 1rem;
    line-height: 1.9;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-image-1 {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-image-1 {
    width: 45%;
    min-width: 400px;
    max-height: 400px;
    flex-shrink: 0;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-2 {
  background-color: var(--bg-subtle);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-2 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-2 {
    padding: 6rem 0;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-2-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-2-content {
    gap: 2.5rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-2 h2 {
  color: var(--text-primary-light);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-2 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-2 h2 {
    font-size: 2.75rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-two-column {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-column {
    gap: 1.25rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-2 h3 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-2 h3 {
    font-size: 1.75rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-2 p {
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-2 p {
    font-size: 1rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-list {
    gap: 1.25rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-list li {
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 0;
  position: relative;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-list li {
    font-size: 1rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  margin-right: 1rem;
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-insight {
  background-color: rgba(99, 102, 241, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-insight {
    padding: 2rem;
    font-size: 1rem;
    gap: 1rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-insight i {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-3 {
  background-color: var(--bg-lighter);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-3 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-3 {
    padding: 6rem 0;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-3-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-3-content {
    gap: 2.5rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-3 h2 {
  color: var(--text-primary-light);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-3 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-3 h2 {
    font-size: 2.75rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-3 p {
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-3 p {
    font-size: 1rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-mechanisms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-mechanisms {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-mechanisms {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-mechanism-card {
  background-color: var(--bg-lighter);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-mechanism-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-mechanism-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-mechanism-card h4 {
  color: var(--text-primary-light);
  font-size: 1.25rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-mechanism-card h4 {
    font-size: 1.375rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-mechanism-card h4 i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-mechanism-card p {
  color: var(--text-secondary-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-mechanism-card p {
    font-size: 0.95rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-image-2 {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-image-2 {
    max-height: 400px;
    margin-top: 1.5rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-4 {
  background-color: var(--bg-dark);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-4 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-4 {
    padding: 6rem 0;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-4-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-4-content {
    gap: 2.5rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-4 h2 {
  color: var(--text-primary-dark);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-4 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-4 h2 {
    font-size: 2.75rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-4 h3 {
  color: var(--color-primary-light);
  font-size: 1.375rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-4 h3 {
    font-size: 1.5rem;
    margin-top: 1.25rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-4 p {
  color: var(--text-secondary-dark);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-4 p {
    font-size: 1rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-4 ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-4 ul {
    margin: 1.25rem 0;
    gap: 1.25rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-4 li {
  color: var(--text-secondary-dark);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 0;
  position: relative;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-4 li {
    font-size: 1rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-4 li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 0.75rem;
  margin-right: 1rem;
  line-height: 1.8;
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-5 {
  background-color: var(--bg-lighter);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-5 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-5 {
    padding: 6rem 0;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-5-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-5-content {
    gap: 2.5rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-5 h2 {
  color: var(--text-primary-light);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-5 h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-5 h2 {
    font-size: 2.75rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-5 h3 {
  color: var(--text-primary-light);
  font-size: 1.375rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-5 h3 {
    font-size: 1.5rem;
    margin-top: 1.25rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-content-5 p {
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-content-5 p {
    font-size: 1rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-dopamine-section {
  background-color: var(--bg-subtle);
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-dopamine-section {
    padding: 2rem;
    margin: 2rem 0;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-dopamine-section h3 {
  color: var(--text-primary-light);
  margin-top: 0;
  margin-bottom: 1rem;
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-numbered-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: list-counter;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-numbered-list {
    gap: 1.25rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-numbered-list li {
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 0;
  position: relative;
  counter-increment: list-counter;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-numbered-list li {
    font-size: 1rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-numbered-list li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  background-color: var(--color-primary);
  color: var(--text-primary-dark);
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: 0.875rem;
  margin-right: 1rem;
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-conclusion {
  background-color: var(--bg-subtle);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-conclusion {
    padding: 6rem 0;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-conclusion-content {
    gap: 2.5rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-conclusion h2 {
  color: var(--text-primary-light);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-conclusion h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-conclusion h2 {
    font-size: 2.75rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-conclusion p {
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-conclusion p {
    font-size: 1rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-key-takeaways {
  background-color: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-key-takeaways {
    padding: 2rem;
    margin-top: 2rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-key-takeaways h3 {
  color: var(--color-primary);
  font-size: 1.375rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-key-takeaways h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-takeaways-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-takeaways-list {
    gap: 1.25rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-takeaways-list li {
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 0;
  position: relative;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-takeaways-list li {
    font-size: 1rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-takeaways-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: var(--fw-bold);
  margin-right: 1rem;
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-highlight {
  background-color: rgba(245, 158, 11, 0.1);
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-highlight {
    padding: 2rem;
    font-size: 1rem;
    margin: 2rem 0;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-related {
  background-color: var(--bg-lighter);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-related {
    padding: 6rem 0;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-related-content {
    gap: 2.5rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-related h2 {
  color: var(--text-primary-light);
  font-size: 1.875rem;
  margin: 0;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-related h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-related h2 {
    font-size: 2.75rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-related-card {
  background-color: var(--bg-lighter);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-related-card {
    gap: 1.25rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-related-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-related-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--bg-subtle);
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-related-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-related-card:hover .motivation-psychology-gaming-related-image {
  transform: scale(1.05);
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-related-card > *:not(.motivation-psychology-gaming-related-image-wrapper) {
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-related-card > *:not(.motivation-psychology-gaming-related-image-wrapper) {
    padding: 0 2rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-related-card > *:last-child {
  padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-related-card > *:last-child {
    padding-bottom: 2rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-related-title {
  color: var(--text-primary-light);
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-related-title {
    font-size: 1.375rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-related-description {
  color: var(--text-secondary-light);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-related-description {
    font-size: 0.95rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-motivation-psychology-gaming .motivation-psychology-gaming-related-link {
    font-size: 1rem;
  }
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-related-link:hover {
  color: var(--color-primary-dark);
  transform: translateX(4px);
}

.post-motivation-psychology-gaming .motivation-psychology-gaming-related-link i {
  font-size: 0.875rem;
}

  .post-psychological-decision-factors {
    background-color: var(--bg-lighter);
  }

  
  .psychological-decision-factors-breadcrumbs {
    background-color: var(--bg-subtle);
    padding: 1rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-breadcrumbs {
      padding: 1.5rem 0;
    }
  }

  .post-psychological-decision-factors .psychological-decision-factors-breadcrumbs .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .psychological-decision-factors-breadcrumb-link {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: var(--fw-medium);
    transition: color var(--transition-base);
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-breadcrumb-link {
      font-size: 0.95rem;
    }
  }

  .psychological-decision-factors-breadcrumb-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
  }

  .psychological-decision-factors-breadcrumb-separator {
    color: var(--text-tertiary-light);
    margin: 0 0.25rem;
  }

  .psychological-decision-factors-breadcrumb-current {
    color: var(--text-secondary-light);
    font-size: 0.875rem;
    font-weight: var(--fw-medium);
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-breadcrumb-current {
      font-size: 0.95rem;
    }
  }

  
  .psychological-decision-factors-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 4rem 0 3rem;
    overflow: hidden;
    position: relative;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-hero {
      padding: 6rem 0 4rem;
    }
  }

  @media (min-width: 1024px) {
    .psychological-decision-factors-hero {
      padding: 8rem 0 5rem;
    }
  }

  .post-psychological-decision-factors .psychological-decision-factors-hero-content {
    position: relative;
    z-index: 2;
  }

  .psychological-decision-factors-hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 500px;
    height: auto;
    opacity: 0.15;
    z-index: 1;
    object-fit: cover;
    display: none;
  }

  @media (min-width: 1024px) {
    .psychological-decision-factors-hero-image {
      display: block;
    }
  }

  .psychological-decision-factors-hero-title {
    color: #ffffff;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-hero-title {
      font-size: 3rem;
      margin-bottom: 1.75rem;
    }
  }

  @media (min-width: 1024px) {
    .psychological-decision-factors-hero-title {
      font-size: 3.75rem;
      margin-bottom: 2rem;
    }
  }

  .psychological-decision-factors-hero-lead {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-hero-lead {
      font-size: 1.125rem;
      margin-bottom: 2.5rem;
    }
  }

  .psychological-decision-factors-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .psychological-decision-factors-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a1a1aa;
    font-size: 0.875rem;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-meta-item {
      font-size: 0.95rem;
    }
  }

  .psychological-decision-factors-meta-item i {
    color: var(--color-primary-light);
    font-size: 1rem;
  }

  
  .psychological-decision-factors-content-1 {
    background-color: var(--bg-lighter);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-content-1 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .psychological-decision-factors-content-1 {
      padding: 6rem 0;
    }
  }

  .post-psychological-decision-factors .psychological-decision-factors-content-1-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-psychological-decision-factors .psychological-decision-factors-content-1-content {
      gap: 2rem;
    }
  }

  .psychological-decision-factors-section-title {
    color: #0f172a;
    font-size: 1.875rem;
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-section-title {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .psychological-decision-factors-section-title {
      font-size: 3rem;
    }
  }

  .psychological-decision-factors-section-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.8;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-section-text {
      font-size: 1rem;
    }
  }

  .psychological-decision-factors-highlight {
    background-color: #f0f4ff;
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-highlight {
      flex-direction: row;
      align-items: flex-start;
      gap: 1.5rem;
      padding: 2rem;
    }
  }

  .psychological-decision-factors-highlight i {
    color: var(--color-primary);
    font-size: 1.75rem;
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-highlight i {
      font-size: 2rem;
    }
  }

  .psychological-decision-factors-highlight-title {
    color: var(--color-primary-dark);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-highlight-title {
      font-size: 1.5rem;
    }
  }

  .psychological-decision-factors-highlight-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-highlight-text {
      font-size: 1rem;
    }
  }

  
  .psychological-decision-factors-content-2 {
    background-color: #f8fafc;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-content-2 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .psychological-decision-factors-content-2 {
      padding: 6rem 0;
    }
  }

  .post-psychological-decision-factors .psychological-decision-factors-content-2-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }

  @media (min-width: 1024px) {
    .post-psychological-decision-factors .psychological-decision-factors-content-2-content {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
  }

  .post-psychological-decision-factors .psychological-decision-factors-content-2-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .post-psychological-decision-factors .psychological-decision-factors-content-2-text {
      gap: 2rem;
    }
  }

  .psychological-decision-factors-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-list {
      gap: 1.5rem;
    }
  }

  .psychological-decision-factors-list-item {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-list-item {
      font-size: 1rem;
      padding-left: 2rem;
    }
  }

  .psychological-decision-factors-list-item::before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
  }

  .psychological-decision-factors-content-2-image {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  
  .psychological-decision-factors-content-3 {
    background-color: var(--bg-lighter);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-content-3 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .psychological-decision-factors-content-3 {
      padding: 6rem 0;
    }
  }

  .post-psychological-decision-factors .psychological-decision-factors-content-3-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .post-psychological-decision-factors .psychological-decision-factors-content-3-content {
      gap: 2.5rem;
    }
  }

  .psychological-decision-factors-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-grid-2 {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  .psychological-decision-factors-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-card {
      padding: 2rem;
      gap: 1.5rem;
    }
  }

  .psychological-decision-factors-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
  }

  .psychological-decision-factors-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .psychological-decision-factors-card-header i {
    color: var(--color-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-card-header i {
      font-size: 2rem;
    }
  }

  .psychological-decision-factors-card-title {
    color: #0f172a;
    font-size: 1.25rem;
    margin: 0;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-card-title {
      font-size: 1.5rem;
    }
  }

  .psychological-decision-factors-card-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-card-text {
      font-size: 1rem;
    }
  }

  
  .psychological-decision-factors-content-4 {
    background-color: #f0f4ff;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-content-4 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .psychological-decision-factors-content-4 {
      padding: 6rem 0;
    }
  }

  .post-psychological-decision-factors .psychological-decision-factors-content-4-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .post-psychological-decision-factors .psychological-decision-factors-content-4-content {
      gap: 2.5rem;
    }
  }

  .psychological-decision-factors-highlight-secondary {
    background-color: var(--bg-lighter);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-highlight-secondary {
      padding: 2rem;
    }
  }

  .psychological-decision-factors-highlight-secondary-title {
    color: var(--color-primary-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-highlight-secondary-title {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }
  }

  .psychological-decision-factors-ordered-list {
    list-style: none;
    counter-reset: item;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-ordered-list {
      gap: 1.5rem;
    }
  }

  .psychological-decision-factors-ordered-item {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
    counter-increment: item;
    padding-left: 2rem;
    position: relative;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-ordered-item {
      font-size: 1rem;
      padding-left: 2.5rem;
    }
  }

  .psychological-decision-factors-ordered-item::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--color-primary);
    color: #ffffff;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--fw-bold);
    font-size: 0.875rem;
  }

  
  .psychological-decision-factors-content-5 {
    background-color: var(--bg-lighter);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-content-5 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .psychological-decision-factors-content-5 {
      padding: 6rem 0;
    }
  }

  .post-psychological-decision-factors .psychological-decision-factors-content-5-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 850px;
  }

  @media (min-width: 768px) {
    .post-psychological-decision-factors .psychological-decision-factors-content-5-content {
      gap: 2rem;
    }
  }

  
  .psychological-decision-factors-related {
    background-color: #f8fafc;
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-related {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .psychological-decision-factors-related {
      padding: 6rem 0;
    }
  }

  .post-psychological-decision-factors .psychological-decision-factors-related-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .post-psychological-decision-factors .psychological-decision-factors-related-content {
      gap: 3rem;
    }
  }

  .psychological-decision-factors-related-title {
    color: #0f172a;
    font-size: 1.875rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-related-title {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .psychological-decision-factors-related-title {
      font-size: 3rem;
    }
  }

  .psychological-decision-factors-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-related-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .psychological-decision-factors-related-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }
  }

  .psychological-decision-factors-related-card {
    background-color: var(--bg-lighter);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
  }

  .psychological-decision-factors-related-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }

  .psychological-decision-factors-related-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .psychological-decision-factors-related-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-related-card-body {
      padding: 2rem;
      gap: 1.25rem;
    }
  }

  .psychological-decision-factors-related-card-title {
    color: #0f172a;
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 0;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-related-card-title {
      font-size: 1.5rem;
    }
  }

  .psychological-decision-factors-related-card-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-related-card-description {
      font-size: 1rem;
    }
  }

  .psychological-decision-factors-related-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: var(--fw-semibold);
    font-size: 0.95rem;
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .psychological-decision-factors-related-card-link {
      font-size: 1rem;
    }
  }

  .psychological-decision-factors-related-card-link:hover {
    color: var(--color-primary-dark);
    gap: 0.75rem;
  }

  .psychological-decision-factors-related-card-link i {
    font-size: 0.875rem;
  }

.post-engagement-drivers-rewards {
  width: 100%;
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-breadcrumbs {
  background-color: var(--bg-subtle);
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-breadcrumb-link {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  transition: color var(--transition-base);
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-breadcrumb-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-breadcrumb-separator {
  color: var(--text-tertiary-light);
  font-size: 0.75rem;
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-breadcrumb-current {
  color: var(--text-secondary-light);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-hero {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-hero {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-hero {
    padding: 8rem 0;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-hero-content {
    gap: 2rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-hero-title {
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: var(--fw-extrabold);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-hero-title {
    font-size: 3.75rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-lead {
  color: #e2e8f0;
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 90%;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-lead {
    font-size: 1.25rem;
    max-width: 85%;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-read-time {
  color: var(--color-primary-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-intro {
  background-color: #ffffff;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-intro {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-intro {
    padding: 6rem 0;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-intro-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-intro-text {
  color: var(--text-primary-light);
  font-size: 1rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-intro-text {
    font-size: 1.0625rem;
    line-height: 1.9;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-highlight-box {
  background-color: #f0f4ff;
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  gap: 1rem;
  flex-direction: row;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-highlight-box {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-highlight-icon {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-highlight-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-highlight-title {
  color: var(--text-primary-light);
  font-size: 1.125rem;
  font-weight: var(--fw-bold);
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-highlight-description {
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-section-1 {
  background-color: var(--bg-subtle);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-1 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-1 {
    padding: 6rem 0;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-section-1-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-1-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-section-1-heading {
  color: var(--text-primary-light);
  font-size: 1.875rem;
  font-weight: var(--fw-bold);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-1-heading {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-1-heading {
    font-size: 3rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-section-1-para {
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-1-para {
    font-size: 1rem;
    line-height: 1.9;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-section-1-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-section-2 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-2 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-2 {
    padding: 6rem 0;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-section-2-heading {
  color: var(--text-primary-light);
  font-size: 1.875rem;
  font-weight: var(--fw-bold);
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-2-heading {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-2-heading {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-mechanisms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-mechanisms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-mechanisms-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-mechanism-card {
  background-color: #f8fafc;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-mechanism-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-mechanism-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-mechanism-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-mechanism-title {
  color: var(--text-primary-light);
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-mechanism-text {
  color: var(--text-secondary-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-section-3 {
  background-color: var(--bg-subtle);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-3 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-3 {
    padding: 6rem 0;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-section-3-heading {
  color: var(--text-primary-light);
  font-size: 1.875rem;
  font-weight: var(--fw-bold);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-3-heading {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-3-heading {
    font-size: 3rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-behavior-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-behavior-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-section-3-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  order: -1;
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-3-image {
    order: 1;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-behavior-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-behavior-text {
    gap: 1.5rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-section-3-para {
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-3-para {
    font-size: 1rem;
    line-height: 1.9;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-section-3-subheading {
  color: var(--text-primary-light);
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-3-subheading {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-ordered-list {
  list-style: decimal;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-ordered-list {
    padding-left: 2rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-list-item {
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-list-item {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-section-4 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-4 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-4 {
    padding: 6rem 0;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-section-4-heading {
  color: var(--text-primary-light);
  font-size: 1.875rem;
  font-weight: var(--fw-bold);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-4-heading {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-4-heading {
    font-size: 3rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-section-4-intro {
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-4-intro {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-insights-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-insights-list {
    gap: 2rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-insight-item {
  background-color: #f8fafc;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-insight-item {
    padding: 2rem;
    gap: 1rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-insight-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-insight-title {
  color: var(--text-primary-light);
  font-size: 1.0625rem;
  font-weight: var(--fw-semibold);
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-insight-title {
    font-size: 1.125rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-insight-source {
  color: var(--text-tertiary-light);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  white-space: nowrap;
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-insight-text {
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-insight-text {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-section-5 {
  background-color: var(--bg-subtle);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-5 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-5 {
    padding: 6rem 0;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-section-5-heading {
  color: var(--text-primary-light);
  font-size: 1.875rem;
  font-weight: var(--fw-bold);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-5-heading {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-5-heading {
    font-size: 3rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-section-5-intro {
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-section-5-intro {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-implications-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-implications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-implication-box {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-implication-box {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-implication-heading {
  color: var(--text-primary-light);
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-implication-heading {
    font-size: 1.375rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-bullet-list {
    gap: 1rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-bullet-item {
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-bullet-item {
    font-size: 1rem;
    padding-left: 2rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-bullet-item::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-conclusion {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-conclusion {
    padding: 6rem 0;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-conclusion-heading {
  color: #ffffff;
  font-size: 1.875rem;
  font-weight: var(--fw-bold);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-conclusion-heading {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-conclusion-heading {
    font-size: 3rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-conclusion-content {
    gap: 2rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-conclusion-text {
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-conclusion-text {
    font-size: 1rem;
    line-height: 1.9;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-conclusion-highlight {
  background-color: rgba(99, 102, 241, 0.1);
  border-left: 4px solid var(--color-primary-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-conclusion-highlight {
    padding: 2rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-conclusion-highlight-text {
  color: #f0f4ff;
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-conclusion-highlight-text {
    font-size: 1rem;
    line-height: 1.9;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-related {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-related {
    padding: 6rem 0;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-related-heading {
  color: var(--text-primary-light);
  font-size: 1.875rem;
  font-weight: var(--fw-bold);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-related-heading {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-related-heading {
    font-size: 3rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-related-intro {
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-related-intro {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-related-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-related-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-related-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-related-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-related-body {
    padding: 1.75rem;
    gap: 1rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-related-title {
  color: var(--text-primary-light);
  font-size: 1.0625rem;
  font-weight: var(--fw-semibold);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-related-title {
    font-size: 1.125rem;
  }
}

.post-engagement-drivers-rewards .engagement-drivers-rewards-related-description {
  color: var(--text-secondary-light);
  font-size: 0.875rem;
  line-height: 1.6;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-related-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .post-engagement-drivers-rewards .engagement-drivers-rewards-breadcrumbs .container {
    font-size: 0.8rem;
  }
  
  .post-engagement-drivers-rewards .engagement-drivers-rewards-hero {
    text-align: left;
  }
  
  .post-engagement-drivers-rewards .engagement-drivers-rewards-lead {
    font-size: 1rem;
  }
}

.post-engagement-drivers-rewards em {
  color: var(--color-secondary);
  font-style: italic;
}

.post-engagement-drivers-rewards strong {
  color: var(--text-primary-light);
  font-weight: var(--fw-bold);
}

    .post-fomo-social-psychology {
      width: 100%;
    }

    

    .post-fomo-social-psychology .fomo-social-psychology-breadcrumbs {
      background-color: var(--bg-subtle);
      padding: 1rem 0;
      overflow: hidden;
    }

    .post-fomo-social-psychology .fomo-social-psychology-breadcrumbs .container {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      align-items: center;
    }

    .post-fomo-social-psychology .fomo-social-psychology-breadcrumbs a,
    .post-fomo-social-psychology .fomo-social-psychology-breadcrumbs span {
      font-size: 0.875rem;
      color: var(--text-secondary-light);
    }

    .post-fomo-social-psychology .fomo-social-psychology-breadcrumbs a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color var(--transition-base);
    }

    .post-fomo-social-psychology .fomo-social-psychology-breadcrumbs a:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
    }

    .post-fomo-social-psychology .fomo-social-psychology-breadcrumbs span {
      color: var(--text-primary-light);
      font-weight: var(--fw-semibold);
    }

    

    .post-fomo-social-psychology .fomo-social-psychology-hero {
      background-color: var(--bg-darker);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-fomo-social-psychology .fomo-social-psychology-hero {
        padding: 6rem 0;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-hero-content {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
    }

    .post-fomo-social-psychology .fomo-social-psychology-hero h1 {
      font-size: 2.25rem;
      font-weight: var(--fw-extrabold);
      color: var(--text-primary-dark);
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-hero h1 {
        font-size: 3rem;
      }
    }

    @media (min-width: 1024px) {
      .post-fomo-social-psychology .fomo-social-psychology-hero h1 {
        font-size: 3.75rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-lead {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text-secondary-dark);
      max-width: 90%;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-lead {
        font-size: 1.125rem;
        max-width: 85%;
      }
    }

    @media (min-width: 1024px) {
      .post-fomo-social-psychology .fomo-social-psychology-lead {
        font-size: 1.25rem;
        max-width: 80%;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .post-fomo-social-psychology .fomo-social-psychology-meta-item {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .post-fomo-social-psychology .fomo-social-psychology-meta-label {
      font-size: 0.75rem;
      color: var(--text-tertiary-dark);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: var(--fw-semibold);
    }

    .post-fomo-social-psychology .fomo-social-psychology-meta-value {
      font-size: 1rem;
      color: var(--text-primary-dark);
      font-weight: var(--fw-semibold);
    }

    

    .post-fomo-social-psychology .fomo-social-psychology-section-1 {
      background-color: var(--bg-lighter);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-1 {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-1 {
        padding: 5rem 0;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-section-1-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .post-fomo-social-psychology .fomo-social-psychology-section-1 h2 {
      font-size: 1.875rem;
      color: var(--text-primary-light);
      font-weight: var(--fw-bold);
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-1 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-1 h2 {
        font-size: 3rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-section-1 p {
      color: var(--text-secondary-light);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-1 p {
        font-size: 1rem;
      }
    }

    

    .post-fomo-social-psychology .fomo-social-psychology-section-2 {
      background-color: var(--bg-dark);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-2 {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-2 {
        padding: 5rem 0;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-section-2-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .post-fomo-social-psychology .fomo-social-psychology-section-2 h2 {
      font-size: 1.875rem;
      color: var(--text-primary-dark);
      font-weight: var(--fw-bold);
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-2 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-2 h2 {
        font-size: 3rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-section-2 p {
      color: var(--text-secondary-dark);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-2 p {
        font-size: 1rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-mechanism-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-mechanism-list {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-mechanism-item {
      background-color: rgba(99, 102, 241, 0.1);
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      border-left: 4px solid var(--color-primary);
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-mechanism-item {
        padding: 2rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-mechanism-item h3 {
      font-size: 1.25rem;
      color: var(--color-primary-light);
      font-weight: var(--fw-bold);
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-mechanism-item h3 {
        font-size: 1.5rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-mechanism-item p {
      color: var(--text-tertiary-dark);
      font-size: 0.9rem;
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-mechanism-item p {
        font-size: 0.95rem;
      }
    }

    

    .post-fomo-social-psychology .fomo-social-psychology-section-3 {
      background-color: var(--bg-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-3 {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-3 {
        padding: 5rem 0;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-section-3-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .post-fomo-social-psychology .fomo-social-psychology-section-3 h2 {
      font-size: 1.875rem;
      color: var(--text-primary-light);
      font-weight: var(--fw-bold);
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-3 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-3 h2 {
        font-size: 3rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-section-3 p {
      color: var(--text-secondary-light);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-3 p {
        font-size: 1rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-impact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-impact-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-fomo-social-psychology .fomo-social-psychology-impact-grid {
        gap: 2rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-impact-card {
      background-color: var(--bg-lighter);
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      border: 1px solid #e2e8f0;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      box-shadow: var(--shadow-sm);
      transition: all var(--transition-base);
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-impact-card {
        padding: 2rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-impact-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--color-primary);
    }

    .post-fomo-social-psychology .fomo-social-psychology-impact-icon {
      width: 3rem;
      height: 3rem;
      background-color: rgba(99, 102, 241, 0.1);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-primary);
      font-size: var(--icon-lg);
    }

    .post-fomo-social-psychology .fomo-social-psychology-impact-card h3 {
      font-size: 1.25rem;
      color: var(--text-primary-light);
      font-weight: var(--fw-bold);
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-impact-card h3 {
        font-size: 1.5rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-impact-card p {
      color: var(--text-secondary-light);
      font-size: 0.9rem;
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-impact-card p {
        font-size: 0.95rem;
      }
    }

    

    .post-fomo-social-psychology .fomo-social-psychology-section-4 {
      background-color: var(--bg-darker);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-4 {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-4 {
        padding: 5rem 0;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-section-4-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .post-fomo-social-psychology .fomo-social-psychology-section-4 h2 {
      font-size: 1.875rem;
      color: var(--text-primary-dark);
      font-weight: var(--fw-bold);
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-4 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-4 h2 {
        font-size: 3rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-section-4 p {
      color: var(--text-secondary-dark);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-section-4 p {
        font-size: 1rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-recommendations-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      list-style: none;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-recommendations-list {
        gap: 1.5rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-recommendations-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1rem;
      background-color: rgba(99, 102, 241, 0.05);
      border-radius: var(--radius-md);
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-recommendations-item {
        padding: 1.5rem;
        gap: 1.5rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-recommendations-item::before {
      content: "";
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 2rem;
      height: 2rem;
      background-color: var(--color-primary);
      color: var(--text-primary-dark);
      border-radius: 50%;
      font-weight: var(--fw-bold);
      flex-shrink: 0;
    }

    .post-fomo-social-psychology .fomo-social-psychology-recommendations-text {
      color: var(--text-secondary-dark);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-recommendations-text {
        font-size: 1rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-recommendations-title {
      color: var(--text-primary-dark);
      font-weight: var(--fw-semibold);
      margin-bottom: 0.25rem;
    }

    

    .post-fomo-social-psychology .fomo-social-psychology-conclusion {
      background-color: var(--bg-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-conclusion {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-fomo-social-psychology .fomo-social-psychology-conclusion {
        padding: 5rem 0;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-conclusion-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 900px;
    }

    .post-fomo-social-psychology .fomo-social-psychology-conclusion h2 {
      font-size: 1.875rem;
      color: var(--text-primary-light);
      font-weight: var(--fw-bold);
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-conclusion h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-fomo-social-psychology .fomo-social-psychology-conclusion h2 {
        font-size: 2.5rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-conclusion p {
      color: var(--text-secondary-light);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-conclusion p {
        font-size: 1rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-conclusion-highlight {
      background-color: rgba(99, 102, 241, 0.1);
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      color: var(--text-secondary-light);
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-conclusion-highlight {
        padding: 2rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-conclusion-highlight p {
      margin: 0;
      font-style: italic;
    }

    

    .post-fomo-social-psychology .fomo-social-psychology-related {
      background-color: var(--bg-darker);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-related {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-fomo-social-psychology .fomo-social-psychology-related {
        padding: 5rem 0;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-related-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .post-fomo-social-psychology .fomo-social-psychology-related h2 {
      font-size: 1.875rem;
      color: var(--text-primary-dark);
      font-weight: var(--fw-bold);
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-related h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-fomo-social-psychology .fomo-social-psychology-related h2 {
        font-size: 3rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-related-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-fomo-social-psychology .fomo-social-psychology-related-grid {
        grid-template-columns: 1fr 1fr 1fr;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-related-card {
      background-color: var(--bg-dark);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all var(--transition-base);
    }

    .post-fomo-social-psychology .fomo-social-psychology-related-card:hover {
      transform: translateY(-6px);
      border-color: var(--color-primary);
      box-shadow: 0 12px 24px rgba(99, 102, 241, 0.2);
    }

    .post-fomo-social-psychology .fomo-social-psychology-related-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      background-color: rgba(99, 102, 241, 0.1);
    }

    .post-fomo-social-psychology .fomo-social-psychology-related-card-body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      flex-grow: 1;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-related-card-body {
        padding: 2rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-related-card h3 {
      font-size: 1.25rem;
      color: var(--text-primary-dark);
      font-weight: var(--fw-bold);
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-related-card h3 {
        font-size: 1.5rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-related-card p {
      color: var(--text-secondary-dark);
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
      flex-grow: 1;
    }

    @media (min-width: 768px) {
      .post-fomo-social-psychology .fomo-social-psychology-related-card p {
        font-size: 0.95rem;
      }
    }

    .post-fomo-social-psychology .fomo-social-psychology-related-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-primary);
      font-weight: var(--fw-semibold);
      text-decoration: none;
      transition: all var(--transition-base);
      font-size: 0.95rem;
    }

    .post-fomo-social-psychology .fomo-social-psychology-related-link:hover {
      color: var(--color-primary-light);
      gap: 1rem;
    }

    .post-fomo-social-psychology .fomo-social-psychology-related-link i {
      display: flex;
      align-items: center;
      justify-content: center;
    }

.legal-docs {
  font-family: var(--font-primary);
  overflow: hidden;
}

.legal-docs section {
  overflow: hidden;
}

.legal-docs .hero-section {
  background-color: var(--bg-dark);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .legal-docs .hero-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .legal-docs .hero-section {
    padding: 6rem 0;
  }
}

.legal-docs .hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .legal-docs .hero-content {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs .hero-content {
    gap: 2rem;
  }
}

.legal-docs .hero-section h1 {
  color: var(--text-primary-dark);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .legal-docs .hero-section h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs .hero-section h1 {
    font-size: 3rem;
  }
}

.legal-docs .hero-section .updated-date {
  color: var(--text-tertiary-dark);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
}

@media (min-width: 768px) {
  .legal-docs .hero-section .updated-date {
    font-size: 1rem;
  }
}

.legal-docs .content-section {
  background-color: var(--bg-lighter);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .legal-docs .content-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .legal-docs .content-section {
    padding: 6rem 0;
  }
}

.legal-docs .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .legal-docs .content-wrapper {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs .content-wrapper {
    gap: 4rem;
  }
}

.legal-docs .content-section h2 {
  color: var(--text-primary-light);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .legal-docs .content-section h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs .content-section h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}

.legal-docs .content-section p {
  color: var(--text-secondary-light);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .legal-docs .content-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs .content-section p {
    margin-bottom: 2rem;
  }
}

.legal-docs .content-section ul {
  color: var(--text-secondary-light);
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .legal-docs .content-section ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
  }
}

.legal-docs .content-section li {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .legal-docs .content-section li {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

.legal-docs .contact-section {
  background-color: var(--bg-subtle);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .legal-docs .contact-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .legal-docs .contact-section {
    padding: 6rem 0;
  }
}

.legal-docs .contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .legal-docs .contact-content {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs .contact-content {
    gap: 2.5rem;
  }
}

.legal-docs .contact-section h2 {
  color: var(--text-primary-light);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .legal-docs .contact-section h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs .contact-section h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
}

.legal-docs .contact-item {
  padding: 1.5rem;
  background-color: var(--bg-lighter);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .legal-docs .contact-item {
    padding: 2rem;
    border-radius: var(--radius-xl);
  }
}

.legal-docs .contact-item h3 {
  color: var(--text-primary-light);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .legal-docs .contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}

.legal-docs .contact-item p {
  color: var(--text-secondary-light);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .legal-docs .contact-item p {
    font-size: 1rem;
  }
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .legal-docs .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs .container {
    padding: 0 3rem;
  }
}

  .thank-page {
    overflow: hidden;
  }

  
  .thank-hero-section {
    background-color: var(--bg-dark);
    padding: 4rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .thank-hero-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-section {
      padding: 6rem 0;
    }
  }

  .thank-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .thank-hero-content {
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-content {
      gap: 2.5rem;
    }
  }

  .thank-icon-wrapper {
    font-size: 4rem;
    color: var(--color-success);
    animation: thank-bounce 0.8s ease-out;
  }

  @media (min-width: 768px) {
    .thank-icon-wrapper {
      font-size: 5rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-icon-wrapper {
      font-size: 6rem;
    }
  }

  .thank-hero-section h1 {
    color: var(--text-primary-dark);
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: var(--fw-bold);
    line-height: 1.2;
    margin: 0;
  }

  @media (min-width: 768px) {
    .thank-hero-section h1 {
      font-size: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-section h1 {
      font-size: 3.75rem;
    }
  }

  .thank-lead {
    color: var(--text-secondary-dark);
    font-size: 1rem;
    font-weight: var(--fw-regular);
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
  }

  @media (min-width: 768px) {
    .thank-lead {
      font-size: 1.125rem;
    }
  }

  
  .thank-message-section {
    background-color: var(--bg-lighter);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .thank-message-section {
      padding: 4rem 0;
    }
  }

  @media (min-width: 1024px) {
    .thank-message-section {
      padding: 5rem 0;
    }
  }

  .thank-message-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .thank-message-content {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-message-content {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  .thank-card {
    background-color: var(--bg-light);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .thank-card {
      padding: 2rem;
      gap: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-card {
      padding: 2rem;
      gap: 1.5rem;
    }
  }

  .thank-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }

  .thank-card-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }

  .thank-card-header i {
    font-size: var(--icon-lg);
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
  }

  @media (min-width: 768px) {
    .thank-card-header i {
      font-size: var(--icon-xl);
    }
  }

  .thank-card h2 {
    color: var(--text-primary-light);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: var(--fw-semibold);
    line-height: 1.3;
    margin: 0;
  }

  @media (min-width: 768px) {
    .thank-card h2 {
      font-size: 1.5rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-card h2 {
      font-size: 1.5rem;
    }
  }

  .thank-card p {
    color: var(--text-secondary-light);
    font-size: 0.875rem;
    font-weight: var(--fw-regular);
    line-height: 1.6;
    margin: 0;
  }

  @media (min-width: 768px) {
    .thank-card p {
      font-size: 0.95rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-card p {
      font-size: 1rem;
    }
  }

  
  .thank-cta-section {
    background-color: var(--bg-dark);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .thank-cta-section {
      padding: 4rem 0;
    }
  }

  @media (min-width: 1024px) {
    .thank-cta-section {
      padding: 5rem 0;
    }
  }

  .thank-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .thank-cta-content {
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-cta-content {
      gap: 2rem;
    }
  }

  .thank-cta-section h2 {
    color: var(--text-primary-dark);
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: var(--fw-bold);
    line-height: 1.2;
    margin: 0;
  }

  @media (min-width: 768px) {
    .thank-cta-section h2 {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-cta-section h2 {
      font-size: 2.5rem;
    }
  }

  .thank-cta-section p {
    color: var(--text-secondary-dark);
    font-size: 0.875rem;
    font-weight: var(--fw-regular);
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
  }

  @media (min-width: 768px) {
    .thank-cta-section p {
      font-size: 1rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-cta-section p {
      font-size: 1.05rem;
    }
  }

  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: var(--fw-semibold);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
  }

  @media (min-width: 768px) {
    .btn {
      padding: 1rem 2rem;
      font-size: 1rem;
    }
  }

  .btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
  }

  .btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .btn-primary:active {
    transform: translateY(0);
  }

  
  @keyframes thank-bounce {
    0% {
      opacity: 0;
      transform: scale(0.3);
    }
    50% {
      opacity: 1;
      transform: scale(1.05);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  
  .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  @media (min-width: 768px) {
    .container {
      padding: 0 2rem;
    }
  }

  @media (min-width: 1024px) {
    .container {
      padding: 0 3rem;
    }
  }

  
  @media (prefers-reduced-motion: reduce) {
    .thank-icon-wrapper {
      animation: none;
    }

    .btn,
    .thank-card {
      transition: none;
    }
  }

  
  @media print {
    .thank-cta-section {
      display: none;
    }

    .btn {
      text-decoration: underline;
    }
  }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap');

  
  .error-hero-section {
    background-color: var(--bg-dark);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .error-hero-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .error-hero-section {
      padding: 8rem 0;
    }
  }

  .error-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    min-height: 500px;
  }

  @media (min-width: 768px) {
    .error-hero-content {
      flex-direction: row;
      gap: 3rem;
      min-height: 600px;
    }
  }

  
  .error-illustration {
    position: relative;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .error-illustration {
      width: 50%;
      height: 350px;
    }
  }

  @media (min-width: 1024px) {
    .error-illustration {
      height: 400px;
    }
  }

  .illustration-404 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 2;
  }

  .digit {
    font-size: 8rem;
    font-weight: var(--fw-extrabold);
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    animation: floatDigit 3s ease-in-out infinite;
  }

  @media (min-width: 768px) {
    .digit {
      font-size: 12rem;
    }
  }

  .digit-0 {
    animation-delay: 0.2s;
  }

  .digit-4-alt {
    animation-delay: 0.4s;
  }

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

  
  .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .float-item {
    position: absolute;
    border-radius: 50%;
    background-color: var(--color-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
  }

  .item-1 {
    width: 40px;
    height: 40px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
  }

  .item-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 10%;
    background-color: var(--color-secondary);
    animation-delay: 1s;
  }

  .item-3 {
    width: 30px;
    height: 30px;
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
  }

  .item-4 {
    width: 50px;
    height: 50px;
    top: 20%;
    right: 20%;
    background-color: var(--color-accent);
    opacity: 0.08;
    animation-delay: 1.5s;
  }

  .item-5 {
    width: 35px;
    height: 35px;
    bottom: 30%;
    right: 5%;
    animation-delay: 2.5s;
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0px) translateX(0px);
    }
    50% {
      transform: translateY(-30px) translateX(15px);
    }
  }

  
  .error-content {
    flex: 1;
    text-align: center;
  }

  @media (min-width: 768px) {
    .error-content {
      text-align: left;
    }
  }

  .error-title {
    font-size: 2.25rem;
    font-weight: var(--fw-bold);
    font-family: var(--font-display);
    color: var(--text-primary-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .error-title {
      font-size: 2.75rem;
    }
  }

  @media (min-width: 1024px) {
    .error-title {
      font-size: 3.5rem;
    }
  }

  .error-subtitle {
    font-size: 1.25rem;
    color: var(--color-primary-light);
    margin-bottom: 1.5rem;
    font-weight: var(--fw-medium);
  }

  @media (min-width: 768px) {
    .error-subtitle {
      font-size: 1.5rem;
    }
  }

  .error-description {
    font-size: 1rem;
    color: var(--text-secondary-dark);
    line-height: 1.6;
    max-width: 500px;
  }

  @media (min-width: 768px) {
    .error-description {
      font-size: 1.0625rem;
    }
  }

  
  .error-help-section {
    background-color: var(--bg-subtle);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .error-help-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .error-help-section {
      padding: 6rem 0;
    }
  }

  .error-help-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  @media (min-width: 1024px) {
    .error-help-content {
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }
  }

  .help-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .help-title {
    font-size: 1.875rem;
    font-weight: var(--fw-bold);
    font-family: var(--font-display);
    color: var(--text-primary-light);
    margin-bottom: 0.5rem;
  }

  @media (min-width: 768px) {
    .help-title {
      font-size: 2.25rem;
    }
  }

  .help-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .help-list {
      gap: 2rem;
    }
  }

  .help-item {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .help-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    color: var(--bg-lighter);
    font-size: 1.5rem;
  }

  .help-text h3 {
    font-size: 1.125rem;
    font-weight: var(--fw-semibold);
    color: var(--text-primary-light);
    margin-bottom: 0.5rem;
  }

  .help-text p {
    font-size: 0.95rem;
    color: var(--text-secondary-light);
    line-height: 1.6;
  }

  
  .motivation-box {
    background-color: var(--bg-lighter);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .motivation-box {
      padding: 2.5rem;
    }
  }

  .motivation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--bg-lighter);
  }

  .motivation-title {
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    font-family: var(--font-display);
    color: var(--text-primary-light);
  }

  .motivation-text {
    font-size: 0.95rem;
    color: var(--text-secondary-light);
    line-height: 1.6;
  }

  .motivation-factors {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .factor {
    background-color: var(--color-primary);
    color: var(--bg-lighter);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: var(--fw-medium);
  }

  
  .cta-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
  }

  .cta-text {
    font-size: 1.125rem;
    font-weight: var(--fw-semibold);
    color: var(--text-primary-light);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
  }

  @media (min-width: 768px) {
    .btn {
      padding: 1rem 2.5rem;
      font-size: 1.0625rem;
    }
  }

  .btn-primary {
    background-color: var(--color-primary);
    color: var(--bg-lighter);
  }

  .btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .btn-primary:active {
    transform: translateY(0);
  }

  
  .error-insights-section {
    background-color: var(--bg-dark);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .error-insights-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .error-insights-section {
      padding: 6rem 0;
    }
  }

  .error-insights-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .error-insights-content {
      gap: 3rem;
    }
  }

  .insights-title {
    font-size: 2rem;
    font-weight: var(--fw-bold);
    font-family: var(--font-display);
    color: var(--text-primary-dark);
    text-align: center;
  }

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

  @media (min-width: 1024px) {
    .insights-title {
      font-size: 2.75rem;
    }
  }

  .insights-intro {
    text-align: center;
    font-size: 1.0625rem;
    color: var(--text-secondary-dark);
    max-width: 600px;
    margin: 0 auto;
  }

  .insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .insights-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  .insight-card {
    background-color: var(--bg-darker);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .insight-card {
      padding: 2rem;
      gap: 1.5rem;
    }
  }

  .insight-card:hover {
    border-color: var(--color-primary);
    background-color: rgba(99, 102, 241, 0.05);
    transform: translateY(-4px);
  }

  .insight-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-lighter);
  }

  .insight-heading {
    font-size: 1.25rem;
    font-weight: var(--fw-semibold);
    font-family: var(--font-display);
    color: var(--text-primary-dark);
  }

  .insight-text {
    font-size: 0.95rem;
    color: var(--text-secondary-dark);
    line-height: 1.6;
  }

  
  .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  @media (min-width: 768px) {
    .container {
      padding: 0 2rem;
    }
  }

  @media (min-width: 1024px) {
    .container {
      padding: 0 3rem;
    }
  }

  
  .error-page a:focus,
  .error-page button:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  @media (prefers-reduced-motion: reduce) {
    .digit,
    .float-item,
    .insight-card {
      animation: none;
      transform: none;
    }
  }