@import url('https://fonts.googleapis.com/css2?family=Josefin+Slab:wght@400;600&family=Coustard:wght@400&display=swap');

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

:root {
  --pulse-bg: #0d0206;
  --pulse-surface: #1a0410;
  --pulse-accent: #a21caf;
  --pulse-light: #fae8ff;
  --pulse-muted: #9ca3af;
  --pulse-text: #fdf4ff;
  --pulse-radius: 8px;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--pulse-bg);
  color: var(--pulse-text);
  font-family: 'Coustard', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.75;
}

h1, h2, h3, h4 {
  font-family: 'Josefin Slab', 'Georgia', serif;
  font-weight: 600;
  color: var(--pulse-light);
  line-height: 1.25;
}

a {
  color: var(--pulse-accent);
  text-decoration: none;
}

a:hover {
  color: var(--pulse-light);
  text-decoration: underline;
}

img { max-width: 100%; display: block; }

/* ── HEADER ── */

.pulse-header {
  background: var(--pulse-surface);
  border-bottom: 2px solid var(--pulse-accent);
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.pulse-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.pulse-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.pulse-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--pulse-accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Josefin Slab', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -0.5px;
}

.pulse-logo-text {
  font-family: 'Josefin Slab', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--pulse-light);
}

.pulse-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.pulse-nav a {
  color: var(--pulse-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.pulse-nav a:hover {
  color: var(--pulse-light);
  text-decoration: none;
}

.pulse-header-cta {
  background: var(--pulse-accent);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: var(--pulse-radius);
  font-family: 'Josefin Slab', serif;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: opacity 0.2s;
  text-decoration: none;
}

.pulse-header-cta:hover {
  opacity: 0.85;
  color: #fff;
  text-decoration: none;
}

/* ── HERO ── */

.pulse-hero {
  background: linear-gradient(135deg, var(--pulse-surface) 0%, #2a0420 60%, var(--pulse-bg) 100%);
  padding: 4.5rem 1.5rem 3.5rem;
  text-align: center;
  border-bottom: 1px solid #3b0a2e;
}

.pulse-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.pulse-hero-eyebrow {
  display: inline-block;
  background: var(--pulse-accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  font-family: 'Josefin Slab', serif;
}

.pulse-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  margin-bottom: 1rem;
  color: var(--pulse-light);
}

.pulse-hero-sub {
  font-size: 1.1rem;
  color: var(--pulse-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pulse-badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.pulse-badge {
  background: var(--pulse-surface);
  border: 1px solid var(--pulse-accent);
  color: var(--pulse-light);
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-family: 'Josefin Slab', serif;
  font-weight: 400;
}

.pulse-hero-cta {
  display: inline-block;
  background: var(--pulse-accent);
  color: #fff;
  font-family: 'Josefin Slab', serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.85rem 2.5rem;
  border-radius: var(--pulse-radius);
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
}

.pulse-hero-cta:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

/* ── SECTION BASE ── */

.pulse-section {
  padding: 3.5rem 1.5rem;
  border-bottom: 1px solid #2a0420;
}

.pulse-section:nth-child(even) {
  background: var(--pulse-surface);
}

.pulse-container {
  max-width: 1100px;
  margin: 0 auto;
}

.pulse-section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
  color: var(--pulse-light);
}

.pulse-section-lead {
  color: var(--pulse-muted);
  margin-bottom: 2rem;
  max-width: 680px;
}

/* ── ABOUT ── */

.pulse-about-grid {
  display: grid;
  gap: 1.25rem;
}

.pulse-about-grid p {
  color: var(--pulse-text);
  line-height: 1.8;
}

/* ── GAMES ── */

.pulse-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
}

.pulse-game-card {
  background: var(--pulse-bg);
  border: 1px solid #3b0a2e;
  border-radius: var(--pulse-radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.15s;
}

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

.pulse-game-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.pulse-game-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.pulse-game-card p {
  font-size: 0.85rem;
  color: var(--pulse-muted);
}

/* ── BONUS ── */

.pulse-bonus-box {
  background: var(--pulse-bg);
  border: 2px solid var(--pulse-accent);
  border-radius: var(--pulse-radius);
  padding: 2rem 1.75rem;
  max-width: 700px;
}

.pulse-bonus-headline {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--pulse-accent);
  margin-bottom: 1rem;
}

.pulse-bonus-steps {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.pulse-bonus-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--pulse-text);
}

.pulse-bonus-num {
  background: var(--pulse-accent);
  color: #fff;
  font-family: 'Josefin Slab', serif;
  font-weight: 600;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.pulse-bonus-note {
  font-size: 0.82rem;
  color: var(--pulse-muted);
  margin-bottom: 1.5rem;
}

.pulse-btn {
  display: inline-block;
  background: var(--pulse-accent);
  color: #fff;
  font-family: 'Josefin Slab', serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: var(--pulse-radius);
  text-decoration: none;
  transition: opacity 0.2s;
}

.pulse-btn:hover {
  opacity: 0.85;
  color: #fff;
  text-decoration: none;
}

/* ── CASHIER ── */

.pulse-table-wrap {
  overflow-x: auto;
  border-radius: var(--pulse-radius);
  border: 1px solid #3b0a2e;
}

.pulse-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.pulse-table thead {
  background: var(--pulse-accent);
  color: #fff;
}

.pulse-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-family: 'Josefin Slab', serif;
  font-weight: 600;
}

.pulse-table td {
  padding: 0.7rem 1rem;
  border-top: 1px solid #2a0420;
  color: var(--pulse-text);
}

.pulse-table tbody tr:hover {
  background: var(--pulse-surface);
}

.pulse-table-note {
  font-size: 0.82rem;
  color: var(--pulse-muted);
  margin-top: 0.75rem;
}

/* ── VIP ── */

.pulse-vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.pulse-vip-card {
  background: var(--pulse-bg);
  border: 1px solid #3b0a2e;
  border-radius: var(--pulse-radius);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: border-color 0.2s;
}

.pulse-vip-card:hover {
  border-color: var(--pulse-accent);
}

.pulse-vip-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.pulse-vip-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--pulse-light);
}

.pulse-vip-pct {
  font-size: 1.3rem;
  font-family: 'Josefin Slab', serif;
  font-weight: 600;
  color: var(--pulse-accent);
}

/* ── REVIEWS ── */

.pulse-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.pulse-review-card {
  background: var(--pulse-bg);
  border: 1px solid #3b0a2e;
  border-radius: var(--pulse-radius);
  padding: 1.5rem 1.25rem;
}

.pulse-review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.pulse-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pulse-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Josefin Slab', serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.pulse-review-meta h4 {
  font-size: 0.95rem;
  color: var(--pulse-light);
  margin-bottom: 0.1rem;
}

.pulse-review-meta span {
  font-size: 0.78rem;
  color: var(--pulse-muted);
}

.pulse-stars {
  color: var(--pulse-accent);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.pulse-review-card p {
  font-size: 0.88rem;
  color: var(--pulse-text);
  line-height: 1.65;
}

/* ── FAQ ── */

.pulse-faq-list {
  display: grid;
  gap: 1rem;
  max-width: 820px;
}

.pulse-faq-item {
  background: var(--pulse-bg);
  border: 1px solid #3b0a2e;
  border-radius: var(--pulse-radius);
  padding: 1.25rem 1.5rem;
}

.pulse-faq-item h3 {
  font-size: 1rem;
  color: var(--pulse-accent);
  margin-bottom: 0.5rem;
}

.pulse-faq-item p {
  font-size: 0.9rem;
  color: var(--pulse-text);
  line-height: 1.7;
}

/* ── AUTHOR ── */

.pulse-author-box {
  background: var(--pulse-bg);
  border-left: 4px solid var(--pulse-accent);
  border-radius: 0 var(--pulse-radius) var(--pulse-radius) 0;
  padding: 1.5rem 1.75rem;
  max-width: 760px;
}

.pulse-author-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--pulse-accent);
  font-family: 'Josefin Slab', serif;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.pulse-author-name {
  font-size: 1.05rem;
  font-family: 'Josefin Slab', serif;
  font-weight: 600;
  color: var(--pulse-light);
  margin-bottom: 0.75rem;
}

.pulse-author-box p {
  font-size: 0.9rem;
  color: var(--pulse-text);
  line-height: 1.7;
}

.pulse-author-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pulse-author-tag {
  background: var(--pulse-surface);
  border: 1px solid #3b0a2e;
  color: var(--pulse-muted);
  font-size: 0.78rem;
  padding: 0.2rem 0.65rem;
  border-radius: 12px;
}

/* ── FOOTER ── */

.pulse-footer {
  background: var(--pulse-surface);
  border-top: 2px solid var(--pulse-accent);
  padding: 2.5rem 1.5rem;
}

.pulse-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pulse-footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.pulse-footer-brand h2 {
  font-size: 1.15rem;
  color: var(--pulse-light);
  margin-bottom: 0.25rem;
}

.pulse-footer-brand p {
  font-size: 0.82rem;
  color: var(--pulse-muted);
}

.pulse-footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  list-style: none;
}

.pulse-footer-links a {
  font-size: 0.85rem;
  color: var(--pulse-muted);
}

.pulse-footer-links a:hover {
  color: var(--pulse-light);
}

.pulse-footer-legal {
  font-size: 0.78rem;
  color: var(--pulse-muted);
  line-height: 1.7;
  border-top: 1px solid #2a0420;
  padding-top: 1.25rem;
}

.pulse-age-badge {
  display: inline-block;
  background: var(--pulse-accent);
  color: #fff;
  font-family: 'Josefin Slab', serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* ── UTILITIES ── */

.pulse-divider {
  height: 1px;
  background: #2a0420;
  margin: 1.5rem 0;
}

.pulse-text-accent {
  color: var(--pulse-accent);
}

.pulse-text-muted {
  color: var(--pulse-muted);
}

.pulse-mt-1 { margin-top: 1rem; }
.pulse-mt-2 { margin-top: 2rem; }

/* ── RESPONSIVE ── */

@media (max-width: 768px) {
  .pulse-nav { display: none; }

  .pulse-hero { padding: 3rem 1.25rem 2.5rem; }

  .pulse-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pulse-vip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pulse-reviews-grid {
    grid-template-columns: 1fr;
  }

  .pulse-footer-top {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .pulse-games-grid {
    grid-template-columns: 1fr;
  }

  .pulse-vip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pulse-badge-row {
    gap: 0.5rem;
  }
}
