/* ========================================================
   AS CRÔNICAS DO REINO - LANDING PAGE STYLE SYSTEM
   <label placeholder aria-label>
   ======================================================== */

:root {
  --color-bg-deep: hsl(220, 20%, 6%);
  --color-bg-card: hsla(220, 15%, 10%, 0.75);
  --color-bg-card-hover: hsla(220, 15%, 12%, 0.9);
  --color-border-gold: hsl(42, 59%, 47%);
  --color-border-gold-glow: hsla(42, 60%, 50%, 0.4);
  --color-gold-text: hsl(42, 85%, 55%);
  --color-text-bright: hsl(220, 10%, 93%);
  --color-text-muted: hsl(220, 8%, 68%);
  --color-accent-blue: hsl(200, 75%, 45%);
  --color-accent-red: hsl(355, 65%, 48%);
  
  --font-heading: 'Cinzel Decorative', 'Cinzel', 'Times New Roman', serif;
  --font-title: 'Metamorphous', 'Cinzel', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-gold-glow: 0 0 25px hsla(42, 60%, 47%, 0.25);
  --shadow-dark: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-deep);
  color: var(--color-text-bright);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: radial-gradient(circle at 50% 0%, hsla(220, 15%, 15%, 0.3) 0%, transparent 60%),
                    url('https://www.transparenttextures.com/patterns/dark-matter.png');
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--color-border-gold);
  border: 2px solid var(--color-bg-deep);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-text);
}

/* Containers */
.lp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navigation */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 9, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition-smooth);
}

.lp-header.scrolled {
  background: rgba(6, 9, 13, 0.96);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-title);
  color: var(--color-gold-text);
  font-size: 1.35rem;
  letter-spacing: 1px;
}

.brand img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--color-text-muted);
  font-family: var(--font-title);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
}

.nav-link:hover {
  color: var(--color-gold-text);
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.35);
}

.btn-nav-play {
  background: linear-gradient(135deg, var(--color-border-gold), var(--color-gold-text));
  color: var(--color-bg-deep) !important;
  font-family: var(--font-title);
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
  transition: var(--transition-smooth);
}

.btn-nav-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.45);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  background-image: linear-gradient(to bottom, rgba(6, 9, 13, 0.5), var(--color-bg-deep)),
                    url('/images/map_castle.png');
  background-size: cover;
  background-position: center;
  border-bottom: 2px solid var(--color-border-gold);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 20%, rgba(6, 9, 13, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  font-family: var(--font-title);
  color: var(--color-gold-text);
  font-size: 0.95rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.2rem;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffffff 20%, #ffd700 70%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.9));
}

.hero-description {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  line-height: 1.4;
  background: linear-gradient(135deg, var(--color-border-gold), var(--color-gold-text));
  color: var(--color-bg-deep);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
}

.btn-secondary {
  display: inline-block;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold-text);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-glow);
}

/* Sections Global */
.section {
  padding: 100px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  font-family: var(--font-title);
  color: var(--color-gold-text);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-main-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--color-text-bright);
  margin-bottom: 20px;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* Classes Showcase Section */
.classes-showcase {
  background: linear-gradient(to bottom, var(--color-bg-deep), rgba(10, 15, 24, 0.95));
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  margin-top: 40px;
}

.showcase-box {
  background: var(--color-bg-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-gold-glow), var(--shadow-dark);
}

.class-selectors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.class-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-muted);
  font-family: var(--font-title);
  font-size: 1rem;
  padding: 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.class-btn:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.3);
}

.class-btn.active {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--color-border-gold);
  color: var(--color-gold-text);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
  font-weight: 700;
}

.customizer-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.option-group label {
  font-family: var(--font-title);
  font-size: 0.9rem;
  color: var(--color-gold-text);
  margin-bottom: 8px;
  display: block;
}

.option-selects {
  display: flex;
  gap: 8px;
}

.opt-btn {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-muted);
  padding: 8px 12px;
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.opt-btn:hover {
  background: rgba(212, 175, 55, 0.05);
  color: var(--color-text-bright);
}

.opt-btn.active {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--color-border-gold);
  color: var(--color-gold-text);
  font-weight: 700;
}

.class-details {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

.class-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.class-title-row h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-text-bright);
}

.class-passive-badge {
  background: rgba(16, 185, 129, 0.1);
  color: hsl(150, 75%, 65%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
}

.class-desc-text {
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

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

.stat-item {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.02);
  padding: 12px;
  border-radius: 6px;
  text-align: center;
}

.stat-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gold-text);
}

.stat-lbl {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.avatar-preview-box {
  background: var(--color-bg-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-dark);
}

.preview-frame-lp {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-frame-lp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
  transition: var(--transition-smooth);
}

.preview-label-lp {
  font-family: var(--font-title);
  color: var(--color-gold-text);
  font-size: 1rem;
  margin-top: 15px;
  text-align: center;
}

/* Monsters & Regions Section */
.regions-monsters {
  background: linear-gradient(to bottom, rgba(10, 15, 24, 0.95), var(--color-bg-deep));
}

.regions-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
}

.regions-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.region-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  padding: 12px 16px;
  color: var(--color-text-muted);
  font-family: var(--font-title);
  font-size: 0.95rem;
  cursor: pointer;
  text-align: left;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.region-tab-btn:hover {
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-text-bright);
}

.region-tab-btn.active {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--color-gold-text);
}

.region-tab-lvl {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.region-viewer-content {
  background: var(--color-bg-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-dark);
}

.region-info-header {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.region-lore h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-gold-text);
  margin-bottom: 10px;
}

.region-lore p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.region-bg-preview {
  aspect-ratio: 16/10;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.region-bg-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}

.monsters-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.monster-lp-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  transition: var(--transition-smooth);
}

.monster-lp-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.monster-img-frame {
  width: 100px;
  height: 100px;
  margin: 0 auto 12px auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.monster-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}

.monster-lp-card h4 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: var(--color-text-bright);
  margin-bottom: 4px;
}

.monster-lp-card span {
  font-size: 0.75rem;
  color: var(--color-gold-text);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.monster-lp-stats {
  display: flex;
  justify-content: space-around;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  border-top: 1px dashed rgba(255, 255, 255, 0.05);
  padding-top: 8px;
}

/* NPCs and Trade Section */
.npcs-trade {
  background: var(--color-bg-deep);
}

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

.npc-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-dark);
  transition: var(--transition-smooth);
}

.npc-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-gold-glow);
  transform: translateY(-3px);
}

.npc-img-box {
  width: 120px;
  height: 160px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.3);
}

.npc-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}

.npc-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.npc-role {
  font-family: var(--font-title);
  color: var(--color-gold-text);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.npc-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-text-bright);
  margin-bottom: 8px;
}

.npc-quote {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 12px;
  border-left: 2px solid rgba(212, 175, 55, 0.3);
  padding-left: 8px;
}

.npc-description {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Call to Action Banner */
.cta-section {
  padding: 100px 0;
  background-image: linear-gradient(135deg, rgba(6, 9, 13, 0.8), rgba(212, 175, 55, 0.15)),
                    url('/images/stable.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  border-top: 2px solid var(--color-border-gold);
  border-bottom: 2px solid var(--color-border-gold);
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-text-bright);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.cta-box p {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

/* Footer style */
.lp-footer {
  background: #05070a;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-brand h3 {
  font-family: var(--font-title);
  color: var(--color-gold-text);
  font-size: 1.5rem;
}

.footer-brand img {
  height: 48px;
  width: 48px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  list-style: none;
}

.footer-link {
  text-decoration: none;
  color: var(--color-text-muted);
  font-family: var(--font-title);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--color-gold-text);
}

.copyright {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Mobile Navigation Toggle Button */
.lp-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--color-gold-text);
  cursor: pointer;
  user-select: none;
  z-index: 1001;
  padding: 8px;
}

.lp-nav-toggle .toggle-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.lp-nav-toggle.open .toggle-icon {
  transform: rotate(90deg);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-title { font-size: 3.2rem; }
  .showcase-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .lp-nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(6, 9, 13, 0.98);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 24px 0;
    gap: 16px;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    z-index: 999;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu .nav-link {
    display: block;
    padding: 12px 20px;
    font-size: 1.1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .nav-menu .btn-nav-play {
    display: inline-block;
    margin: 8px 0;
    width: auto;
  }

  .hero-title { font-size: 2.6rem; }
  .section-main-title { font-size: 2rem; }
  .class-selectors { grid-template-columns: repeat(2, 1fr); }
  .customizer-options { grid-template-columns: 1fr; }
  .class-stats-row { grid-template-columns: repeat(2, 1fr); }
  .npc-card { flex-direction: column; }

  /* Horizontal Scrollable Regions List for JRPG theme */
  .regions-sidebar {
    flex-direction: row !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding: 10px !important;
    gap: 10px !important;
    -webkit-overflow-scrolling: touch;
  }

  .region-tab-btn {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    padding: 8px 14px !important;
    gap: 8px !important;
  }
}

@media (max-width: 576px) {
  .lp-container {
    padding: 0 12px;
  }
  .brand {
    font-size: 1.05rem;
    gap: 6px;
  }
  .brand img {
    height: 36px;
    width: 36px;
  }
  .lp-nav-toggle {
    padding: 4px;
    font-size: 1.6rem;
  }
  .class-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .class-passive-badge {
    white-space: nowrap;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
    text-align: center;
  }
  .showcase-box {
    padding: 16px !important;
  }
  .region-viewer-content {
    padding: 16px !important;
  }
  .monsters-showcase-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
    gap: 12px !important;
  }
  .monster-lp-card {
    padding: 10px !important;
  }
  .monster-img-frame {
    width: 72px !important;
    height: 72px !important;
    margin-bottom: 8px !important;
  }
  .monster-lp-stats {
    flex-direction: column;
    gap: 4px;
  }
  .game-client-mockup {
    width: 100% !important;
    padding: 10px !important;
    box-sizing: border-box;
  }
  .option-selects {
    flex-wrap: wrap;
  }
  .mockup-tabs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .mockup-tab-btn {
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
    text-align: center;
  }
  .cta-box h2 {
    font-size: 2rem;
  }
  .cta-box p {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .cta-box .btn-primary {
    font-size: 1rem !important;
    padding: 14px 28px !important;
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
    text-align: center;
  }
}

/* ========================================================
   🎮 ESTILOS DE MOCKUP INTERATIVO DO CLIENTE (INTERIOR DO JOGO)
   ======================================================== */

.mockup-section {
  background: linear-gradient(to bottom, rgba(10, 15, 24, 0.98), var(--color-bg-deep));
}

.mockup-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.mockup-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.mockup-tab-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.2);
  font-family: var(--font-title);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.mockup-tab-btn:hover {
  background: rgba(212, 175, 55, 0.05);
  color: var(--color-text-bright);
}

.mockup-tab-btn.active {
  background: var(--color-border-gold);
  color: var(--color-bg-deep);
  border-color: var(--color-border-gold);
  font-weight: 700;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
}

/* Moldura Rústica do Jogo */
.game-client-mockup {
  background: #2b1f16;
  border: 4px solid #4a3424;
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow-dark), 0 0 30px rgba(0, 0, 0, 0.8);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Moldura de Tela */
.mock-screen-frame {
  border: 3px solid #8c6447;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}

.mock-screen {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  image-rendering: pixelated;
  transition: var(--transition-smooth);
}

.mock-screen-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  width: 100%;
  padding: 15px;
  text-align: center;
}

.mock-screen-title {
  font-family: var(--font-title);
  color: #ffd700;
  font-size: 1.25rem;
  text-shadow: 0 2px 5px rgba(0,0,0,0.9);
}

/* Painel de Pergaminho */
.mock-parchment {
  background: #f4edd4;
  border: 2px solid #dfd3b3;
  border-radius: 8px;
  padding: 15px;
  color: #3b2a1a;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.1);
  margin-bottom: 15px;
}

/* Status Bars */
.mock-status-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

.mock-bar-container {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  font-weight: 700;
}

.mock-bar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.mock-bar-outline {
  height: 12px;
  background: #dfd8be;
  border: 1px solid #bfb799;
  border-radius: 6px;
  overflow: hidden;
}

.mock-bar-fill {
  height: 100%;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.red-fill { background: #d9534f; }
.blue-fill { background: #337ab7; }
.emerald-fill { background: #5cb85c; }

/* Log de Ações do RPG de Texto */
.mock-log-panel {
  background: #ebdcb2;
  border: 1px solid #dfcfa1;
  border-radius: 6px;
  padding: 10px;
  font-size: 0.82rem;
  max-height: 120px;
  overflow-y: auto;
}

.mock-log-header {
  font-family: var(--font-title);
  color: #5c4028;
  font-weight: 800;
  border-bottom: 1px solid rgba(78,55,30,0.15);
  padding-bottom: 4px;
  margin-bottom: 6px;
}

.mock-log-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: monospace;
}

.mock-log-entry {
  line-height: 1.4;
  color: #4e3828;
}

.mock-log-entry.damage { color: #b94a48; font-weight: 700; }
.mock-log-entry.player-action { color: #356635; font-weight: 700; }
.mock-log-entry.loot { color: #8a6d3b; font-weight: 700; }

/* Botões de Ação Dinâmicos */
.mock-action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mock-btn-action {
  background: linear-gradient(to bottom, #d49f6a, #a8723f);
  border: 2px solid #5c4028;
  color: #fff;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px;
  cursor: pointer;
  border-radius: 6px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  box-shadow: 0 3px 0 #4a3424, 0 4px 10px rgba(0,0,0,0.3);
  transition: var(--transition-smooth);
}

.mock-btn-action:hover {
  background: linear-gradient(to bottom, #e3af7c, #b57f49);
  transform: translateY(1px);
}

.mock-btn-action:active {
  transform: translateY(3px);
  box-shadow: none;
}

