/**
 * SEO Wars Theme - Homepage Styles
 * Estilos modernos y profesionales para la homepage
 * Optimizado siguiendo mejores prácticas de blogs de juegos MMO
 * @version 2.0.0
 */

/* ==========================================================================
   HERO SECTION MODERN
   ========================================================================== */

.hero-section-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0B1219 0%, #1E293B 50%, #0B1219 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 188, 212, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(156, 39, 176, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 100px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 188, 212, 0.1);
  color: var(--primary-cyan);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 188, 212, 0.3);
}

.hero-badge i {
  font-size: 12px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
}

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

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 18px 36px;
  font-size: 18px;
  box-shadow: 0 10px 40px rgba(0, 188, 212, 0.3);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(0, 188, 212, 0.4);
}

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

.btn-hero-secondary:hover {
  background: var(--primary-cyan);
  color: var(--bg-primary);
}

.btn-xl {
  padding: 18px 36px;
  font-size: 18px;
}

.hero-stats-mini {
  display: flex;
  gap: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.stat-mini {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-mini strong {
  font-size: 28px;
  font-family: var(--font-display);
  color: var(--primary-cyan);
}

.stat-mini span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
}

.hero-game-preview {
  position: relative;
  background: var(--bg-secondary);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.6s ease;
}

.hero-game-preview:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-game-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.preview-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--success);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  gap: 6px;
}

.preview-badge i {
  font-size: 8px;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: bounce 2s infinite;
}

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

/* ==========================================================================
   FACTIONS SECTION
   ========================================================================== */

.factions-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

/* Section Headers - Mejorado con múltiples variantes */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

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

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}

.section-header-center {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-title-center {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 60px;
}

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

.section-link {
  color: var(--primary-cyan);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.section-link:hover {
  gap: 8px;
}

.section-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.section-link:hover i {
  transform: translateX(5px);
}

.factions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.faction-card {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.faction-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.faction-card.faction-tech {
  border-color: rgba(0, 188, 212, 0.3);
  color: var(--faction-tech);
}

.faction-card.faction-creators {
  border-color: rgba(156, 39, 176, 0.3);
  color: var(--faction-creators);
}

.faction-card.faction-barbarians {
  border-color: rgba(211, 47, 47, 0.3);
  color: var(--faction-barbarians);
}

.faction-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.faction-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 24px;
  color: currentColor;
}

.faction-card.faction-creators .faction-icon {
  background: rgba(156, 39, 176, 0.1);
}

.faction-card.faction-barbarians .faction-icon {
  background: rgba(211, 47, 47, 0.1);
}

.faction-name {
  font-size: 1.75rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.faction-subtitle {
  font-size: 0.875rem;
  color: currentColor;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 600;
}

.faction-description {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.faction-bonuses h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.faction-bonuses ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faction-bonuses li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.faction-bonuses li i {
  color: currentColor;
  margin-right: 8px;
}

.faction-stats-mini {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--bg-secondary);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-cyan);
  box-shadow: 0 15px 40px rgba(0, 188, 212, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: white;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   NO DOMAIN SECTION
   ========================================================================== */

.no-domain-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.no-domain-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-badge {
  display: inline-block;
  background: var(--primary-cyan);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.no-domain-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.no-domain-text p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.benefits-list {
  margin-bottom: 32px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 1.0625rem;
  color: var(--text-secondary);
}

.benefit-item i {
  color: var(--success);
  font-size: 20px;
}

.article-preview-mock {
  background: var(--bg-tertiary);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mock-editor {
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.mock-toolbar {
  height: 40px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-color);
}

.mock-content {
  padding: 24px;
}

.mock-title {
  height: 32px;
  background: var(--primary-cyan);
  border-radius: 6px;
  margin-bottom: 16px;
  opacity: 0.3;
}

.mock-text {
  height: 12px;
  background: var(--text-muted);
  border-radius: 4px;
  margin-bottom: 10px;
  opacity: 0.2;
}

.mock-text.short {
  width: 60%;
}

.mock-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mock-stat {
  background: var(--bg-secondary);
  padding: 16px;
  border-radius: 8px;
  text-align: center;
}

.mock-stat span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.mock-stat strong {
  display: block;
  font-size: 24px;
  color: var(--primary-cyan);
  font-family: var(--font-display);
}

/* ==========================================================================
   LIVE STATS SECTION
   ========================================================================== */

.live-stats-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.stats-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card-modern {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-cyan), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-card-modern:hover::before {
  transform: scaleX(1);
}

.stat-card-modern:hover {
  transform: translateY(-4px);
  border-color: var(--primary-cyan);
}

.stat-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--primary-cyan);
}

.stat-icon-wrapper.active {
  animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(0, 188, 212, 0); }
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--primary-cyan);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-growth {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
}

/* ==========================================================================
   TOP PLAYERS SHOWCASE
   ========================================================================== */

.top-players-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.top-players-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.player-showcase-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 2px solid;
  transition: all 0.3s ease;
  position: relative;
}

.player-showcase-card.faction-tech { border-color: rgba(0, 188, 212, 0.3); }
.player-showcase-card.faction-creator { border-color: rgba(156, 39, 176, 0.3); }
.player-showcase-card.faction-barbarian { border-color: rgba(211, 47, 47, 0.3); }

.player-showcase-card.rank-1 {
  grid-column: 1 / 4;
  grid-row: 1;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border-width: 3px;
  padding: 48px;
}

.player-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.player-rank-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 188, 212, 0.4);
}

.player-showcase-card.rank-1 .player-rank-badge {
  width: 64px;
  height: 64px;
  font-size: 32px;
}

.player-showcase-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid currentColor;
  margin: 0 auto 16px;
}

.player-showcase-card.rank-1 .player-showcase-avatar {
  width: 120px;
  height: 120px;
  border-width: 4px;
}

.player-showcase-name {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.player-showcase-card.rank-1 .player-showcase-name {
  font-size: 2rem;
}

.player-showcase-faction {
  margin-bottom: 20px;
  display: inline-block;
}

.player-showcase-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.showcase-stat {
  background: var(--bg-tertiary);
  padding: 12px;
  border-radius: 8px;
}

.showcase-stat span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.showcase-stat strong {
  display: block;
  font-size: 20px;
  color: var(--primary-cyan);
  font-family: var(--font-display);
}

/* ==========================================================================
   NEWS GRID MODERN
   ========================================================================== */

.latest-news-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.news-grid-modern {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.news-card-modern {
  background: var(--bg-primary);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.news-card-modern.news-featured {
  grid-row: 1 / 3;
}

.news-card-modern:hover {
  transform: translateY(-4px);
  border-color: var(--primary-cyan);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.news-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.news-featured .news-image {
  height: 400px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.news-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-cyan);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.news-content-modern {
  padding: 24px;
}

.news-featured .news-content-modern {
  padding: 32px;
}

.news-meta-modern {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.news-meta-modern i {
  color: var(--primary-cyan);
  margin-right: 6px;
}

.news-title-modern {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.news-featured .news-title-modern {
  font-size: 2rem;
}

.news-title-modern a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-title-modern a:hover {
  color: var(--primary-cyan);
}

.news-excerpt-modern {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.news-read-more {
  color: var(--primary-cyan);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.news-read-more:hover {
  gap: 12px;
}

/* ==========================================================================
   GUIDES SECTION
   ========================================================================== */

.guides-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.guides-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.guide-card-modern {
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.guide-card-modern:hover {
  transform: translateY(-4px);
  border-color: var(--primary-cyan);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.guide-header-modern {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.guide-header-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.guide-card-modern:hover .guide-header-modern img {
  transform: scale(1.05);
}

.guide-level {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 188, 212, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.guide-content-modern {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.guide-title-modern {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.guide-title-modern a {
  color: var(--text-primary);
  text-decoration: none;
}

.guide-title-modern a:hover {
  color: var(--primary-cyan);
}

.guide-excerpt-modern {
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.guide-footer-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.guide-reading-time {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.guide-reading-time i {
  color: var(--primary-cyan);
  margin-right: 6px;
}

.guide-btn {
  color: var(--primary-cyan);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.guide-btn:hover {
  gap: 10px;
}

/* ==========================================================================
   CALCULATORS SECTION
   ========================================================================== */

.calculators-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.calculators-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.calculators-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.calculators-text p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.tools-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-primary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.tool-item:hover {
  border-color: var(--primary-cyan);
  transform: translateX(8px);
}

.tool-item i {
  font-size: 24px;
  color: var(--primary-cyan);
}

.tool-item span {
  font-weight: 500;
  color: var(--text-primary);
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.final-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0B1219 0%, #1E293B 100%);
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box-modern {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

.cta-icon-large {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 48px;
  color: white;
  box-shadow: 0 10px 40px rgba(0, 188, 212, 0.4);
}

.cta-box-modern h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-box-modern > p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

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

.cta-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.cta-note i {
  color: var(--success);
  margin-right: 8px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .hero-game-preview {
    transform: none;
  }
  
  .factions-grid,
  .features-grid,
  .guides-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .stats-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .no-domain-content,
  .calculators-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .top-players-showcase {
    grid-template-columns: 1fr;
  }
  
  .player-showcase-card.rank-1 {
    grid-column: 1;
  }
  
  .news-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .news-featured {
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .hero-section-modern {
    min-height: auto;
    padding: 60px 0;
  }
  
  .hero-content {
    padding: 60px 0 40px;
  }
  
  .hero-stats-mini {
    flex-direction: column;
    gap: 16px;
  }
  
  .stats-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .cta-buttons-modern {
    flex-direction: column;
  }
  
  .cta-buttons-modern .btn {
    width: 100%;
  }
  
  .section-header {
    flex-direction: column;
    text-align: center;
  }
  
  .section-header-left,
  .section-header-right {
    text-align: center;
    width: 100%;
  }
}

/* ==========================================================================
   NUEVOS ESTILOS PARA MEJORAS DE UX
   ========================================================================== */

/* Section Badge */
.section-badge {
  display: inline-block;
  background: rgba(0, 188, 212, 0.1);
  color: var(--primary-cyan);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 188, 212, 0.2);
}

/* Live Stats Improvements */
.stat-featured {
  border: 2px solid var(--primary-cyan);
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.05), rgba(0, 188, 212, 0.15));
}

.stat-icon-wrapper.pulse {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.7);
  }
  50% { 
    box-shadow: 0 0 0 10px rgba(0, 188, 212, 0);
  }
}

/* Feature Card Highlight */
.feature-card.feature-highlight {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border: 2px solid var(--primary-cyan);
  transform: scale(1.02);
}

.feature-card .feature-link {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--bg-tertiary);
}

.feature-card .feature-link a {
  color: var(--primary-cyan);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.feature-card .feature-link a:hover {
  gap: 12px;
}

.features-cta {
  text-align: center;
  margin-top: 60px;
}

/* Faction Card Improvements */
.faction-featured {
  border: 3px solid var(--faction-creators);
  transform: scale(1.05);
  position: relative;
}

.faction-badge-popular {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--faction-creators);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(156, 39, 176, 0.4);
}

.faction-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.faction-title-group {
  flex: 1;
}

.faction-title-group .faction-name {
  margin-bottom: 4px;
}

.faction-title-group .faction-subtitle {
  margin-bottom: 0;
  font-size: 14px;
  opacity: 0.8;
}

.factions-cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid var(--bg-tertiary);
}

.factions-cta-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  display: block;
}

/* No Domain Section CTA */
.no-domain-cta {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.benefits-list .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.benefits-list .benefit-item i {
  color: var(--success);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.benefits-list .benefit-item div {
  flex: 1;
}

.benefits-list .benefit-item strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.benefits-list .benefit-item span {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
}

/* Mock Editor Improvements */
.mock-header {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--bg-primary);
}

.mock-header-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-muted);
}

.mock-header-dot:nth-child(1) {
  background: #ff5f57;
}

.mock-header-dot:nth-child(2) {
  background: #ffbd2e;
}

.mock-header-dot:nth-child(3) {
  background: #28ca42;
}

.mock-actions {
  padding: 16px;
  border-top: 1px solid var(--bg-tertiary);
}

.mock-btn {
  background: var(--primary-cyan);
  color: var(--bg-primary);
  padding: 8px 24px;
  border-radius: 6px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.mock-btn:hover {
  opacity: 0.9;
}

/* Guide Card Improvements */
.guide-difficulty {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.guide-difficulty.difficulty-principiante {
  background: rgba(76, 175, 80, 0.9);
  color: white;
}

.guide-difficulty.difficulty-intermedio {
  background: rgba(255, 152, 0, 0.9);
  color: white;
}

.guide-difficulty.difficulty-avanzado {
  background: rgba(244, 67, 54, 0.9);
  color: white;
}

.guide-meta-info {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.guide-views {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Player Avatar Placeholder */
.player-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 32px;
}

/* CTA Features */
.cta-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

.cta-feature i {
  color: var(--success);
  font-size: 16px;
}

/* No Content Message */
.no-content-message {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px dashed var(--bg-tertiary);
}

.no-content-message p {
  font-size: 1.125rem;
  margin: 0;
}


