/* ===== GGaming Landing Page ===== */

:root {
  --green: #39FF14;
  --green-dim: #2ecc11;
  --green-glow: rgba(57, 255, 20, 0.35);
  --green-subtle: rgba(57, 255, 20, 0.08);
  --bg: #050505;
  --bg-elevated: #0d0d0d;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --border: rgba(255, 255, 255, 0.06);
  --border-green: rgba(57, 255, 20, 0.25);
  --text: #ffffff;
  --text-muted: #8a8a8a;
  --text-dim: #5a5a5a;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Background effects */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
}

.text-gradient {
  background: linear-gradient(135deg, var(--green) 0%, #a8ff78 50%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--green);
  color: #000;
  box-shadow: 0 0 30px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn--primary:hover {
  background: #4dff2e;
  transform: translateY(-2px);
  box-shadow: 0 0 50px var(--green-glow), 0 8px 25px rgba(0,0,0,0.3);
}

.btn--ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}

.btn--ghost:hover {
  border-color: var(--border-green);
  background: var(--green-subtle);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--green-subtle);
  border: 1px solid var(--border-green);
  color: var(--green);
  margin-bottom: 24px;
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--green-glow); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px transparent; }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__logo img { height: 36px; width: auto; }

.navbar__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.navbar__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.navbar__nav a:hover { color: var(--green); }

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  padding: 110px 0 60px;
  overflow: hidden;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(57, 255, 20, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(57, 255, 20, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 10% 60%, rgba(57, 255, 20, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(57, 255, 20, 0.08);
  top: -100px;
  right: -100px;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(57, 255, 20, 0.05);
  bottom: 0;
  left: -150px;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 720px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Showcase */
.hero__showcase {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.hero__showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero__tabs {
  display: flex;
  gap: 6px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}

.hero__tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
}

.hero__tab svg { opacity: 0.6; transition: var(--transition); }

.hero__tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero__tab.active {
  color: #000;
  background: var(--green);
  box-shadow: 0 0 24px var(--green-glow);
}

.hero__tab.active svg { opacity: 1; stroke: #000; }

.hero__url {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero__url-lock { color: var(--green); display: flex; }

.hero__url-text {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.hero__url-live {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid var(--border-green);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__url-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

/* Frame */
.hero__frame-wrap {
  position: relative;
  perspective: 1200px;
}

.hero__frame {
  position: relative;
  border-radius: 20px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  transform: rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 0 0 1px rgba(57, 255, 20, 0.15),
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(57, 255, 20, 0.08);
}

.hero__frame:hover {
  transform: rotateX(0deg) translateY(-4px);
}

.hero__frame-border {
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, var(--green), transparent 40%, transparent 60%, var(--green));
  opacity: 0.4;
  z-index: -1;
  animation: borderSpin 6s linear infinite;
}

@keyframes borderSpin {
  0% { filter: hue-rotate(0deg); opacity: 0.3; }
  50% { opacity: 0.5; }
  100% { filter: hue-rotate(0deg); opacity: 0.3; }
}

.hero__frame-chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
}

.hero__frame-dots {
  display: flex;
  gap: 7px;
}

.hero__frame-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.hero__frame-dots span:nth-child(1) { background: #ff5f57; }
.hero__frame-dots span:nth-child(2) { background: #febc2e; }
.hero__frame-dots span:nth-child(3) { background: #28c840; }

.hero__frame-title {
  flex: 1;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__frame-actions {
  display: flex;
  gap: 6px;
}

.hero__frame-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  transition: var(--transition);
}

.hero__frame-btn:hover {
  border-color: var(--border-green);
  color: var(--green);
  background: var(--green-subtle);
}

.hero__viewport {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #080808;
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hero__slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero__progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.hero__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-dim), var(--green));
  box-shadow: 0 0 12px var(--green-glow);
  transition: width 0.1s linear;
}

/* Floating chips */
.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  z-index: 10;
  animation: floatChip 5s ease-in-out infinite;
}

.hero__float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--green);
  line-height: 1.2;
}

.hero__float span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero__float-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.hero__float--1 {
  top: -20px;
  left: -30px;
  animation-delay: 0s;
}

.hero__float--2 {
  top: 40%;
  right: -40px;
  animation-delay: -1.5s;
}

.hero__float--3 {
  bottom: 40px;
  left: 20px;
  animation-delay: -3s;
}

@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (min-width: 1400px) {
  .hero__showcase { max-width: 1200px; }
  .hero__viewport,
  .hero__slides,
  .hero__slide img { min-height: 580px; }
}

.hero__chart-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, var(--green-dim), var(--green));
  border-radius: 4px 4px 0 0;
  opacity: 0.7;
  animation: growBar 1.5s ease forwards;
}

@keyframes growBar {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); transform-origin: bottom; }
}

/* Stats */
.stats {
  padding: 40px 0 80px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.stat-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:hover {
  border-color: var(--border-green);
  background: var(--bg-card-hover);
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  display: inline;
}

.stat-card__suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
}

.stat-card__label {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.section__header {
  margin-bottom: 56px;
  max-width: 640px;
}

.section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: var(--text-muted);
}

.feature-list__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--green-subtle);
  border: 1px solid var(--border-green);
  color: var(--green);
}

/* Affiliates */
.affiliates__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.affiliates__diagram {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aff-node {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  position: relative;
  z-index: 2;
}

.aff-node--root {
  background: var(--green);
  color: #000;
  border-color: var(--green);
  margin-bottom: 32px;
}

.aff-node--level1 {
  display: inline-block;
  margin: 0 8px 24px;
  border-color: var(--border-green);
  color: var(--green);
}

.aff-sub-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.aff-node--level2 {
  display: inline-block;
  width: 48px;
  height: 32px;
  padding: 0;
  margin: 0 6px;
  border-color: var(--border);
  background: rgba(255,255,255,0.03);
}

.aff-node--level2 span {
  display: block;
  width: 100%;
  height: 100%;
}

/* Gamification carousel */
.section--gamification {
  padding-bottom: 60px;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  margin-top: 20px;
}

.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 24px 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar { display: none; }

.game-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.game-card:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.game-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 16px;
}

.game-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.game-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.game-card__icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0.15;
  color: var(--green);
}

.carousel-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Platform tabs */
.platform-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.platform-tab {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: transparent;
  transition: var(--transition);
}

.platform-tab:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.15);
}

.platform-tab.active {
  background: var(--green);
  color: #000;
  border-color: var(--green);
  font-weight: 600;
}

.platform-panels {
  position: relative;
  min-height: 280px;
}

.platform-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  animation: fadeIn 0.4s ease;
}

.platform-panel.active { display: grid; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.platform-panel h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.platform-panel p {
  color: var(--text-muted);
  line-height: 1.7;
}

.platform-panel__highlight {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.platform-panel__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
}

/* Platform mocks */
.chat-mock {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-mock__msg {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  max-width: 85%;
}

.chat-mock__msg--in {
  background: rgba(255,255,255,0.05);
  align-self: flex-start;
}

.chat-mock__msg--out {
  background: var(--green-subtle);
  border: 1px solid var(--border-green);
  color: var(--green);
  align-self: flex-end;
}

.steps-mock { display: flex; flex-direction: column; gap: 12px; }

.steps-mock__item {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.steps-mock__item--done {
  border-color: var(--border-green);
  color: var(--green);
}

.steps-mock__item--active {
  background: var(--green);
  color: #000;
  border-color: var(--green);
  font-weight: 600;
}

.uptime-mock {
  text-align: center;
  padding: 32px;
}

.uptime-mock__value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  display: block;
}

.uptime-mock__label { color: var(--text-muted); font-size: 0.9rem; }

.migrate-mock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.migrate-mock__dest {
  padding: 12px 20px;
  background: var(--green);
  color: #000;
  border-radius: 8px;
  font-weight: 700;
}

.providers-mock {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.providers-mock__chip {
  width: 72px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}

.providers-mock__chip--accent {
  background: var(--green-subtle);
  border-color: var(--border-green);
}

.pix-mock {
  text-align: center;
}

.pix-mock__qr {
  width: 100px;
  height: 100px;
  margin: 0 auto 12px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--green) 2px, transparent 2px) 0 0 / 12px 12px,
    linear-gradient(var(--green) 2px, transparent 2px) 0 0 / 12px 12px;
  opacity: 0.4;
}

.pix-mock span { font-size: 0.85rem; color: var(--green); }

.dashboard-mock {
  display: flex;
  gap: 12px;
  height: 160px;
}

.dashboard-mock__sidebar {
  width: 48px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}

.dashboard-mock__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-mock__row {
  height: 24px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}

.dashboard-mock__row--short { width: 60%; }

.dashboard-mock__chart {
  flex: 1;
  border-radius: 8px;
  background: linear-gradient(to top, var(--green-subtle), transparent);
  border: 1px solid var(--border);
}

/* Community */
.community__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
}

.community__avatars {
  display: flex;
  margin-bottom: 20px;
}

.community__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a2e, #2d2d44);
  border: 3px solid var(--bg-card);
  margin-left: -12px;
}

.community__avatar:first-child { margin-left: 0; }

.community__avatar--more {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--green);
  color: #000;
}

.community__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 100px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Pricing */
.pricing-card {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-card__glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(circle, var(--green-glow), transparent);
  pointer-events: none;
}

.pricing-card__header {
  padding: 40px 36px 28px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.pricing-card__name {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.pricing-card__price {
  margin: 16px 0 8px;
}

.pricing-card__currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  color: var(--text-muted);
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--green);
}

.pricing-card__monthly {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-card__monthly strong { color: var(--text); }

.pricing-card__badge {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--green-subtle);
  border: 1px solid var(--border-green);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card__body {
  padding: 32px 36px 40px;
}

.pricing-card__body h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-card__features svg { color: var(--green); flex-shrink: 0; }

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: rgba(255,255,255,0.1); }
.faq-item[open] { border-color: var(--border-green); }

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--green);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* CTA */
.section--cta {
  padding: 80px 0 100px;
}

.cta__inner {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(57,255,20,0.05) 100%);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
}

.cta__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 12px;
}

.cta__inner p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__logo img { height: 28px; width: auto; opacity: 0.8; }

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-right: auto;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--green); }

/* Responsive */
@media (max-width: 1024px) {
  .hero__showcase { max-width: 100%; }
  .hero__viewport,
  .hero__slides,
  .hero__slide img { min-height: 420px; }
  .hero__float--1 { left: 0; top: -10px; }
  .hero__float--2 { right: 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .affiliates__grid { grid-template-columns: 1fr; }
  .platform-panel { grid-template-columns: 1fr; }
  .community__inner { grid-template-columns: 1fr; padding: 40px; }
}

@media (max-width: 768px) {
  .navbar__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 20px;
    transition: right var(--transition);
    margin-left: 0;
  }

  .navbar__nav.open { right: 0; }

  .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }

  .hero { padding-top: 90px; }
  .hero__showcase-top { flex-direction: column; align-items: stretch; }
  .hero__tabs { width: 100%; }
  .hero__tab { flex: 1; justify-content: center; padding: 10px 14px; font-size: 0.8rem; }
  .hero__url { justify-content: center; }
  .hero__viewport,
  .hero__slides,
  .hero__slide img { min-height: 280px; }
  .hero__float { display: none; }
  .hero__frame { transform: none; }
  .hero__frame:hover { transform: none; }

  .stats__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 20px 16px; }
  .stat-card__value { font-size: 1.5rem; }

  .section { padding: 64px 0; }
  .platform-tabs { gap: 6px; }
  .platform-tab { padding: 8px 14px; font-size: 0.8rem; }
  .platform-panel { padding: 28px; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__copy { margin-right: 0; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .stats__grid { grid-template-columns: 1fr; }
  .game-card { flex: 0 0 260px; }
}

/* Redirect page (contato.html) */
.redirect-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.redirect {
  text-align: center;
  padding: 48px 32px;
  max-width: 420px;
  width: 100%;
}

.redirect__logo {
  margin: 0 auto 32px;
  height: 40px;
  width: auto;
}

.redirect__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  animation: pulse 2s infinite;
}

.redirect__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.redirect__desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 28px;
}

.redirect__loader {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.redirect__loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-dim), var(--green));
  box-shadow: 0 0 12px var(--green-glow);
  animation: redirectLoad 2.5s ease forwards;
}

@keyframes redirectLoad {
  from { width: 0%; }
  to { width: 100%; }
}

.redirect__timer {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.redirect__timer span {
  color: var(--green);
  font-weight: 700;
}

.redirect__link {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: underline;
  transition: color var(--transition);
}

.redirect__link:hover {
  color: var(--green);
}
