@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;600;700&family=Oswald:wght@600;700&display=swap');
:root {
  --pt-font-body: 'Roboto', system-ui, -apple-system, sans-serif;
  --pt-font-display: 'Oswald', system-ui, -apple-system, sans-serif;
  --pt-bg: #002b36; /* Dark teal */
  --pt-bg-elev: #073642; /* Lighter teal */
  --pt-card: #00404d; /* Card bg */
  --pt-card-highlight: #005c70; /* Highlight card */
  --pt-border: #2aa198; /* Teal border */
  --pt-text: #fdf6e3; /* Light text */
  --pt-muted: #93a1a1; /* Muted */
  --pt-accent: #b58900; /* Gold */
  --pt-accent-2: #cb4b16; /* Orange */
  --pt-success: #859900; /* Olive */
  --pt-radius: 8px;
  --pt-radius-lg: 12px;
  --pt-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  --pt-maxw: 1200px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--pt-text);
  background: linear-gradient(180deg, #002b36 0%, #073642 100%) fixed;
  font-family: var(--pt-font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
main {
  background-image: url(../images/bg-pt.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.95);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
.pt-skiplink {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.pt-skiplink:focus {
  left: 15px;
  top: 15px;
  width: auto;
  height: auto;
  background: var(--pt-accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  outline: none;
  box-shadow: 0 0 0 3px rgba(181, 137, 0, 0.4);
  z-index: 1000;
}
:focus-visible {
  outline: 2px solid var(--pt-accent-2);
  outline-offset: 2px;
  border-radius: 4px;
}
.pt-container { width: min(95%, var(--pt-maxw)); margin: 0 auto; }
.pt-shell { min-height: 100dvh; display: flex; flex-direction: column; }
.pt-header {
  background: rgba(7, 54, 66, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pt-border);
}
.pt-header__bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.pt-logo { display: flex; align-items: center; gap: 12px; }
.pt-logo__img { height: 50px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.3)); }
.pt-nav { display: flex; align-items: center; }
.pt-nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--pt-text);
  font-size: 18px;
  cursor: pointer;
}
.pt-nav__list {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pt-nav__list a {
  color: var(--pt-muted);
  font-weight: 600;
  transition: color 0.2s ease;
}
.pt-nav__list a:hover { color: var(--pt-text); }
.pt-hero { padding: 40px 0 20px; text-align: center; }
.pt-hero__title {
  font-family: var(--pt-font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 48px);
  background: linear-gradient(90deg, var(--pt-accent), var(--pt-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 12px auto 16px;
}
.pt-hero__lead {
  max-width: 800px;
  margin: 0 auto;
  color: var(--pt-muted);
  font-size: clamp(14px, 2vw, 20px);
}
.pt-grid {
  display: grid;
  gap: 24px;
  padding: 24px 0 48px;
  justify-content: center;
}
.pt-grid--reviews, .pt-grid--payments, .pt-grid--games {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.pt-card {
  background: var(--pt-card);
  border-radius: var(--pt-radius-lg);
  border: 1px solid var(--pt-border);
  box-shadow: var(--pt-shadow);
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pt-card:hover {
  opacity: 0.9;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.pt-card--highlight { background: var(--pt-card-highlight); }
.pt-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap;
}
.pt-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.pt-brand__img { height: 60px; width: auto; }
.pt-brand__name { font-weight: 700; font-size: 22px; }
.pt-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.pt-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(181, 137, 0, 0.1);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--pt-accent);
  font-weight: 700;
}
.pt-votes { font-size: 13px; color: var(--pt-muted); }
.pt-card__body { padding: 20px; flex-grow: 1; }
.pt-card__desc { color: var(--pt-muted); font-size: 14px; margin-bottom: 12px; }
.pt-list { display: grid; gap: 12px; padding: 0; list-style: none; margin: 0; }
.pt-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 8px;
}
.pt-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pt-success);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
}
.pt-item__text { font-size: 14px; }
.pt-cta { padding: 16px 20px; text-align: center; }
.pt-btn {
  background: linear-gradient(90deg, var(--pt-accent), var(--pt-accent-2));
  color: #002b36;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  display: inline-flex;
  width: 100%;
  justify-content: center;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.pt-btn:hover {
  opacity: 0.95;
  filter: brightness(1.05);
}
.pt-btn--highlight { box-shadow: 0 0 15px rgba(181, 137, 0, 0.3); }
.pt-section__title {
  font-family: var(--pt-font-display);
  font-size: clamp(22px, 3vw, 28px);
  background: linear-gradient(90deg, var(--pt-accent-2), var(--pt-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 24px 0 14px;
}
.pt-prose { padding: 24px; border-radius: var(--pt-radius-lg); background: rgba(255,255,255,0.03); }
.pt-prose h3 { font-weight: 700; color: var(--pt-text); margin: 14px 0 8px; }
.pt-prose p, .pt-prose ul { color: var(--pt-muted); margin: 8px 0; }
.pt-review { background: var(--pt-card); padding: 20px; border-radius: var(--pt-radius); }
.pt-review__text { font-style: italic; }
.pt-payment, .pt-game {
  background: var(--pt-card);
  padding: 10px;
  text-align: center;
  border-radius: var(--pt-radius);
}
.pt-footer { background: rgba(7, 54, 66, 0.9); border-top: 1px solid var(--pt-border); }
.pt-footer__inner { padding: 40px 0; }
.pt-footer__cols { display: grid; gap: 28px; }
@media (min-width: 768px) { .pt-footer__cols { grid-template-columns: 300px 1fr; gap: 56px; } }
.pt-footer__badges { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.pt-footer__badge { height: 50px; width: auto; opacity: 0.85; transition: opacity 0.2s ease; }
.pt-footer__badge:hover { opacity: 1; }
.pt-footer__age-icon { width: 50px; height: 50px; }
.pt-list--links { list-style: none; padding: 0; display: grid; gap: 10px; }
.pt-list--links a:hover { color: var(--pt-text); }
.pt-sep { height: 1px; background: var(--pt-border); margin: 20px 0; }
.pt-copy { text-align: center; color: var(--pt-muted); font-size: 14px; padding: 20px 0; }
.pt-muted { color: var(--pt-muted); }
.pt-pad { padding: 10px 0; }
.pt-faq__item { margin-bottom: 16px; }
.pt-faq__item summary { cursor: pointer; font-weight: 600; }
@media (max-width: 768px) {
  .pt-nav__list { display: none; }
  .pt-nav__toggle { display: block; }
  .pt-nav__list.active { display: flex; flex-direction: column; background: var(--pt-bg-elev); padding: 20px; position: absolute; top: 100%; right: 0; width: 220px; }
  .pt-brand__img { height: 48px; }
  .pt-btn { font-size: 14px; }
  .pt-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .pt-footer__badge { height: 35px; }
  .pt-footer__age-icon { width: 35px; height: 35px; }
}
@media print {
  .pt-header, .pt-footer, .pt-cta { display: none !important; }
  .pt-card { box-shadow: none; border: 1px solid #ddd; }
}