/*
 * Name Pages Styling
 * World-class design matching site patterns
 * SEO-optimized, mobile-first, accessible
 */
/* Variables */
/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.names-hero {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  overflow: hidden;
}
.names-hero .hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 20% 50%, white 1px, transparent 1px), radial-gradient(circle at 80% 80%, white 1px, transparent 1px);
  background-size: 50px 50px;
}
.names-hero .container {
  position: relative;
  z-index: 1;
}

.names-hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.names-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.names-hero-badge .material-icons {
  font-size: 1.1rem;
}

.names-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.2;
}

.names-hero-description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
}

.names-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 12px;
}
.hero-stat-item .material-icons {
  font-size: 2rem;
}
.hero-stat-item .stat-value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-item .stat-label {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* ==========================================================================
   MAIN CONTENT
   ========================================================================== */
.names-main-content {
  background: #fdfdfd;
  padding: 60px 0;
}

.names-browse-section {
  margin-bottom: 80px;
  background: linear-gradient(to bottom, #f5f8ff 0%, #ffffff 100%);
  padding: 60px 40px;
  border-radius: 24px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.02);
}

.section-header-centered {
  text-align: center;
  margin-bottom: 50px;
}
.section-header-centered h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.section-header-centered .section-subtitle {
  font-size: 1.2rem;
  color: #555;
}

/* ==========================================================================
   NAMES SECTIONS
   ========================================================================== */
.names-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.names-section {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.names-section.card-elevated {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.names-section.card-elevated:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.section-title-bar {
  background: linear-gradient(135deg, #f8f9fa 0%, #eff1f4 100%);
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  /* Enhanced gender badge in section headers */
}
.section-title-bar h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title-bar h3 .material-icons {
  font-size: 1.8rem;
}
.section-title-bar .section-count {
  background: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
}
.section-title-bar .gender-badge-large {
  margin: 0;
  padding: 16px 20px;
  font-size: 0.95rem;
}
.section-title-bar .gender-badge-large .gender-icon {
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
}
.section-title-bar .gender-badge-large .gender-label {
  font-size: 1.1rem;
}

.male-section .section-title-bar h3 {
  color: #4A90E2;
}

.female-section .section-title-bar h3 {
  color: #E91E63;
}

/* ==========================================================================
   ALPHABET GRID
   ========================================================================== */
.alphabet-grid {
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
  gap: 10px;
}

.alphabet-letter {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  background: #f8f9fa;
  border: 2px solid transparent;
  position: relative;
}
.alphabet-letter .letter {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  line-height: 1;
  margin-bottom: 6px;
}
.alphabet-letter.available {
  cursor: pointer;
}
.alphabet-letter.available:hover {
  background: #fff;
  border-color: #2196F3;
  transform: translateY(-3px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.alphabet-letter.available:hover .letter {
  color: #2196F3;
}
.alphabet-letter.available:active {
  transform: translateY(-1px);
}
.alphabet-letter.disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.male-section .alphabet-letter.available:hover {
  border-color: #4A90E2;
}
.male-section .alphabet-letter.available:hover .letter {
  color: #4A90E2;
}

.female-section .alphabet-letter.available:hover {
  border-color: #E91E63;
}
.female-section .alphabet-letter.available:hover .letter {
  color: #E91E63;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.names-features-section {
  margin: 80px 0;
}

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

.feature-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.feature-card .feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2196F3, #6ab8f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.feature-card .feature-icon .material-icons {
  font-size: 2rem;
  color: white;
}
.feature-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.names-cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: white;
  margin-top: 60px;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   CHARACTER PAGE - BREADCRUMB
   ========================================================================== */
.names-breadcrumb-wrapper {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
  line-height: 1;
}

.names-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  flex-wrap: wrap;
  color: #666;
}
.names-breadcrumb .breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  /* Reset inherited value if any */
  color: #2196F3;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}
.names-breadcrumb .breadcrumb-link:hover {
  color: #0a6ebd;
  text-decoration: underline;
}
.names-breadcrumb .breadcrumb-link .material-icons {
  font-size: 1.1rem;
}
.names-breadcrumb .breadcrumb-separator {
  color: #ccc;
  font-size: 1.2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.names-breadcrumb .breadcrumb-current {
  color: #333;
  font-weight: 600;
}

/* ==========================================================================
   CHARACTER PAGE - HEADER
   ========================================================================== */
.names-page-header {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 50px 0;
}

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

.header-left {
  flex: 1;
}

.header-right {
  flex-shrink: 0;
}

.gender-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.gender-badge.male-badge {
  background: #fafcfe;
  color: #2275d7;
}
.gender-badge.female-badge {
  background: #f9c1d4;
  color: #c1134e;
}
.gender-badge .material-icons {
  font-size: 1.1rem;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 12px;
  line-height: 1.2;
}

.page-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}
.page-subtitle strong {
  color: #333;
}

.quick-stats {
  background: #fff;
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.quick-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.quick-stat-item .material-icons {
  font-size: 2.5rem;
  color: #2196F3;
}
.quick-stat-item .stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  line-height: 1;
}
.quick-stat-item .stat-text {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
}

/* ==========================================================================
   CHARACTER PAGE - CONTROLS
   ========================================================================== */
.names-controls-section {
  background: #fff;
  padding: 30px 0;
  border-bottom: 1px solid #e0e0e0;
}

.gender-toggle-wrapper,
.alphabet-nav-wrapper {
  margin-bottom: 20px;
}
.gender-toggle-wrapper:last-child,
.alphabet-nav-wrapper:last-child {
  margin-bottom: 0;
}

.toggle-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.gender-toggle {
  display: inline-flex;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
}

.gender-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  color: #333;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.gender-toggle-btn .material-icons {
  font-size: 1.2rem;
}
.gender-toggle-btn:hover {
  background: rgba(33, 150, 243, 0.1);
  color: #2196F3;
}
.gender-toggle-btn.active {
  background: #fff;
  color: #2196F3;
  border-color: #2196F3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.alphabet-nav {
  display: inline-flex;
  gap: 8px;
  padding: 4px;
  background: #f8f9fa;
  border-radius: 12px;
  min-width: 100%;
  justify-content: center;
}

.alphabet-nav-letter {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  color: #333;
  background: transparent;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.alphabet-nav-letter:hover {
  background: #fff;
  color: #2196F3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.alphabet-nav-letter.active {
  background: #2196F3;
  color: white;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

/* ==========================================================================
   NAMES LIST
   ========================================================================== */
.names-list-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.list-header {
  text-align: center;
  margin-bottom: 40px;
}
.list-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}
.list-header .list-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.names-list-content {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
}
.names-list-content.card-elevated {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.names-numbered-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 24px;
  list-style: none;
  counter-reset: name-counter;
  padding: 0;
  margin: 0;
}

.name-list-item {
  counter-increment: name-counter;
  position: relative;
  padding-left: 40px;
}
.name-list-item::before {
  content: counter(name-counter) ".";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: #2196F3;
  font-size: 1.1rem;
}

.name-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #f8f9fa;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.name-link .name-text {
  flex: 1;
}
.name-link .name-arrow {
  font-size: 1.2rem;
  color: #666;
  transition: all 0.2s ease;
}
.name-link:hover {
  background: white;
  border-color: #2196F3;
  color: #0c7cd5;
  transform: translateX(3px);
}
.name-link:hover .name-arrow {
  color: #2196F3;
  transform: translateX(3px);
}

.list-bottom-cta {
  text-align: center;
  padding: 40px 20px;
}
.list-bottom-cta p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 24px;
  font-weight: 600;
}

.no-results-card {
  background: #fff;
  border-radius: 16px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.no-results-card .material-icons {
  font-size: 5rem;
  color: #666;
  margin-bottom: 24px;
}
.no-results-card h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 12px;
}
.no-results-card p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ==========================================================================
   NAME DETAIL PAGE
   ========================================================================== */
.detail-header {
  background: linear-gradient(135deg, #fbfdff 0%, #fff 100%);
}
.detail-header .gender-badge {
  margin-bottom: 12px;
}
.detail-header .page-title {
  text-transform: capitalize;
}

.name-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.detail-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}
.detail-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  border-bottom: 2px solid #f8f9fa;
  padding-bottom: 12px;
}
.detail-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 15px;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
}
.stat-item .material-icons {
  font-size: 1.8rem;
  color: #2196F3;
}
.stat-item .stat-label {
  display: block;
  font-size: 0.8rem;
  color: #999;
  font-weight: 600;
}
.stat-item .stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
}

.distribution-chart .chart-bar {
  height: 24px;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  background: #eee;
  margin-bottom: 16px;
}
.distribution-chart .male-segment {
  background: #4A90E2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
}
.distribution-chart .female-segment {
  background: #E91E63;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
}
.distribution-chart .chart-legend {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
}
.distribution-chart .chart-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.distribution-chart .chart-legend .legend-color {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.distribution-chart .chart-legend .male .legend-color {
  background: #4A90E2;
}
.distribution-chart .chart-legend .female .legend-color {
  background: #E91E63;
}
.distribution-chart .chart-legend .legend-text {
  color: #333;
  font-weight: 500;
}

.info-section {
  margin-bottom: 24px;
}
.info-section:last-child {
  margin-bottom: 0;
}
.info-section .origin-text,
.info-section .description-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

.country-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.country-item {
  padding: 12px;
  background: #f8f9fa;
  border-radius: 10px;
}
.country-item .country-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}
.country-item .country-flag {
  color: #333;
}
.country-item .country-samples {
  color: #999;
}
.country-item .country-stats {
  display: flex;
  align-items: center;
  gap: 12px;
}
.country-item .mini-distribution-bar {
  flex: 1;
  height: 6px;
  display: flex;
  border-radius: 3px;
  overflow: hidden;
  background: #eee;
}
.country-item .mini-male {
  background: #4A90E2;
}
.country-item .mini-female {
  background: #E91E63;
}
.country-item .country-accuracy {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
  min-width: 40px;
  text-align: right;
}

.name-detail-cta {
  background: linear-gradient(135deg, #0c7cd5 0%, #2196F3 100%);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  color: white;
  margin-top: 30px;
}
.name-detail-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.name-detail-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.name-detail-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   NAME DETAIL PAGE - ENHANCED GENDER DISPLAY
   ========================================================================== */
.primary-gender-indicator {
  margin-bottom: 20px;
}

.gender-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gender-badge-large.male-badge {
  background: linear-gradient(135deg, white, #e4eefb);
  color: #2275d7;
  border-color: #cee1f7;
}
.gender-badge-large.male-badge .gender-icon {
  background: #4A90E2;
  color: white;
}
.gender-badge-large.female-badge {
  background: linear-gradient(135deg, #fbd8e4, #f7a9c4);
  color: #c1134e;
  border-color: #f492b4;
}
.gender-badge-large.female-badge .gender-icon {
  background: #E91E63;
  color: white;
}
.gender-badge-large .gender-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.gender-badge-large .gender-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gender-badge-large .gender-label {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.detail-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
}
.detail-header .page-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  margin: 16px 0 8px;
  line-height: 1.2;
}
.detail-header .page-subtitle {
  font-size: 1rem;
  color: #666;
  margin: 0;
  font-weight: 500;
}

/* ==========================================================================
   NAMES DISCLAIMER BOX
   ========================================================================== */
.names-disclaimer-box {
  margin: 30px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
  border: 1px solid #e3f2fd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.disclaimer-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.disclaimer-content .material-icons {
  color: #1976d2;
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.disclaimer-content .disclaimer-text {
  flex: 1;
}
.disclaimer-content .disclaimer-text strong {
  display: block;
  color: #1976d2;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.disclaimer-content .disclaimer-text p {
  margin: 0;
  color: #424242;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ==========================================================================
   NAMES LIST CTA
   ========================================================================== */
.names-list-cta {
  margin: 30px 0;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  border: 1px solid #b3d9ff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.names-list-cta .cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.names-list-cta .cta-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}
.names-list-cta .cta-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}
.names-list-cta .cta-buttons {
  display: flex;
  justify-content: center;
}
.names-list-cta .cta-buttons .btn {
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.names-list-cta .cta-buttons .btn.btn-primary {
  background: linear-gradient(135deg, #2196F3, #0c7cd5);
  color: white;
  border: none;
}
.names-list-cta .cta-buttons .btn.btn-primary:hover {
  background: linear-gradient(135deg, #0c7cd5, #0960a5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 992px) {
  .names-hero-title {
    font-size: 2.8rem;
  }
  .names-hero-description {
    font-size: 1.1rem;
  }
  .names-sections {
    grid-template-columns: 1fr;
  }
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .quick-stats {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .names-hero {
    padding: 60px 0 40px;
  }
  .names-hero-title {
    font-size: 2.2rem;
  }
  .names-hero-description {
    font-size: 1rem;
  }
  .hero-stat-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .section-header-centered h2 {
    font-size: 2rem;
  }
  .section-title-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .alphabet-grid {
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 8px;
    padding: 20px;
  }
  .alphabet-letter .letter {
    font-size: 1.5rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .names-cta-section {
    padding: 40px 24px;
  }
  .cta-content h3 {
    font-size: 1.7rem;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-buttons .btn {
    width: 100%;
  }
  .page-title {
    font-size: 2.2rem;
  }
  .names-list-content {
    padding: 24px;
  }
  .names-numbered-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .name-list-item {
    padding-left: 36px;
  }
  .alphabet-nav {
    justify-content: flex-start;
  }
  .names-disclaimer-box {
    margin: 20px 0;
    padding: 16px;
  }
  .disclaimer-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .disclaimer-content .material-icons {
    align-self: center;
  }
}
/* ==========================================================================
   DARK MODE SUPPORT
   ========================================================================== */
body.dark-mode .names-main-content {
  background: #1a1a1a;
}
body.dark-mode .names-section,
body.dark-mode .feature-card,
body.dark-mode .names-list-content,
body.dark-mode .no-results-card {
  background: #2a2a2a;
  color: #e0e0e0;
}
body.dark-mode .section-title-bar {
  background: #222;
  border-bottom-color: #444;
}
body.dark-mode .alphabet-letter {
  background: #333;
}
body.dark-mode .alphabet-letter .letter {
  color: #e0e0e0;
}
body.dark-mode .alphabet-letter.available:hover {
  background: #3a3a3a;
}
body.dark-mode .page-title,
body.dark-mode .section-header-centered h2,
body.dark-mode .list-header h2,
body.dark-mode h3,
body.dark-mode h4 {
  color: #e0e0e0;
}
body.dark-mode .breadcrumb-current {
  color: #e0e0e0;
}
body.dark-mode .name-link {
  background: #333;
  color: #e0e0e0;
}
body.dark-mode .gender-toggle,
body.dark-mode .alphabet-nav {
  background: #333;
}
body.dark-mode .quick-stats {
  background: #2a2a2a;
}

/*# sourceMappingURL=names-pages.css.map */
