/**
 * Bet 558 Casino - Master CSS
 * Style: Luxury Gold Casino
 * Version: 1.0.0
 * Target: Brazilian Market (Portuguese)
 */

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */

:root {
  /* Primary Colors - Luxury Gold */
  --color-primary: #D4AF37;
  --color-primary-light: #F4D03F;
  --color-primary-dark: #B8860B;

  /* Secondary Colors - Rich Black */
  --color-secondary: #1A1A1A;
  --color-secondary-light: #2D2D2D;
  --color-secondary-dark: #0D0D0D;

  /* Accent Colors */
  --color-accent: #C41E3A;
  --color-accent-light: #E63950;
  --color-accent-dark: #8B0000;

  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-gray-100: #F5F5F5;
  --color-gray-200: #E5E5E5;
  --color-gray-300: #D4D4D4;
  --color-gray-400: #A3A3A3;
  --color-gray-500: #737373;
  --color-gray-600: #525252;
  --color-gray-700: #404040;
  --color-gray-800: #262626;
  --color-gray-900: #171717;

  /* Semantic Colors */
  --color-success: #22C55E;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;

  /* Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-on-light: #1A1A1A;

  /* Background */
  --bg-body: #0D0D0D;
  --bg-card: #1A1A1A;
  --bg-card-hover: #2D2D2D;
  --bg-overlay: rgba(0, 0, 0, 0.7);

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #B8860B 100%);
  --gradient-dark: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
  --gradient-hero: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
  --gradient-cta: linear-gradient(135deg, #C41E3A 0%, #E63950 100%);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', var(--font-primary);

  /* Font Sizes (Fluid Typography) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3rem);
  --text-5xl: clamp(3rem, 2rem + 5vw, 4rem);

  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Line Heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
  --shadow-cta: 0 4px 20px rgba(196, 30, 58, 0.4);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

  /* Z-Index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-tooltip: 1060;

  /* Container */
  --container-max: 1200px;
  --container-padding: 1rem;

  /* Header Height */
  --header-height: 70px;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background-color: var(--bg-body);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-light);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--text-primary);
}

h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
}

h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-5);
}

h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

h5 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

h6 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}

p {
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
}

.text-gold {
  color: var(--color-primary);
}

.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   LAYOUT
   ============================================ */

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

.section {
  padding: var(--space-16) 0;
}

.section--sm {
  padding: var(--space-10) 0;
}

.section--lg {
  padding: var(--space-24) 0;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

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

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.gap-8 {
  gap: var(--space-8);
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--bg-card);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  z-index: var(--z-fixed);
  backdrop-filter: blur(10px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-primary);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.header__nav-link {
  color: var(--text-secondary);
  font-weight: var(--font-medium);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.header__nav-link:hover,
.header__nav-link--active {
  color: var(--color-primary);
  background: rgba(212, 175, 55, 0.1);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Mobile Menu */
.header__menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.5rem;
}

@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .header__menu-btn {
    display: flex;
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-body);
  padding: var(--space-6);
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  z-index: var(--z-fixed);
  overflow-y: auto;
}

.mobile-nav.is-active {
  transform: translateX(0);
}

.mobile-nav__link {
  display: block;
  padding: var(--space-4);
  color: var(--text-primary);
  font-size: var(--text-lg);
  border-bottom: 1px solid var(--color-gray-800);
}

.mobile-nav__link:hover {
  color: var(--color-primary);
}

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

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero--full {
  min-height: 100vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-10) var(--container-padding);
}

.hero__title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-4);
}

.hero__subtitle {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  line-height: 1;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-gold);
  color: var(--color-secondary-dark);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
  color: var(--color-secondary-dark);
}

.btn--cta {
  background: var(--gradient-cta);
  color: var(--color-white);
  box-shadow: var(--shadow-cta);
}

.btn--cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(196, 30, 58, 0.5);
  color: var(--color-white);
}

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

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

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.btn--block {
  width: 100%;
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all var(--transition-normal);
}

.card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--gradient-cta);
  color: var(--color-white);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.card__body {
  padding: var(--space-5);
}

.card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.card__text {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

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

/* Game Card Specific */
.game-card {
  text-align: center;
}

.game-card__image {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
}

.game-card__title {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.game-card__provider {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ============================================
   CTA BOX
   ============================================ */

.cta-box {
  background: var(--gradient-dark);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  margin: var(--space-10) 0;
}

.cta-box h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.cta-box p {
  margin-bottom: var(--space-6);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--gradient-cta);
  color: var(--color-white);
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-cta);
  transition: all var(--transition-fast);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.5);
  color: var(--color-white);
}

/* ============================================
   TABLES
   ============================================ */

.table-wrapper {
  overflow-x: auto;
  margin: var(--space-6) 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: var(--font-semibold);
  text-align: left;
  padding: var(--space-4);
  white-space: nowrap;
}

td {
  padding: var(--space-4);
  border-bottom: 1px solid var(--color-gray-800);
  color: var(--text-secondary);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: rgba(212, 175, 55, 0.05);
}

/* ============================================
   LISTS
   ============================================ */

.content-list {
  margin: var(--space-4) 0;
}

.content-list li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--text-secondary);
}

.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* Checklist */
.checklist li::before {
  content: '\2713';
  width: auto;
  height: auto;
  background: none;
  color: var(--color-success);
  font-weight: bold;
}

/* ============================================
   FAQ / ACCORDION
   ============================================ */

.faq-item {
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform var(--transition-fast);
}

.faq-item.is-active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-5);
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item.is-active .faq-answer {
  padding: var(--space-5);
  max-height: 500px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--color-secondary);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: var(--space-16);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-10);
  padding-bottom: var(--space-12);
}

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

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  margin-bottom: var(--space-4);
}

.footer__logo img {
  height: 50px;
}

.footer__desc {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.footer__heading {
  color: var(--color-primary);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  color: var(--text-muted);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-primary);
}

.footer__bottom {
  border-top: 1px solid var(--color-gray-800);
  padding: var(--space-6) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.footer__copy {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.footer__badges {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.footer__badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.footer__age-badge {
  background: var(--color-accent);
  color: var(--color-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-bold);
  font-size: var(--text-sm);
}

/* ============================================
   RESPONSIBLE GAMING BANNER
   ============================================ */

.responsible-gaming {
  background: rgba(212, 175, 55, 0.1);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: var(--space-4) 0;
  text-align: center;
}

.responsible-gaming p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin: 0;
}

.responsible-gaming a {
  color: var(--color-primary);
}

/* ============================================
   CONTENT AREA
   ============================================ */

.content {
  padding-top: calc(var(--header-height) + var(--space-10));
}

.content h2 {
  margin-top: var(--space-10);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.content h3 {
  margin-top: var(--space-8);
}

.content h4 {
  margin-top: var(--space-6);
}

.content ul,
.content ol {
  margin: var(--space-4) 0;
  padding-left: var(--space-6);
}

.content ul li,
.content ol li {
  margin-bottom: var(--space-2);
  color: var(--text-secondary);
}

.content ul li::marker {
  color: var(--color-primary);
}

.content ol li::marker {
  color: var(--color-primary);
  font-weight: var(--font-semibold);
}

.content blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-5);
  margin: var(--space-6) 0;
  font-style: italic;
  color: var(--text-muted);
}

.content code {
  background: var(--bg-card);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--color-primary);
}

.content pre {
  background: var(--bg-card);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin: var(--space-6) 0;
}

.content pre code {
  background: none;
  padding: 0;
}

.content hr {
  border: none;
  height: 1px;
  background: rgba(212, 175, 55, 0.2);
  margin: var(--space-10) 0;
}

/* Table of Contents */
.toc {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
}

.toc__title {
  font-size: var(--text-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.toc__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.toc__link {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  padding: var(--space-2) 0;
  border-left: 2px solid transparent;
  padding-left: var(--space-3);
  transition: all var(--transition-fast);
}

.toc__link:hover {
  color: var(--color-primary);
  border-left-color: var(--color-primary);
}

/* ============================================
   FEATURES GRID
   ============================================ */

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin: var(--space-12) 0;
}

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

@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature {
  text-align: center;
  padding: var(--space-6);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all var(--transition-normal);
}

.feature:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.feature__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-4);
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon img {
  width: 32px;
  height: 32px;
}

.feature__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.feature__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   PROS/CONS
   ============================================ */

.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

@media (max-width: 768px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
}

.pros-cons__list {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
}

.pros-cons__list--pro {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.pros-cons__list--con {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.pros-cons__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.pros-cons__list--pro .pros-cons__title {
  color: var(--color-success);
}

.pros-cons__list--con .pros-cons__title {
  color: var(--color-error);
}

.pros-cons__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  color: var(--text-secondary);
}

.pros-cons__item::before {
  flex-shrink: 0;
  font-weight: bold;
}

.pros-cons__list--pro .pros-cons__item::before {
  content: '\2713';
  color: var(--color-success);
}

.pros-cons__list--con .pros-cons__item::before {
  content: '\2717';
  color: var(--color-error);
}

/* ============================================
   STEP BY STEP
   ============================================ */

.steps {
  counter-reset: step;
  margin: var(--space-8) 0;
}

.step {
  position: relative;
  padding-left: var(--space-16);
  padding-bottom: var(--space-8);
  border-left: 2px solid var(--color-gray-700);
  margin-left: var(--space-6);
}

.step:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -20px;
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  color: var(--color-secondary-dark);
  font-weight: var(--font-bold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.step__text {
  color: var(--text-muted);
}

/* ============================================
   UTILITIES
   ============================================ */

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

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

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

.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.hidden {
  display: none !important;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* ============================================
   LOADING SKELETON
   ============================================ */

.skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-card) 25%,
    var(--bg-card-hover) 50%,
    var(--bg-card) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .header,
  .footer,
  .cta-box,
  .btn {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .content {
    padding-top: 0;
  }
}
