/* 
========================================================================
   lifetreadexo - Premium CSS Styling System
   ---------------------------------------------------------------------
   This style sheet implements a responsive, highly premium dark theme
   with glassmorphism. It uses custom CSS variables to establish a unified
   color palette and visual rhythm. Every design decision is annotated below.
========================================================================
*/

/* --- Google Fonts Import --- */
/* Outfit for modern, premium headings; Plus Jakarta Sans for UI elements and body text. */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* --- Custom Property Tokens (Design System Constants) --- */
:root {
  /* Core Color System */
  --bg-primary: #0a0712;         /* Deep cosmic black for the page background */
  --bg-gradient-top: #1b1030;    /* Muted purple radial gradient source */
  --bg-glass-card: rgba(20, 16, 35, 0.6); /* Frosted glass card fill */
  --bg-glass-input: rgba(255, 255, 255, 0.05); /* Transparent styling for inputs */
  
  /* Accent Gradients and Colors */
  --accent-indigo: #6366f1;      /* Modern Indigo accent color */
  --accent-purple: #8b5cf6;      /* Electric purple accent color */
  --accent-pink: #ec4899;        /* Warm magenta highlight for hearts/connections */
  --accent-gradient: linear-gradient(135deg, var(--accent-indigo) 0%, var(--accent-purple) 50%, var(--accent-pink) 100%);
  
  /* Text Color Palette */
  --text-main: #f8fafc;          /* High contrast slate white for headings and primary labels */
  --text-muted: #94a3b8;         /* Subdued cool gray for meta tags, captions, and bios */
  --text-dark: #0f172a;          /* Dark charcoal for button labels over bright backgrounds */

  /* Border / Separation lines */
  --border-glass: rgba(255, 255, 255, 0.08); /* Faint borders to simulate structural glass depth */
  --border-active: rgba(139, 92, 246, 0.5);   /* Glowing purple boundary for focused elements */

  /* UI Dimensions & Radii */
  --border-radius-lg: 16px;      /* Standard curvature for large cards */
  --border-radius-md: 10px;      /* Standard curvature for buttons, inputs, profiles */
  --border-radius-sm: 6px;       /* Curve for small tags, notifications */
  
  /* Shadow & Glow Effects */
  --shadow-premium: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  --glow-accent: 0 0 20px rgba(139, 92, 246, 0.35);
}

/* --- Base Structure & Resets --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Ensures padding & borders do not break set dimensions */
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: radial-gradient(circle at top, var(--bg-gradient-top) 0%, var(--bg-primary) 100%);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden; /* Prevents unwanted horizontal scrolling on smaller viewports */
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

/* Custom Scrollbar Styles for the entire web page and containers */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
/* Disable horizontal scrollbars globally */
::-webkit-scrollbar:horizontal {
  display: none !important;
  height: 0px !important;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-purple);
}

/* --- Layout Wrapper --- */
.app-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* --- Premium Navigation Header --- */
header {
  background: var(--bg-glass-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 15px 25px;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-premium);
}

/* Site logo using Outfit font and a warm gradient */
.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 26px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  cursor: pointer;
}

/* Navigation button group */
nav {
  display: flex;
  gap: 10px;
}

/* Navigation Link Buttons */
.nav-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-glass);
}

.nav-btn.active {
  color: var(--text-main);
  background: rgba(139, 92, 246, 0.15);
  border-color: var(--border-active);
}

.nav-btn.logout-btn:hover {
  background: rgba(244, 63, 94, 0.15);
  border-color: rgba(244, 63, 94, 0.4);
  color: #fb7185;
}

/* --- Authentication Card & Layout --- */
.auth-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 20px 0;
}

.auth-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: var(--shadow-premium);
  animation: fadeIn 0.4s ease-out;
}

.auth-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.auth-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
  margin-bottom: 30px;
}

/* --- Form Elements --- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--bg-glass-input);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 12px 16px;
  font-size: 14px;
  border-radius: var(--border-radius-md);
  transition: all 0.3s ease;
  outline: none;
}

.form-control:focus {
  border-color: var(--border-active);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.15);
}

/* Custom dual-column elements for Age/Gender selections */
.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

/* Styled select tags dropdown */
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 35px;
}

/* Button style rules */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: var(--accent-gradient);
  color: var(--text-main);
  border: none;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4), var(--glow-accent);
}

.btn:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
  transform: translateY(-1px);
}

/* Friendly connections / Call-to-action color variant */
.btn-pink {
  background: linear-gradient(135deg, var(--accent-pink) 0%, #f43f5e 100%);
  box-shadow: 0 4px 15px rgba(244, 63, 94, 0.2);
}

.btn-pink:hover {
  box-shadow: 0 6px 20px rgba(244, 63, 94, 0.4);
}

.form-toggle-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.form-toggle-link:hover {
  color: var(--accent-purple);
}

/* --- SPA View Manager --- */
.view-panel {
  display: none; /* Controlled dynamically by showView() in app.js */
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex: 1;
}

.view-panel.active-view {
  display: flex;
  flex-direction: column;
}

/* --- Discover / Member Grid --- */
.view-header {
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.view-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.5px;
}

/* Search bar on browse page */
.search-container {
  width: 100%;
  max-width: 320px;
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

/* Individual card designs */
.member-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 25px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

/* Dynamic glowing border effect when hovering cards */
.member-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.member-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-active);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(139, 92, 246, 0.1);
}

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

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.card-username {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  color: var(--accent-purple);
  text-transform: uppercase;
}

.card-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 15px;
  font-weight: 500;
}

.card-bio {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limit bio representation size in listing cards */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.card-actions button {
  flex: 1;
  font-size: 13px;
  padding: 10px;
}

/* Empty grid/inbox fallback graphics */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-glass-card);
  border: 1px dashed var(--border-glass);
  border-radius: var(--border-radius-lg);
  color: var(--text-muted);
}

.no-results svg {
  margin-bottom: 15px;
  color: var(--accent-purple);
  opacity: 0.6;
}

.no-results h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  color: var(--text-main);
  margin-bottom: 8px;
}

/* --- Profile Details Layout --- */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: start;
}

.profile-card-left {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-premium);
}

/* Dummy graphic/avatar fallback container representing profile colors */
.avatar-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  background: var(--accent-gradient);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--text-main);
}

.profile-name {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.profile-tagline {
  font-size: 14px;
  color: var(--accent-purple);
  font-weight: 600;
  margin-bottom: 25px;
}

.profile-stats {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 15px 0;
  margin-bottom: 25px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 3px;
}

.profile-card-right {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-premium);
}

.profile-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-glass);
}

/* --- Messaging / Conversation Layout --- */
.chat-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--bg-glass-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  height: 600px;
  flex: 1;
}

/* Left Sidebar - Active conversations */
.chat-sidebar {
  border-right: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
}

.chat-sidebar-header {
  padding: 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  border-bottom: 1px solid var(--border-glass);
}

.chat-list {
  flex: 1;
  overflow-y: auto;
}

.chat-list-item {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.chat-list-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.chat-list-item.active {
  background: rgba(139, 92, 246, 0.1);
  border-left: 3px solid var(--accent-purple);
}

.chat-item-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.chat-item-info {
  flex: 1;
  overflow: hidden;
}

.chat-item-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-item-preview {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-unread-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-pink);
}

/* Right Chat Pane */
.chat-pane {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.1);
}

.chat-pane-header {
  padding: 15px 25px;
  background: rgba(20, 16, 35, 0.4);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-active-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-active-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.chat-active-status {
  font-size: 11px;
  color: var(--text-muted);
}

/* Chat logs list view */
.chat-history {
  flex: 1;
  overflow-y: auto;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message-bubble {
  max-width: 65%;
  padding: 12px 18px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word; /* Crucial for long strings to prevent layout overflow */
}

/* Received messages (left-aligned) */
.message-incoming {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-bottom-left-radius: 4px;
}

/* Sent messages (right-aligned) */
.message-outgoing {
  align-self: flex-end;
  background: var(--accent-gradient);
  color: var(--text-main);
  border-bottom-right-radius: 4px;
}

.message-time {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 5px;
  text-align: right;
  opacity: 0.7;
}

.message-outgoing .message-time {
  color: var(--text-main);
}

/* Chat Input Tray */
.chat-input-area {
  padding: 20px 25px;
  background: rgba(20, 16, 35, 0.5);
  border-top: 1px solid var(--border-glass);
}

.chat-form {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.chat-input-wrapper {
  flex: 1;
  position: relative;
}

/* Auto-resizing or static-size clean textarea */
textarea.chat-input {
  width: 100%;
  background: var(--bg-glass-input);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 12px 16px;
  padding-bottom: 25px; /* Leave space for character counter badge */
  font-size: 14px;
  border-radius: var(--border-radius-md);
  resize: none;
  height: 60px;
  outline: none;
  transition: border-color 0.3s ease;
}

textarea.chat-input:focus {
  border-color: var(--border-active);
}

/* 1800 character display badge inside the input field */
.char-counter {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 11px;
  color: var(--text-muted);
  pointer-events: none;
  transition: color 0.2s ease;
}

.char-counter.limit-reached {
  color: var(--accent-pink);
  font-weight: 700;
}

.chat-send-btn {
  width: auto;
  min-width: 100px;
  height: 60px;
}

/* --- Notifications System --- */
.notification-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: rgba(20, 16, 35, 0.9);
  backdrop-filter: blur(12px);
  border-left: 4px solid var(--accent-purple);
  border-top: 1px solid var(--border-glass);
  border-right: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 15px 25px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-premium);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast.toast-error {
  border-left-color: #ef4444;
}

.toast.toast-success {
  border-left-color: #10b981;
}

/* --- Layout Responsiveness (Mobile Viewports) --- */
@media (max-width: 900px) {
  .profile-grid {
    grid-template-columns: 1fr; /* Stack columns on tablets & mobile */
  }
  
  .chat-layout {
    grid-template-columns: 1fr; /* Transform chat layout to full screen view */
    height: 500px;
  }

  .chat-sidebar {
    display: none; /* In basic responsive state, hide list when inside active chat view */
  }

  .chat-sidebar.mobile-show {
    display: flex;
    width: 100%;
  }

  .chat-pane {
    display: none;
  }

  .chat-pane.mobile-show {
    display: flex;
    width: 100%;
  }
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
    justify-content: flex-start;
  }

  .nav-btn {
    padding: 6px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .view-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .search-container {
    max-width: 100%;
  }
  
  .auth-card {
    padding: 25px 20px;
  }
}

/* --- CSS Keyframe Animations --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* --- SEO Marketing Container styles --- */
.seo-marketing-container {
  width: 100%;
  max-width: 850px;
  margin: 40px auto 20px auto;
  padding: 30px;
  background: var(--bg-glass-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-premium);
  animation: fadeIn 0.6s ease-out;
  text-align: center;
}

.seo-marketing-container h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.seo-marketing-container p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.seo-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  text-align: left;
}

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

.seo-feature:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
}

.seo-feature h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.seo-feature p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .seo-marketing-container {
    padding: 20px;
    margin-top: 20px;
  }
  .seo-marketing-container h2 {
    font-size: 20px;
  }
}
