@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Montserrat:wght@600;700&display=swap');

:root {
  --nova-font-body: 'Poppins', system-ui, -apple-system, sans-serif;
  --nova-font-display: 'Montserrat', system-ui, -apple-system, sans-serif;
  --nova-bg: #1a2a44; /* Deep navy */
  --nova-bg-elev: #2c3e66; /* Lighter navy */
  --nova-card: #223355; /* Card background */
  --nova-card-highlight: #2a4066; /* Highlighted card */
  --nova-border: #3b4d77; /* Border */
  --nova-text: #f4f7fa; /* Primary text */
  --nova-muted: #b0bcd5; /* Muted text */
  --nova-accent: #ff6f61; /* Coral */
  --nova-accent-2: #f4c430; /* Gold */
  --nova-success: #34c759; /* Green */
  --nova-radius: 12px;
  --nova-radius-lg: 16px;
  --nova-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  --nova-maxw: 1280px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--nova-text);
  background: linear-gradient(180deg, #1a2a44 0%, #2c3e66 100%) fixed;
  font-family: var(--nova-font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

main{
    background-image: url(../images/bg.webp);
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    z-index: 0;
    padding: 20px 0;
  }

  main:after{
    content: '';
    background-color: rgba( 0,0,0, 0.9);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
  }

.nova-skiplink {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.nova-skiplink:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  background: var(--nova-accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 111, 97, 0.3);
  z-index: 1000;
}

:focus-visible {
  outline: 3px solid var(--nova-accent-2);
  outline-offset: 3px;
  border-radius: 6px;
}

.nova-container { width: min(90%, var(--nova-maxw)); margin: 0 auto; }
.nova-shell { min-height: 100dvh; display: flex; flex-direction: column; }

.nova-header {
  background: rgba(28, 42, 68, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--nova-border);
}
.nova-header__bar { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.nova-logo { display: flex; align-items: center; gap: 14px; }
.nova-logo__img { height: 48px; width: auto; filter: drop-shadow(0 3px 8px rgba(0,0,0,.4)); }
.nova-nav { display: flex; align-items: center; }
.nova-nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--nova-text);
  font-size: 16px;
  cursor: pointer;
}
.nova-nav__list {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nova-nav__list a {
  color: var(--nova-muted);
  font-weight: 600;
  transition: color 0.3s ease;
}
.nova-nav__list a:hover { color: var(--nova-text); }

.nova-hero { padding: 32px 0 12px; text-align: center; }
.nova-hero__title {
  font-family: var(--nova-font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  background: linear-gradient(90deg, var(--nova-accent), var(--nova-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 10px auto 14px;
}
.nova-hero__lead {
  max-width: 960px;
  margin: 0 auto;
  color: var(--nova-muted);
  font-size: clamp(16px, 2.5vw, 22px);
}

.nova-grid {
  display: grid;
  justify-content: center;
  gap: 20px;
  padding: 20px 0 40px;
}
.nova-grid--reviews, .nova-grid--payments, .nova-grid--games {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.nova-card {
  background: var(--nova-card);
  border-radius: var(--nova-radius-lg);
  border: 1px solid var(--nova-border);
  box-shadow: var(--nova-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nova-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}
.nova-card--highlight { background: var(--nova-card-highlight); }
.nova-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
}
.nova-brand { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.nova-brand__img { height: 52px; width: auto; }
.nova-brand__name { font-weight: 700; font-size: 20px; }
.nova-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.nova-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 111, 97, 0.15);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--nova-accent);
  font-weight: 700;
}
.nova-votes { font-size: 14px; color: var(--nova-muted); }
.nova-card__body { padding: 16px; }
.nova-card__desc { color: var(--nova-muted); font-size: 15px; }
.nova-list { display: grid; gap: 10px; padding: 0; }
.nova-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 10px;
}
.nova-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--nova-success);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
}
.nova-item__text { font-size: 15px; }
.nova-cta { padding: 14px 16px; text-align: center; }
.nova-btn {
  background: linear-gradient(90deg, var(--nova-accent), var(--nova-accent-2));
  color: #1a2a44;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 10px;
  display: inline-flex;
  width: 100%;
  justify-content: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.nova-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.nova-btn--highlight { box-shadow: 0 0 20px rgba(255, 111, 97, 0.4); }

.nova-section__title {
  font-family: var(--nova-font-display);
  font-size: clamp(24px, 3.5vw, 32px);
  background: linear-gradient(90deg, var(--nova-accent-2), var(--nova-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 20px 0 12px;
}
.nova-prose { padding: 20px; border-radius: var(--nova-radius-lg); background: rgba(255,255,255,0.02); }
.nova-prose h3 { font-weight: 700; color: var(--nova-text); margin: 16px 0 10px; }
.nova-prose p, .nova-prose ul { color: var(--nova-muted); margin: 10px 0; }
.nova-review { background: var(--nova-card); padding: 16px; border-radius: var(--nova-radius); }
.nova-review__text { font-style: italic; }
.nova-payment, .nova-game {
  background: var(--nova-card);
  padding: 12px;
  text-align: center;
  border-radius: var(--nova-radius);
}

.nova-footer { background: rgba(28, 42, 68, 0.95); border-top: 1px solid var(--nova-border); }
.nova-footer__inner { padding: 32px 0; }
.nova-footer__cols { display: grid; gap: 24px; }
@media (min-width: 768px) { .nova-footer__cols { grid-template-columns: 280px 1fr; gap: 48px; } }
.nova-footer__badges { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.nova-footer__badge { height: 60px; width: auto; opacity: 0.9; transition: opacity 0.3s ease; }
.nova-footer__badge:hover { opacity: 1; }
.nova-footer__age-icon { width: 60px; height: 60px; }
.nova-list--links { list-style: none; padding: 0; display: grid; gap: 12px; }
.nova-list--links a:hover { color: var(--nova-text); }
.nova-sep { height: 1px; background: var(--nova-border); margin: 16px 0; }
.nova-copy { text-align: center; color: var(--nova-muted); font-size: 15px; padding: 16px 0; }
.nova-hidden { display: none; }
.nova-muted { color: var(--nova-muted); }
.nova-pad { padding: 12px 0; }

@media (max-width: 768px) {
  .nova-nav__list { display: none; }
  .nova-nav__toggle { display: block; }
  .nova-nav__list.active { display: flex; flex-direction: column; background: var(--nova-bg-elev); padding: 16px; position: absolute; top: 100%; right: 0; width: 200px; }
  .nova-brand__img { height: 44px; }
  .nova-btn { font-size: 15px; }
}
@media (max-width: 480px) {
  .nova-grid { grid-template-columns: 1fr; }
  .nova-footer__badge { height: 40px; }
  .nova-footer__age-icon { width: 40px; height: 40px; }
}

@media print {
  .nova-header, .nova-footer, .nova-cta { display: none !important; }
  .nova-card { box-shadow: none; border: 1px solid #ccc; }
}