
:root {
  color-scheme: dark;
  --bg: #06080b;
  --surface: #17191d;
  --surface-2: #1d2025;
  --surface-soft: #101216;
  --text: #f6f7fb;
  --muted: #a8a9b1;
  --line: rgba(255,255,255,.11);
  --cyan: #10d7ff;
  --cyan-2: #00afd3;
  --pink: #ff0877;
  --pink-dark: #740b3d;
  --gold: #ffc41a;
  --green: #00ba5a;
  --blue: #2164e8;
  --shadow: 0 18px 55px rgba(0,0,0,.34);
  --header: rgba(5,7,10,.90);
  --selection: #ff82b8;
  --selection-text: #1b0711;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f3f6fa;
  --surface: #ffffff;
  --surface-2: #edf1f6;
  --surface-soft: #f9fbfd;
  --text: #13161b;
  --muted: #5f6670;
  --line: rgba(10,20,30,.13);
  --cyan: #008eae;
  --cyan-2: #00738d;
  --pink: #d60060;
  --pink-dark: #ffd5e7;
  --gold: #b87900;
  --green: #078743;
  --blue: #1554ce;
  --shadow: 0 18px 55px rgba(24,40,63,.13);
  --header: rgba(255,255,255,.91);
  --selection: #ff8dbc;
  --selection-text: #1b0711;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 300px;
  background:
    radial-gradient(circle at 50% -15%, rgba(255,0,119,.16), transparent 30rem),
    radial-gradient(circle at 14% 20%, rgba(0,215,255,.09), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  line-height: 1.5;
  transition: background-color .2s ease, color .2s ease;
}
::selection { background: var(--selection); color: var(--selection-text); }
button, input { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--cyan);
  color: #021015;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: var(--header);
  backdrop-filter: blur(15px);
}
.header-inner {
  width: min(1505px, calc(100% - 32px));
  min-height: 80px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  font-weight: 900;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: -.04em;
  white-space: nowrap;
}
.brand-mark { width: 34px; height: 34px; filter: drop-shadow(0 0 12px rgba(255,0,119,.3)); }
.brand-vini { color: #62dcff; }
.brand-gamer { color: #ff6aa9; }

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: .92rem;
}
.nav a {
  text-decoration: none;
  opacity: .78;
  transition: opacity .2s ease, color .2s ease;
}
.nav a:hover, .nav a:focus-visible { opacity: 1; color: var(--cyan); }

.header-actions { display: flex; gap: 14px; align-items: center; }
.btn {
  border: 0;
  border-radius: 11px;
  min-height: 42px;
  padding: 10px 17px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn:focus-visible, .share:focus-visible, .audio-button:focus-visible, .buy-button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--cyan) 70%, white);
  outline-offset: 3px;
}
.btn-login {
  color: #071015;
  background: linear-gradient(90deg, #38dcff, #ff357e);
  box-shadow: 0 8px 24px rgba(255,30,120,.18);
}
.btn-theme {
  color: #1a1200;
  background: linear-gradient(135deg, #ffca18, #f29d00);
}
.menu-toggle {
  display: none;
  width: 44px;
  padding: 0;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--line);
}

.hero {
  width: min(1505px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 34px;
}
.hero-content {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(26px, 5vw, 56px);
  background:
    linear-gradient(110deg, rgba(0,215,255,.12), transparent 38%),
    linear-gradient(290deg, rgba(255,8,119,.14), transparent 42%),
    var(--surface-soft);
  box-shadow: var(--shadow);
}
.eyebrow { color: var(--cyan); font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.hero h1 { margin: 7px 0 12px; max-width: 850px; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.04; letter-spacing: -.06em; }
.hero p { margin: 0; max-width: 760px; color: var(--muted); font-family: system-ui, sans-serif; font-size: 1.04rem; }
.hero-actions { margin-top: 25px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-primary { background: var(--cyan); color: #001016; text-decoration: none; }
.hero-secondary { background: var(--surface-2); color: var(--text); border: 1px solid var(--line); text-decoration: none; }

.section {
  width: min(1505px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 74px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}
.section-heading h2 { margin: 0; font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -.045em; }
.section-heading p { margin: 0; max-width: 630px; color: var(--muted); font-family: system-ui, sans-serif; }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 31px;
}
.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(0,0,0,.18);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--cyan) 70%, transparent);
  box-shadow: var(--shadow);
}
.cover-wrap {
  position: relative;
  aspect-ratio: 1.71 / 1;
  overflow: hidden;
  background: #080a0d;
}
.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}
.game-card:hover .cover { transform: scale(1.022); }
.price {
  position: absolute;
  top: 20px;
  right: 16px;
  z-index: 2;
  padding: 9px 15px;
  border-radius: 13px;
  color: white;
  background: linear-gradient(135deg, #f00070, #db005f);
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(219,0,95,.28);
}
.card-body { padding: 24px 24px 26px; }
.card-title { margin: 0 0 8px; font-size: 1.26rem; letter-spacing: -.025em; }
.card-description {
  min-height: 66px;
  margin: 0;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: .94rem;
  line-height: 1.52;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0;
  color: var(--muted);
  font-size: .92rem;
}
.rating { color: var(--gold); font-weight: 900; }
.downloads { display: inline-flex; align-items: center; gap: 7px; }
.audio-button {
  width: 100%;
  min-height: 49px;
  border: 2px solid var(--pink);
  border-radius: 12px;
  background: color-mix(in srgb, var(--pink-dark) 72%, transparent);
  color: #ff4a9c;
  font-weight: 900;
  cursor: pointer;
}
.audio-button[data-playing="true"] { animation: audioGlow 1s ease-in-out infinite alternate; }
@keyframes audioGlow {
  from { box-shadow: 0 0 0 rgba(255,0,119,0); }
  to { box-shadow: 0 0 26px rgba(255,0,119,.30); }
}
.share-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 0;
}
.share {
  min-height: 39px;
  border: 0;
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}
.facebook { background: var(--blue); }
.instagram { background: linear-gradient(90deg, #e70077, #fa0070); }
.whatsapp { background: var(--green); }
.buy-button {
  width: 100%;
  min-height: 43px;
  border: 0;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(90deg, #16cbe8, #0edcf7);
  color: #001014;
  font-weight: 950;
  cursor: pointer;
  text-decoration: none;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.info-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}
.info-card h3 { margin: 0 0 9px; color: var(--cyan); }
.info-card p { margin: 0; color: var(--muted); font-family: system-ui, sans-serif; }

.faq { display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 18px 20px;
}
.faq summary { cursor: pointer; font-weight: 900; }
.faq p { color: var(--muted); font-family: system-ui, sans-serif; }

.site-footer {
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-soft) 75%, transparent);
}
.footer-inner {
  width: min(1505px, calc(100% - 32px));
  margin: auto;
  min-height: 115px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: .9rem;
}
.footer-inner a { color: var(--cyan); text-decoration: none; }

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 250;
  max-width: min(420px, calc(100% - 40px));
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
  transform: translateY(140%);
  opacity: 0;
  transition: .25s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,.70);
}
.modal.open { display: grid; }
.modal-panel {
  width: min(470px, 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  padding: 26px;
  box-shadow: var(--shadow);
}
.modal-panel h2 { margin-top: 0; }
.modal-panel p { color: var(--muted); font-family: system-ui, sans-serif; }
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; }
.btn-neutral { background: var(--surface-2); color: var(--text); border: 1px solid var(--line); }

@media (max-width: 1120px) {
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav { gap: 15px; }
  .nav .nav-secondary { display: none; }
}
@media (max-width: 820px) {
  .header-inner { min-height: 68px; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 1px);
    display: none;
    margin: 0;
    padding: 17px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 0 0 15px 15px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav .nav-secondary { display: block; }
  .header-actions .btn-login { display: none; }
  .section-heading { align-items: start; flex-direction: column; }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 26px; }
  .hero-content { border-radius: 16px; }
  .card-description { min-height: auto; }
  .footer-inner { padding: 25px 0; flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}


.play-button {
  width: 100%;
  min-height: 46px;
  margin-bottom: 10px;
  border: 1px solid color-mix(in srgb, var(--gold) 75%, transparent);
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(90deg, #ffc518, #ff8a00);
  color: #171000;
  font-weight: 950;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(255,158,0,.18);
  transition: transform .16s ease, filter .16s ease;
}
.play-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.download-button {
  width: 100%; min-height: 43px; margin-bottom: 10px; border: 1px solid var(--line);
  border-radius: 11px; display: grid; place-items: center; background: var(--surface-2);
  color: var(--text); font-weight: 950; text-decoration: none;
}
.protected-action { position: relative; }

/* VINIGAMER-YOUTUBE-BLOG:INICIO */
.nav-youtube,
.hero-youtube {
  background: #ff0033;
  color: #ffffff !important;
  border-color: #ff335c;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(255, 0, 51, 0.24);
}
.nav-youtube:hover,
.hero-youtube:hover {
  background: #d9002b;
  border-color: #ff5c7b;
  color: #ffffff !important;
  transform: translateY(-1px);
}
.vinigamer-blog-callout {
  margin-block: 2rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid rgba(246, 200, 76, .36);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(246, 200, 76, .13), rgba(20, 20, 26, .86));
}
.vinigamer-blog-callout h2 { margin-top: .35rem; }
.vinigamer-blog-callout p { max-width: 720px; }
.vinigamer-blog-callout .btn-blog {
  display: inline-flex;
  margin-top: .75rem;
  align-items: center;
  justify-content: center;
  background: #f6c84c;
  color: #151515 !important;
  border-color: #f6c84c;
  font-weight: 900;
}
@media (max-width: 760px) {
  .nav-youtube,
  .hero-youtube,
  .vinigamer-blog-callout .btn-blog { width: 100%; text-align: center; }
}
/* VINIGAMER-YOUTUBE-BLOG:FIM */

/* VINIGAMER: CORRECAO DO REFLEXO DO PRECO */
.cover-wrap .price {
  -webkit-box-reflect: none !important;
  box-reflect: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 106px;
  min-height: 48px;
  padding: 0 16px;
  line-height: 1 !important;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 16px;
}

.cover-wrap .price::before,
.cover-wrap .price::after {
  -webkit-box-reflect: none !important;
  box-reflect: none !important;
}
/* FIM: CORRECAO DO REFLEXO DO PRECO */
