@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700;800&family=JetBrains+Mono:wght@600;700&display=swap');

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== VARIABLES ===== */
:root {
  --lp-bg: #0a0a0f;
  --lp-surface: #1a1a2e;
  --lp-surface-elevated: #24243a;
  --lp-card-bg: #1a1a2e;
  --lp-border: #2a2a40;
  --lp-gold: #f5a623;
  --lp-gold-dim: rgba(245, 166, 35, 0.15);
  --lp-cta: #00e676;
  --lp-cta-hover: #00c853;
  --lp-text: #f5f5f7;
  --lp-text-muted: #a0a0b8;
  --lp-danger: #ff3b5c;
  --lp-radius-sm: 8px;
  --lp-radius: 12px;
  --lp-radius-lg: 20px;
  --container: 1440px;
  --lp-font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --lp-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --lp-font-mono: 'JetBrains Mono', monospace;
}

.lp-body {
  font-family: var(--lp-font-body);
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.lp-body a {
  color: inherit;
  text-decoration: none;
}

/* ===== CONTAINER ===== */
.lp-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SECTION ===== */
.lp-section {
  padding: 80px 0;
}

.lp-section--dark {
  background: var(--lp-surface);
}

.lp-section__title {
  font-family: var(--lp-font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
  color: var(--lp-text);
}

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

/* ===== CTA ===== */
.lp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(180deg, #00e676 0%, #00c853 40%, #00b34a 100%);
  color: #0a0a0f;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--lp-font-heading);
  border-radius: var(--lp-radius-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  line-height: 1.2;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 230, 118, 0.3);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.lp-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(0,0,0,0.08) 100%);
  pointer-events: none;
}

.lp-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15),
    0 6px 20px rgba(0, 230, 118, 0.4);
}

.lp-cta:active {
  transform: translateY(0);
  background: linear-gradient(180deg, #00b34a 0%, #009940 100%);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.2),
    0 2px 8px rgba(0, 230, 118, 0.3);
}

.lp-cta--xl {
  padding: 20px 48px;
  font-size: 18px;
  border-radius: var(--lp-radius);
}

/* ===== HEADER ===== */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #232323;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--lp-border);
    box-shadow: 0 1px 0 rgba(0, 230, 118, 0.05);
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.lp-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-header__logo-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--lp-text);
}

.lp-header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-header__nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-text-muted);
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.lp-header__nav-link:hover {
  color: var(--lp-text);
  background: rgba(255, 255, 255, 0.05);
}

.lp-header__nav-link--active {
  color: var(--lp-gold) !important;
}

.lp-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-lang {
  position: relative;
}

.lp-lang__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--lp-border);
  border-radius: 6px;
  padding: 4px 8px;
  color: var(--lp-text-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  font-family: inherit;
  font-size: 13px;
}

.lp-lang__toggle:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--lp-text);
}

.lp-lang__toggle[aria-expanded="true"] {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--lp-text);
}

.lp-lang__current {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.lp-lang__current span {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.lp-lang__chevron {
  transition: transform 0.2s;
}

.lp-lang__toggle[aria-expanded="true"] .lp-lang__chevron {
  transform: rotate(180deg);
}

.lp-lang__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 4px;
  min-width: 150px;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.lp-lang__menu--open {
  display: block;
}

.lp-lang__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--lp-text-muted);
  transition: background 0.15s, color 0.15s;
}

.lp-lang__option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--lp-text);
}

.lp-lang__option--active {
  color: var(--lp-gold);
  background: rgba(212, 175, 55, 0.08);
}

.lp-header__login {
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-text-muted);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.lp-header__login:hover {
  color: var(--lp-text);
}

/* ===== HERO ===== */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 20px 60px;
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(245, 166, 35, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0, 230, 118, 0.04) 0%, transparent 50%),
    var(--lp-bg);
}

.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--lp-bg) 100%);
  pointer-events: none;
}

.lp-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.lp-hero__badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--lp-font-heading);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lp-gold);
  background: var(--lp-gold-dim);
  border-radius: 100px;
  margin-bottom: 24px;
}

.lp-hero__title {
  font-family: var(--lp-font-heading);
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.lp-hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--lp-text-muted);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 36px;
}

.lp-hero__cta {
  margin-bottom: 32px;
}

.lp-hero__trust {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ===== TRUST BADGES ===== */
.lp-trust__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--lp-font-heading);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--lp-text-muted);
  border: 1px solid var(--lp-border);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
}

.lp-trust__badge svg {
  flex-shrink: 0;
}

/* ===== URGENCY BAR ===== */
.lp-urgency {
  background: var(--lp-surface);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  padding: 14px 0;
  overflow: hidden;
}

.lp-urgency__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 20px;
  max-width: 900px;
  margin: 0 auto;
}

.lp-urgency__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lp-cta);
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

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

.lp-urgency__label {
  font-size: 11px;
  font-weight: 700;
  font-family: var(--lp-font-heading);
  letter-spacing: 2px;
  color: var(--lp-cta);
}

.lp-urgency__stat {
  font-size: 13px;
  color: var(--lp-text-muted);
}

.lp-urgency__stat strong {
  color: var(--lp-text);
  font-weight: 700;
}

.lp-urgency__sep {
  width: 1px;
  height: 16px;
  background: var(--lp-border);
}

/* ===== BENEFITS ===== */
.lp-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.lp-card {
  background: var(--lp-card-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.lp-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
  transform: translateY(-4px);
}

.lp-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: var(--lp-gold-dim);
  color: var(--lp-gold);
}

.lp-card__icon-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.lp-card__icon svg {
  width: 24px;
  height: 24px;
}

.lp-card__title {
  font-family: var(--lp-font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.lp-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--lp-text-muted);
}

/* ===== SHOWCASE ===== */
.lp-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.lp-showcase__item figcaption {
  font-size: 14px;
  color: var(--lp-text-muted);
  margin-top: 12px;
  text-align: center;
}

.lp-showcase__frame {
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s;
}

.lp-showcase__frame:hover {
  border-color: rgba(245, 166, 35, 0.2);
}

.lp-showcase__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-showcase__suit {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
  color: var(--lp-gold);
}

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

/* ===== TRUST SECTION ===== */
.lp-trust {
  text-align: center;
}

.lp-trust__rating {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.lp-trust__stars {
  display: flex;
  gap: 4px;
}

.lp-trust__score {
  font-family: var(--lp-font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--lp-gold);
}

.lp-trust__count {
  font-size: 14px;
  color: var(--lp-text-muted);
}

.lp-trust__badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ===== FINAL CTA ===== */
.lp-final__card {
  text-align: center;
  padding: 64px 32px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.08) 0%, transparent 50%, rgba(0, 230, 118, 0.05) 100%);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  max-width: 640px;
  margin: 0 auto;
}

.lp-final__title {
  font-family: var(--lp-font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}

.lp-final__text {
  font-size: 16px;
  color: var(--lp-text-muted);
  max-width: 460px;
  margin: 0 auto 32px;
}

.lp-final__disclaimer {
  font-size: 12px;
  color: var(--lp-text-muted);
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.lp-footer {
  background: #232323;
  border-top: 1px solid var(--lp-border);
  padding: 48px 0 96px;
}

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

.lp-footer__logo-img {
  height: 48px;
  width: auto;
  margin: 0 auto 8px;
}

.lp-footer__logo {
  font-family: var(--lp-font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--lp-gold);
}

.lp-footer__tagline {
  font-size: 13px;
  color: var(--lp-text-muted);
  margin-top: 4px;
  margin-bottom: 24px;
}

.lp-footer__social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.lp-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--lp-border);
  border-radius: 50%;
  color: var(--lp-text-muted);
  transition: color 0.2s, border-color 0.2s;
}

.lp-footer__social-link:hover {
  color: var(--lp-text);
  border-color: rgba(255, 255, 255, 0.2);
}

.lp-footer__social-link[aria-label="WhatsApp"] {
  color: var(--lp-cta);
  border-color: var(--lp-cta);
}

.lp-footer__social-link[aria-label="Instagram"] {
  color: #E4405F;
  border-color: #E4405F;
}

.lp-footer__nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.lp-footer__link {
  font-size: 13px;
  color: var(--lp-text-muted);
  transition: color 0.2s;
}

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

.lp-footer__copy {
  font-size: 12px;
  color: var(--lp-text-muted);
  margin-bottom: 8px;
}

.lp-footer__warning {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  max-width: 400px;
  margin: 0 auto;
}

/* ===== STICKY CTA (mobile) ===== */
.lp-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--lp-border);
}

.lp-sticky__btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MODAL ===== */
.lp-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lp-modal--open {
  display: flex;
}

.lp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lp-modal__content {
  position: relative;
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 48px 32px 32px;
  z-index: 1;
}

.lp-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--lp-text-muted);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}

.lp-modal__close:hover {
  color: var(--lp-text);
}

.lp-modal__body h2 {
  font-family: var(--lp-font-heading);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--lp-gold);
}

.lp-modal__body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--lp-text);
}

.lp-modal__body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--lp-text-muted);
  margin-bottom: 12px;
}

.lp-modal__body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.lp-modal__body li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--lp-text-muted);
  margin-bottom: 4px;
}

.lp-modal__body strong {
  color: var(--lp-text);
}

.lp-modal__body a {
  color: var(--lp-gold);
}

.lp-modal__body a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .lp-section {
    padding: 56px 0;
  }

.section__tag {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--lp-font-heading);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lp-gold) !important;
  margin-bottom: 12px;
}

.lp-section__title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .lp-hero {
    min-height: 90vh;
    padding-top: 80px;
  }

  .lp-hero__title {
    letter-spacing: -0.5px;
  }

  .lp-showcase {
    grid-template-columns: 1fr;
  }

  .lp-final__card {
    padding: 40px 20px;
  }

  .lp-sticky {
    display: block;
  }

  .lp-footer {
    padding-bottom: 80px;
  }
}

@media (min-width: 769px) {
  .lp-sticky {
    display: none !important;
  }

  .lp-footer {
    padding-bottom: 48px;
  }
}

/* ===== TORNEIOS PAGE ===== */

.trn-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  background: var(--lp-bg);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 40px;
}

.trn-hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.trn-hero__bg-text {
  position: absolute;
  font-family: var(--lp-font-heading);
  font-weight: 800;
  font-size: clamp(160px, 16vw, 240px);
  color: rgba(255,255,255,0.08);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.06em;
  transform: translateX(-50%) scaleX(2);
  top: 45px;
  left: 50%;
  width: 95%;
  text-align: center;
  line-height: 1;
}

.trn-hero__carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1500px;
  margin: 240px auto 0;
  padding: 0 20px;
  min-height: 400px;
  touch-action: none;
}

.trn-hero__carousel-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.trn-hero__card {
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease, filter 0.4s ease;
  position: relative;
  cursor: pointer;
  width: 660px;
  height: 310px;
}

.trn-hero__card--side {
  z-index: 1;
  opacity: 0.7;
  transform: scale(0.82);
  filter: brightness(0.8);
  margin: 20px -30px 0;
  pointer-events: auto;
}

.trn-hero__card--hidden {
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
}

.trn-hero__card--center {
  z-index: 3;
  transform: scale(1);
  filter: brightness(1.05);
  margin-top: 0;
}

.trn-hero__card--center::before {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 60px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.trn-hero__card-inner {
  width: 100%;
  height: 100%;
  padding: 32px 44px 0;
  background: linear-gradient(180deg, rgba(26,26,46,0.96) 0%, rgba(20,20,36,0.96) 100%);
  border-radius: 40px;
  border: 1px solid var(--lp-border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.4s ease, border 0.4s ease;
}

.trn-hero__card--center .trn-hero__card-inner {
  padding: 32px 48px 0;
  border: 1px solid rgba(245, 166, 35, 0.15);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(245, 166, 35, 0.06);
  background: linear-gradient(180deg, rgba(30,30,50,0.96) 0%, rgba(22,22,38,0.96) 100%);
}

.trn-hero__card--side .trn-hero__bar {
  bottom: 15px;
}

.trn-hero__card-top {
  font-family: var(--lp-font-heading);
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 4px;
  opacity: 0.85;
}

.trn-hero__card--center .trn-hero__card-top {
  font-size: 18px;
  letter-spacing: 2px;
  opacity: 1;
}

.trn-hero__card-prize {
  font-family: var(--lp-font-mono);
  font-weight: 700;
  font-size: 72px;
  background: linear-gradient(180deg, #f5a623 0%, #e89820 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.04em;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0;
  filter: drop-shadow(0 2px 6px rgba(239,161,68,0.12));
}

.trn-hero__card--center .trn-hero__card-prize {
  font-size: 120px;
  flex: 0 0 auto;
  filter: drop-shadow(0 3px 10px rgba(239,161,68,0.18));
}

.trn-hero__card-game {
  font-family: var(--lp-font-heading);
  font-weight: 700;
  font-size: 34px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 4px;
  opacity: 0.9;
}

.trn-hero__card--center .trn-hero__card-game {
  font-size: 52px;
  letter-spacing: 3px;
  opacity: 1;
}

.trn-hero__bar {
  position: absolute;
  bottom: -35px;
  left: -20px;
  right: -20px;
  height: 80px;
  background: rgba(18,18,18,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 0 8px;
  z-index: 5;
}

.trn-hero__bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.trn-hero__bar-label {
  font-family: var(--lp-font-heading);
  font-weight: 600;
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.trn-hero__bar-value {
  font-family: var(--lp-font-mono);
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.2;
}

.trn-hero__dots {
  display: flex;
  gap: 14px;
  margin: 20px auto 0;
  z-index: 5;
  align-items: center;
  justify-content: center;
}

.trn-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
  padding: 0;
}

.trn-hero__dot:hover {
  background: rgba(255,255,255,0.4);
}

.trn-hero__dot--active {
  width: 10px;
  height: 10px;
  background: #ffffff;
}

@media (max-width: 1200px) {
  .trn-hero__card { width: 520px; height: 270px; }
  .trn-hero__card--side { transform: scale(0.78); }
  .trn-hero__card--center { transform: scale(1); }
  .trn-hero__card--center .trn-hero__card-prize { font-size: 80px; }
  .trn-hero__card-prize { font-size: 48px; }
  .trn-hero__card--center .trn-hero__card-game { font-size: 30px; }
  .trn-hero__card-game { font-size: 18px; }
  .trn-hero__card-top { font-size: 13px; }
  .trn-hero__card--center .trn-hero__card-top { font-size: 14px; }
  .trn-hero__bar { height: 64px; }
  .trn-hero__bar-value { font-size: 14px; }
  .trn-hero__card-inner { padding: 24px 32px 0; }
}

@media (max-width: 900px) {
  .trn-hero { height: auto; min-height: 500px; padding: 60px 0; }
  .trn-hero__card { width: 380px; height: 220px; }
  .trn-hero__card--side { transform: scale(0.75); opacity: 0.6; }
  .trn-hero__card--center .trn-hero__card-prize { font-size: 56px; }
  .trn-hero__card-prize { font-size: 34px; }
  .trn-hero__card--center .trn-hero__card-game { font-size: 24px; }
  .trn-hero__card-game { font-size: 15px; }
  .trn-hero__card-top { font-size: 11px; }
  .trn-hero__card--center .trn-hero__card-top { font-size: 12px; }
  .trn-hero__card-inner { border-radius: 28px; padding: 18px 24px 0; }
  .trn-hero__bar { height: 56px; bottom: 14px; left: -12px; right: -12px; border-radius: 10px; padding: 0 4px; }
  .trn-hero__bar-label { font-size: 8px; }
  .trn-hero__bar-value { font-size: 12px; }
  .trn-hero__dot { gap: 10px; }
}

@media (max-width: 600px) {
  .trn-hero__bg-text {
    font-size: clamp(52px, 16vw, 100px);
    top: 20px;
    width: 90%;
  }

  .trn-hero__carousel-cards {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
  }

  .trn-hero__card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    flex-shrink: 1;
  }

  .trn-hero__card--center {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
  }

  .trn-hero__card--hidden {
    display: none;
  }

  .trn-hero__card--center::before {
    display: none;
  }

  .trn-hero__card-inner {
    border-radius: 28px;
  }
}

@keyframes slideInRight {
  from { transform: translateX(120%); opacity: 1; }
  to   { transform: translateX(0); opacity: 1; }
}

@keyframes slideInLeft {
  from { transform: translateX(-120%); opacity: 1; }
  to   { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(120%); opacity: 0; }
}

@keyframes slideOutLeft {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(-120%); opacity: 0; }
}

@media (max-width: 480px) {
  .trn-hero__card { left: 30px; right: 30px; height: 200px; }
  .trn-hero__card--center .trn-hero__card-prize { font-size: 38px; }
  .trn-hero__card--center .trn-hero__card-game { font-size: 16px; }
  .trn-hero__card-top { font-size: 10px; }
  .trn-hero__card--center .trn-hero__card-top { font-size: 11px; }
  .trn-hero__card-inner { border-radius: 24px; padding: 14px 18px 0; }
  .trn-hero__bar { height: 44px; bottom: 10px; left: -6px; right: -6px; border-radius: 8px; }
  .trn-hero__bar-label { font-size: 6px; letter-spacing: 0.5px; }
  .trn-hero__bar-value { font-size: 10px; }
  .trn-hero__dot { gap: 8px; width: 4px; height: 4px; }
  .trn-hero__dot--active { width: 7px; height: 7px; }
}

.trn-header {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.trn-header__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(0, 230, 118, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 70% 80%, rgba(245, 166, 35, 0.05) 0%, transparent 50%),
    var(--lp-bg);
}

.trn-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--lp-bg) 100%);
  pointer-events: none;
}

.trn-header__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px 60px;
}

.trn-header__title {
  font-family: var(--lp-font-heading);
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.trn-header__sub {
  font-size: 16px;
  color: var(--lp-text-muted);
}

.trn-header__sub strong {
  color: var(--lp-gold);
}

.trn-section {
  padding: 48px 0 96px;
}

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

.trn-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.trn-filters__left,
.trn-filters__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trn-filters__label {
  font-size: 13px;
  color: #808080;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.trn-filters__select {
  background: var(--lp-surface-elevated);
  color: var(--lp-text);
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: .2s;
}

.trn-filters__select:hover,
.trn-filters__select:focus {
  border-color: rgba(255,255,255,.2);
  outline: none;
}

.trn-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  background: var(--lp-surface);
}

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

.trn-table thead {
  background: transparent;
}

.trn-table th {
  text-align: left;
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--lp-font-heading);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #0a0a0f;
  border-bottom: 2px solid rgba(0,0,0,.12);
  white-space: nowrap;
  background: linear-gradient(180deg, #f5a623 0%, #e89820 40%, #d48a1a 100%);
  text-shadow: 0 1px 0 rgba(255,255,255,.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3);
}

.trn-table td {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--lp-text-muted);
  border-bottom: 1px solid rgba(255,255,255,.03);
}

.trn-table tbody tr {
  transition: .15s;
  background: transparent;
}

.trn-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,.02);
}

.trn-table tbody tr:hover {
  background: rgba(245, 166, 35, .05);
}

.trn-table tbody tr:last-child td {
  border-bottom: none;
}

.trn-table__name {
  font-family: var(--lp-font-heading);
  color: #fff;
  font-weight: 600;
}

.trn-table__buyin {
  font-family: var(--lp-font-mono);
  color: #fff;
  font-weight: 600;
}

.trn-table__gtd {
  font-family: var(--lp-font-mono);
  color: #f5a623;
  font-weight: 700;
}

/* --- Pagination --- */
.trn-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.trn-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 500;
  color: #808080;
  background: transparent;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  cursor: pointer;
  transition: .2s;
  font-family: inherit;
}

.trn-pagination__btn:hover {
  border-color: rgba(255,255,255,.15);
  color: #fff;
  background: rgba(255,255,255,.03);
}

.trn-pagination__btn--active {
  background: #f5a623;
  color: #0a0a0f;
  border-color: transparent;
  font-weight: 600;
}

.trn-pagination__btn--active:hover {
  background: #e89820;
  color: #0a0a0f;
}

@media (max-width: 768px) {
  .trn-header {
    min-height: 30vh;
  }

  .trn-header__title {
    font-size: 32px;
  }

  .trn-filters {
    flex-direction: column;
    align-items: flex-start;
  }

  .trn-table th,
  .trn-table td {
    padding: 10px 12px;
    font-size: 12px;
  }
}

/* ===== WHATSAPP BUTTON ===== */
.trn-whatsapp {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.trn-whatsapp__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-family: var(--lp-font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #0a0a0f;
  background: linear-gradient(180deg, #f5a623 0%, #e89820 40%, #d48a1a 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: filter .2s, transform .2s;
  box-shadow: 0 4px 20px rgba(245, 166, 35, .3);
}

.trn-whatsapp__btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #0a0a0f;
}

.trn-whatsapp__btn svg {
  flex-shrink: 0;
}

/* ===== COMO JOGAR (GUIDE) PAGE ===== */

.guide {
  font-family: var(--lp-font-body);
  background: var(--lp-bg);
  color: var(--lp-text);
}

.guide-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 20px 60px;
  text-align: center;
}

.guide-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(245, 166, 35, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0, 230, 118, 0.04) 0%, transparent 50%),
    var(--lp-bg);
}

.guide-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--lp-bg) 100%);
  pointer-events: none;
}

.guide-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.guide-hero__tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--lp-font-heading);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lp-gold);
  background: var(--lp-gold-dim);
  border-radius: 100px;
  margin-bottom: 24px;
}

.guide-hero__title {
  font-family: var(--lp-font-heading);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.guide-hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--lp-text-muted);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}

/* Guide Nav */
.guide-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.guide-nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-text-muted);
  padding: 8px 18px;
  border: 1px solid var(--lp-border);
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
}

.guide-nav__link:hover {
  color: var(--lp-gold);
  border-color: rgba(245, 166, 35, 0.3);
  background: var(--lp-gold-dim);
}

/* Guide Sections */
.guide-section {
  padding: 80px 0;
}

.guide-section--dark {
  background: var(--lp-surface);
}

.guide-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.guide-section__title {
  font-family: var(--lp-font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
  color: var(--lp-text);
}

.guide-text {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  color: var(--lp-gold);
}

.guide-text strong {
  color: var(--lp-text);
}

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

.guide-back-top {
  text-align: center;
  margin-top: 40px;
}

.guide-back-top a {
  color: var(--lp-gold);
  font-size: 14px;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.guide-back-top a:hover {
  opacity: 1;
}

.guide-list {
  list-style: none;
  margin-top: 12px;
}

.guide-list li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--lp-text-muted);
  padding: 6px 0 6px 24px;
  position: relative;
}

.guide-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lp-gold);
}

.guide-card {
  background: var(--lp-card-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px;
  margin-bottom: 32px;
}

/* Table Visual */
.guide-table-visual {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  padding: 60px 40px 40px;
  text-align: center;
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
}

.guide-table-visual__felt {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #1a5c2a 0%, #0f3d1c 100%);
  border-radius: var(--lp-radius-lg);
  border: 2px solid rgba(245, 166, 35, 0.15);
  box-shadow: inset 0 0 60px rgba(0,0,0,0.4);
}

.guide-table-visual__dealer {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lp-gold);
  color: #0a0a0f;
  font-family: var(--lp-font-heading);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 24px;
}

.guide-table-visual__hand {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.guide-table-visual__community {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.guide-table-visual__pot {
  position: relative;
  z-index: 1;
  font-family: var(--lp-font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-gold);
  letter-spacing: 1px;
}

/* Mini Cards */
.guide-card-mini {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 68px;
  background: #fff;
  border-radius: 6px;
  font-family: var(--lp-font-heading);
  font-weight: 700;
  font-size: 16px;
  color: #1a1a2e;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  line-height: 1;
}

.guide-card-mini--red {
  color: #e53e3e;
}

.guide-card-mini__suit {
  font-size: 10px;
  line-height: 1;
  margin-top: 2px;
}

.guide-card-mini--back {
  background: linear-gradient(135deg, #1a3a8a, #2a5ac8);
  color: transparent;
  position: relative;
}

.guide-card-mini--back::after {
  content: 'NP';
  position: absolute;
  font-size: 10px;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  letter-spacing: 1px;
}

/* Hands Grid */
.guide-hands {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 20px;
}

.guide-hand {
  background: var(--lp-card-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 24px;
  position: relative;
  transition: border-color 0.3s;
}

.guide-hand:hover {
  border-color: rgba(245, 166, 35, 0.2);
}

.guide-hand__label {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--lp-font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--lp-text-muted);
  opacity: 0.5;
}

.guide-hand__cards {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.guide-hand__card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 72px;
  background: #fff;
  border-radius: 6px;
  font-family: var(--lp-font-heading);
  font-weight: 700;
  font-size: 18px;
  color: #1a1a2e;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  line-height: 1;
  flex-shrink: 0;
}

.guide-hand__card--red {
  color: #e53e3e;
}

.guide-hand__card--gold {
  color: var(--lp-gold);
  box-shadow: 0 0 12px rgba(245, 166, 35, 0.3);
}

.guide-hand__suit {
  font-size: 11px;
  line-height: 1;
  margin-top: 2px;
}

.guide-hand__title {
  font-family: var(--lp-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 4px;
}

.guide-hand__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--lp-text-muted);
}

/* Blinds / Glossary Tables */
.guide-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  background: var(--lp-card-bg);
}

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

.guide-table thead {
  background: linear-gradient(180deg, #f5a623 0%, #e89820 40%, #d48a1a 100%);
}

.guide-table th {
  text-align: left;
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--lp-font-heading);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #0a0a0f;
  border-bottom: 2px solid rgba(0,0,0,.12);
  text-shadow: 0 1px 0 rgba(255,255,255,.2);
}

.guide-table td {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--lp-text-muted);
  border-bottom: 1px solid rgba(255,255,255,.03);
  line-height: 1.5;
}

.guide-table tbody tr:last-child td {
  border-bottom: none;
}

.guide-table tbody tr:hover {
  background: rgba(245, 166, 35, .04);
}

.guide-table__term {
  font-family: var(--lp-font-heading);
  font-weight: 600;
  color: var(--lp-gold);
  white-space: nowrap;
}

/* Betting Rounds */
.guide-rounds {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.guide-round {
  background: var(--lp-card-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 24px;
  text-align: center;
  transition: border-color 0.3s;
}

.guide-round:hover {
  border-color: rgba(245, 166, 35, 0.2);
}

.guide-round__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lp-gold-dim);
  color: var(--lp-gold);
  font-family: var(--lp-font-heading);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 12px;
}

.guide-round__title {
  font-family: var(--lp-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 8px;
}

.guide-round__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--lp-text-muted);
}

/* Tips */
.guide-tips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.guide-tip {
  background: var(--lp-card-bg);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.guide-tip:hover {
  border-color: rgba(245, 166, 35, 0.2);
  transform: translateY(-4px);
}

.guide-tip__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: var(--lp-gold-dim);
  color: var(--lp-gold);
}

.guide-tip__icon svg {
  width: 24px;
  height: 24px;
}

.guide-tip__title {
  font-family: var(--lp-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 10px;
}

.guide-tip__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--lp-text-muted);
}

@media (max-width: 768px) {
  .guide-section {
    padding: 56px 0;
  }

  .guide-hands {
    grid-template-columns: 1fr;
  }

  .guide-hand__cards {
    flex-wrap: wrap;
  }

  .guide-rounds {
    grid-template-columns: 1fr 1fr;
  }

  .guide-tips {
    grid-template-columns: 1fr;
  }

  .guide-nav {
    gap: 6px;
  }

  .guide-nav__link {
    font-size: 12px;
    padding: 6px 14px;
  }
}

@media (max-width: 480px) {
  .guide-rounds {
    grid-template-columns: 1fr;
  }

  .guide-hand__card {
    width: 44px;
    height: 62px;
    font-size: 15px;
  }
}

/* ===== GLASSMORPHISM UTILITY ===== */
.glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
