*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ps-red: #2a23c7;
  --ps-red-dark: #19148e;
  --ps-red-glow: rgba(42, 35, 199, 0.32);
  --bg-dark: #0c1311;
  --bg-card: #1b2825;
  --bg-card-hover: #233530;
  --bg-section-alt: #121a18;
  --bg-footer: #0a0e0d;
  --border: rgba(231, 237, 236, 0.10);
  --text: #e7edec;
  --text-muted: #a0b4af;
  --accent-gold: #e9b43e;
  --gradient-hero: linear-gradient(225deg, #0c1311 0%, #171628 50%, #191611 100%);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --chip-blue: #8bbd37;
  --chip-green: #a03a35;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Rubik', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Header ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 19, 17, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo-star {
  width: 36px;
  height: 36px;
  background: var(--ps-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo-text {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo-text span { color: var(--ps-red); }

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--ps-red);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--ps-red-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  padding: 100px 24px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--ps-red-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42, 35, 199, 0.12);
  border: 1px solid rgba(42, 35, 199, 0.30);
  color: var(--ps-red);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--ps-red);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}

.stat-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold);
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px var(--ps-red-glow);
  transform: perspective(800px) rotateY(-8deg);
}

.phone-screen {
  background: linear-gradient(160deg, #1a2235, #0a0e17);
  border-radius: 22px;
  padding: 24px 16px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.card-stack {
  display: flex;
  gap: -8px;
}

.poker-card {
  width: 56px;
  height: 80px;
  background: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.poker-card.red { color: var(--ps-red); }
.poker-card.black { color: #1a1a1a; }
.poker-card:nth-child(2) { transform: translateY(-12px); }
.poker-card:nth-child(3) { transform: translateY(-24px); }

.chip-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.chip {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px dashed rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.chip.red { background: var(--ps-red); }
.chip.blue { background: var(--chip-blue); }
.chip.green { background: var(--chip-green); }

.floating-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.floating-badge.top-right {
  top: 20px;
  right: -20px;
  animation: float 3s ease-in-out infinite;
}

.floating-badge.bottom-left {
  bottom: 40px;
  left: -30px;
  animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--ps-red);
  color: #fff;
  box-shadow: 0 4px 20px var(--ps-red-glow);
}

.btn-primary:hover {
  background: var(--ps-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--ps-red-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--bg-card);
  border-color: rgba(255,255,255,0.2);
}

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Sections ── */
section { padding: 100px 24px; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  color: var(--ps-red);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── Download Cards ── */
#download { background: var(--bg-dark); }

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

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ps-red);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.download-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(42, 35, 199, 0.30);
  transform: translateY(-4px);
}

.download-card:hover::before { transform: scaleX(1); }

.platform-icon {
  width: 52px;
  height: 52px;
  background: rgba(42, 35, 199, 0.10);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.download-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.download-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.download-card .btn {
  width: 100%;
  justify-content: center;
}

.version-tag {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ── Features ── */
#features { background: var(--bg-section-alt); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: rgba(42, 35, 199, 0.25); }

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── Games ── */
#games { background: var(--bg-dark); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.game-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.2s;
  cursor: default;
}

.game-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(42, 35, 199, 0.20);
}

.game-item .game-icon { font-size: 2rem; margin-bottom: 12px; }
.game-item h4 { font-size: 0.95rem; font-weight: 600; }
.game-item p { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }

/* ── News ── */
#news { background: var(--bg-section-alt); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(42, 35, 199, 0.30);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.news-image-link {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.news-card:hover .news-image {
  transform: scale(1.06);
}

.news-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ps-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.news-body {
  padding: 20px 22px 24px;
}

.news-date {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.news-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 10px;
}

.news-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.news-title a:hover {
  color: var(--ps-red);
}

.news-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Steps ── */
#steps {
  background: linear-gradient(180deg, var(--bg-section-alt), var(--bg-dark));
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.step-item {
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--ps-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}

.step-item h4 { font-weight: 700; margin-bottom: 8px; }
.step-item p { color: var(--text-muted); font-size: 0.88rem; }

/* ── Trust ── */
#trust { background: var(--bg-dark); }

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

.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(22, 163, 74, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.trust-item h4 { font-weight: 600; margin-bottom: 4px; font-size: 0.95rem; }
.trust-item p { color: var(--text-muted); font-size: 0.85rem; }

/* ── FAQ ── */
#faq { background: var(--bg-section-alt); }

.faq-list { max-width: 760px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--ps-red);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 320px;
  padding-bottom: 20px;
}

/* ── About ── */
#about { background: var(--bg-dark); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.about-block + .about-block {
  margin-top: 32px;
}

.about-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 3px solid var(--ps-red);
}

.about-block p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ps-red);
  font-weight: 700;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: border-color 0.2s;
}

.about-card:hover {
  border-color: rgba(42, 35, 199, 0.25);
}

.about-card-accent {
  border-color: rgba(42, 35, 199, 0.35);
  background: linear-gradient(135deg, rgba(42, 35, 199, 0.08), var(--bg-card));
}

.about-card-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.about-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.seo-keywords {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.seo-keywords-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.seo-keywords-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-keywords-list a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.seo-keywords-list a:hover {
  color: var(--text);
  border-color: rgba(42, 35, 199, 0.40);
  background: var(--bg-card-hover);
}

/* ── CTA Banner ── */
.cta-banner {
  margin: 0 24px 80px;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, var(--ps-red) 0%, #19148e 100%);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '♠ ♥ ♦ ♣';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  opacity: 0.06;
  white-space: nowrap;
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  opacity: 0.85;
  margin-bottom: 28px;
  position: relative;
}

.cta-banner .btn {
  background: #fff;
  color: var(--ps-red);
  position: relative;
}

.cta-banner .btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* ── Footer ── */
footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-tagline {
  margin-top: 14px;
  color: var(--ps-red);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-desc {
  margin-top: 14px;
  max-width: 360px;
}

.footer-note {
  margin-top: 14px;
  max-width: 360px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid rgba(42, 35, 199, 0.50);
  border-radius: 0 8px 8px 0;
  font-size: 0.82rem;
}

.footer-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 20px;
  max-width: 360px;
}

.footer-highlights li {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-highlights strong {
  color: var(--accent-gold);
  font-weight: 700;
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-text {
  flex: 1;
  min-width: 260px;
}

.footer-bottom-text p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.footer-bottom-text p + p {
  margin-top: 8px;
}

.footer-disclaimer a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.footer-disclaimer a:hover {
  color: var(--text);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  nav ul { display: none; }
  nav ul.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(12, 19, 17, 0.97);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .menu-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 36px; }
  .btn-group { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; }
  .about-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .news-grid { grid-template-columns: 1fr; }
  .about-sidebar { grid-template-columns: 1fr; }
}

/* ── Variant Theme Overrides ── */
body { background: var(--bg-dark); }
#features, #news, #faq { background: var(--bg-section-alt); }
#steps { background: linear-gradient(180deg, var(--bg-section-alt), var(--bg-dark)); }
footer { background: var(--bg-footer); }
.hero-badge {
  background: rgba(42, 35, 199, 0.12);
  border-color: rgba(42, 35, 199, 0.30);
}
.phone-screen { background: linear-gradient(160deg, var(--bg-card-hover), var(--bg-dark)); }
.cta-banner { background: linear-gradient(135deg, var(--ps-red) 0%, var(--ps-red-dark) 100%); }
.platform-icon { background: rgba(42, 35, 199, 0.10); }
.download-card:hover { border-color: rgba(42, 35, 199, 0.30); }
.feature-card:hover { border-color: rgba(42, 35, 199, 0.25); }
.game-item:hover { border-color: rgba(42, 35, 199, 0.20); }
.news-card:hover { border-color: rgba(42, 35, 199, 0.30); }
.about-card:hover { border-color: rgba(42, 35, 199, 0.25); }
.about-card-accent {
  border-color: rgba(42, 35, 199, 0.35);
  background: linear-gradient(135deg, rgba(42, 35, 199, 0.08), var(--bg-card));
}
.seo-keywords-list a:hover {
  border-color: rgba(42, 35, 199, 0.40);
}
.footer-note { border-left-color: rgba(42, 35, 199, 0.50); }
.footer-tagline { color: var(--ps-red); }


body.layout-h header { background: var(--bg-card); backdrop-filter: none; }
body.layout-h .nav-inner { max-width: 100%; padding: 0 40px; }
body.layout-h .hero { min-height: 85vh; padding-top: 80px; }
body.layout-h .faq-list { max-width: 100%; }
body.layout-h .about-layout { grid-template-columns: 1fr; }

body.style-shadow .download-card, body.style-shadow .feature-card, body.style-shadow .news-card { box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
