.elementor-10 .elementor-element.elementor-element-84dc68c{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for html, class: .elementor-element-04d6fb6 *//* ==========================================================================
   styles.css
   Educational replica of a "mod APK" style deceptive landing page.
   Built for a classroom demo on dark patterns — NOT a functioning product.
   ========================================================================== */

:root {
  --bg: #0f1115;
  --bg-panel: #161923;
  --bg-card: #1c2030;
  --border: #2a2f42;
  --text: #f4f5f7;
  --text-muted: #9aa0b4;
  --accent: #7c5cff;
  --accent-2: #35d07f;
  --warn: #ffb020;
  --danger: #ff5c5c;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  font-size: 16px;
}

* { box-sizing: border-box; }

/* ==========================================================================
   Full-viewport override — makes this content sit above and fully cover
   whatever theme/page builder chrome (header, footer, sidebars, margins)
   it's embedded inside on WordPress/Elementor, and forces true full width
   regardless of the page builder's container constraints.
   ========================================================================== */
body { margin: 0; padding: 0; }

/* Guard against the WordPress theme / Elementor's own heading CSS bleeding
   into our content (this is the usual cause of headings showing in the
   theme's default color instead of ours). */
.gv-app h1,
.gv-app h2,
.gv-app h3,
.gv-app h4,
.gv-app h5,
.gv-app h6 {
  color: var(--text) !important;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  margin: 0;
}

body {
  margin: 0;
  line-height: 1.5;
}

.gv-app {
  background: var(--bg) !important;
  color: var(--text) !important;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;

  /* Full-bleed break-out: stretches to true full viewport width even if
     Elementor/the theme nests this inside a centered, max-width container
     — without position:fixed, without covering anything, and without
     touching document flow. Content above/below still shows normally. */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Prevents a horizontal scrollbar that the break-out technique above can
   introduce due to sub-pixel rounding on some browsers/zoom levels. */
html, body {
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* -------------------- Header -------------------- */
header.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(15,17,21,0.9);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.logo-img {
  height: 34px;
  width: auto;
  display: block;
}

footer .logo-img {
  height: 36px;
  margin-bottom: 10px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--text); }

/* -------------------- Hero -------------------- */
.hero {
  text-align: center;
  padding: 72px 24px 48px;
}

/* DARK PATTERN: manufactured urgency / false scarcity badge */
.badge-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(53, 208, 127, 0.12);
  color: var(--accent-2);
  border: 1px solid rgba(53, 208, 127, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 16px;
  font-weight: 800;
}

.hero h1 .highlight { color: var(--accent) !important; }

.hero p.subtitle {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 24px;
  font-size: 1.05rem;
}

/* DARK PATTERN: trust signal row with no verifiable source */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 40px;
}

.trust-row span { white-space: nowrap; }

/* DARK PATTERN: unverifiable stats used as social proof */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

.stat {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.4rem;
  color: var(--accent);
}

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

/* -------------------- Game grid -------------------- */
.section-title {
  text-align: center;
  margin: 64px 0 8px;
  font-size: 1.8rem;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.game-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.game-thumb {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  background: repeating-linear-gradient(
    45deg, #21263a, #21263a 10px, #1a1e2c 10px, #1a1e2c 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  overflow: hidden;
  /* Placeholder icons here — swap the <img> src in index.html with your
     own artwork/logos when ready. */
}

.game-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10%;
  box-sizing: border-box;
  background: #fff;
}

.game-card h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.game-card .tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/* DARK PATTERN: fabricated hype tags to imply high demand */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.tag.hot { background: rgba(255,92,92,0.15); color: var(--danger); }
.tag.top { background: rgba(255,176,32,0.15); color: var(--warn); }
.tag.new { background: rgba(124,92,255,0.15); color: var(--accent); }

.game-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 4px;
}

.game-footer .tag { margin-bottom: 0; }

.chevron {
  color: var(--text-muted);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}

/* -------------------- How it works -------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.step {
  text-align: center;
  padding: 24px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 14px;
}

.step h4 { margin: 0 0 6px; }
.step p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* -------------------- Footer -------------------- */
footer.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 80px;
  padding: 48px 24px 24px;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-grid h5 {
  color: var(--text);
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.footer-grid li { margin-bottom: 8px; font-size: 0.9rem; }
.footer-grid li a:hover { color: var(--text); }

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ==========================================================================
   Fake "verification" modal — the core deceptive-flow demonstration
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}

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

.modal {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 420px;
  width: 100%;
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.modal .game-thumb-small {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto 16px;
  border-radius: var(--radius-sm);
  background: repeating-linear-gradient(
    45deg, #21263a, #21263a 8px, #1a1e2c 8px, #1a1e2c 16px
  );
  overflow: hidden;
}

.modal .game-thumb-small img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
  box-sizing: border-box;
  background: #fff;
}

.modal h3 { margin: 0 0 6px; }
.modal p.modal-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

/* DARK PATTERN: fake real-time progress checklist to simulate legitimate work */
.check-list {
  text-align: left;
  margin-bottom: 20px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
  opacity: 0.4;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.check-item:last-child { border-bottom: none; }

.check-item.active {
  opacity: 1;
  color: var(--text);
}

.check-item.done {
  opacity: 1;
  color: var(--accent-2);
}

.check-icon {
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.progress-track {
  height: 6px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.4s ease;
}

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

/* DARK PATTERN: bait-and-switch — after "verification", the real download
   is replaced with a gated action requiring extra steps (e.g. surveys,
   app installs, personal info). Represented here as a disabled/labelled
   placeholder rather than an actual gate, since this file performs no
   real network requests. */
.gate-box {
  display: none;
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--warn);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 8px;
}

.gate-box.open { display: block; }

.gate-box h4 {
  margin: 0 0 6px;
  color: var(--warn);
  font-size: 0.95rem;
}

.gate-box p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Captcha slot: forces this container, and anything a vendor script
   renders inside it (widget, iframe, chat bubble, etc.), to sit on the
   absolute top-most stacking layer above the modal, the gate box, and
   the .gv-app full-viewport wrapper. */
[data-captcha-enable="true"] {
  position: relative;
  z-index: 2147483647; /* max valid CSS z-index value */
  isolation: isolate;   /* creates a fresh stacking context so children can't get trapped under ancestors */
}

[data-captcha-enable="true"] * {
  z-index: inherit;
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover { background: #6a4ce0; }

.btn-block { width: 100%; }

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  margin-top: 10px;
}

.btn-download {
  background: var(--accent-2);
  color: #06210f;
}

/* -------------------- Responsive -------------------- */
@media (max-width: 720px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}/* End custom CSS */