/* ===== Variables (from youraislopboresme.com) ===== */
:root {
  --color-bg: #FAF9F6;
  --color-text: #333333;
  --color-text-muted: #71717a;
  --color-text-light: #999999;
  --color-primary: #1a1a1a;
  --color-accent: #fde68a;
  --color-border: #e8e6e1;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Comic Neue", cursive;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: 72px;
}

a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 3px;
  transition: color 0.2s;
}

a:hover {
  background-color: var(--color-accent);
}

img {
  max-width: 100%;
  display: block;
}

/* ===== Layout ===== */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  padding: 16px 24px;
  background: #faf9f6eb;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo:hover {
  color: var(--color-primary);
  background: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--color-primary);
  background: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 48px;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-subtitle-line {
  display: block;
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
  font-style: italic;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  white-space: nowrap;
}

.btn:hover {
  background: var(--color-primary);
}

.btn-primary {
  font-size: 0.85rem;
  color: #fff;
  background: var(--color-primary);
  padding: 10px 24px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: #fff;
  background: var(--color-primary);
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* ===== Sections ===== */
.section {
  padding: 64px 0;
  scroll-margin-top: 90px;
}

.section + .section {
  border-top: 1px solid var(--color-border);
}

.section-alt {
  background: var(--color-bg);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.section-title .emoji {
  margin-right: 8px;
}

.section-intro {
  color: #4a4a4a;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== Content Block ===== */
.content-block p {
  color: #4a4a4a;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block strong {
  color: var(--color-text);
  font-weight: 600;
}

/* ===== Highlight ===== */
.highlight {
  background: linear-gradient(to top, var(--color-accent) 40%, transparent 40%);
  padding: 0 2px;
  font-weight: 600;
}

/* ===== Card ===== */
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px;
  margin-top: 24px;
  transition: box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* ===== Tags ===== */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}

.tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  background: #f3f0eb;
  color: var(--color-text-muted);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ===== Quote ===== */
.quote {
  border-left: 4px solid var(--color-primary);
  padding: 20px 24px;
  margin: 24px 0;
  background: #fff;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #4a4a4a;
  font-size: 1.05rem;
  line-height: 1.6;
}

.quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ===== Timeline ===== */
.timeline {
  margin-top: 28px;
}

.timeline-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  margin-top: 28px;
}

.timeline-items {
  list-style: none;
  margin-top: 24px;
}

.timeline-item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 20px;
  color: #4a4a4a;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 22px;
  width: 2px;
  height: calc(100% + 8px);
  background: var(--color-border);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-year {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
}

.timeline-text {
  color: #4a4a4a;
}

/* ===== Reasons Grid ===== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.reason-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px;
  transition: box-shadow 0.3s;
}

.reason-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.reason-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}

.reason-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.reason-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== Game Launch Section ===== */
.section-game {
  padding: 48px 0;
}

.section-game .section-title {
  text-align: center;
}

.game-intro {
  text-align: center;
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.game-launch-card {
  display: block;
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  text-align: center;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.2s;
  text-decoration: none;
}

.game-launch-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.game-launch-content {
  position: relative;
}

.game-launch-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  animation: floaty 3s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.game-launch-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.game-launch-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.6;
}

.game-launch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-primary);
  padding: 10px 24px;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.game-launch-card:hover .game-launch-btn {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.game-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* ===== Steps ===== */
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.3s;
}

.step-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.step-card p {
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Hall of Shame ===== */
.shame-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.shame-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}

.shame-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.shame-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.shame-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.shame-card p {
  color: #4a4a4a;
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 16px;
  line-height: 1.65;
}

.shame-tagline {
  display: inline-block;
  font-family: var(--font-heading);
  padding: 4px 12px;
  background: #f3f0eb;
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 700;
  align-self: flex-start;
}

/* ===== FAQ ===== */
.faq-subheading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.faq-list {
  max-width: 100%;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-text-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 12px 0 20px;
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
  text-align: center;
}

.footer-share h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.footer-share p {
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.footer-quote {
  margin: 32px auto;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 420px;
  border: none;
  padding: 0;
  font-style: normal;
}

.footer-bottom {
  margin-top: 24px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ===== Responsive — Tablet landscape & small desktop (≤1024px) ===== */
@media (max-width: 1024px) {
  .container {
    max-width: 720px;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 72px 24px 40px;
  }

  .shame-card {
    padding: 24px;
  }

  .reason-card {
    padding: 20px;
  }
}

/* ===== Responsive — Tablet portrait (≤768px) ===== */
@media (max-width: 768px) {
  html {
    font-size: 17px;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 48px 0;
  }

  .hero {
    min-height: 85vh;
    padding: 64px 20px 36px;
  }

  .hero-tagline {
    max-width: 480px;
    font-size: 1rem;
  }

  .reasons-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .reason-card p {
    font-size: 0.85rem;
  }

  .shame-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .shame-card p {
    font-size: 0.85rem;
  }

  .step-card {
    padding: 24px;
    gap: 16px;
  }

  .card {
    padding: 28px;
  }

  .faq-question {
    font-size: 1rem;
    padding: 14px 0;
  }

  .footer-share h2 {
    font-size: 1.3rem;
  }
}

/* ===== Responsive — Mobile (≤600px) ===== */
@media (max-width: 600px) {
  html {
    font-size: 16px;
  }

  body {
    padding-top: 60px;
  }

  .navbar {
    padding: 12px 16px;
  }

  .nav-container {
    align-items: center;
    gap: 10px;
  }

  .nav-logo {
    font-size: 0.9rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background: #faf9f6f0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 80vh;
    padding: 48px 16px 28px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    margin-bottom: 12px;
  }

  .hero-tagline {
    font-size: 0.95rem;
    max-width: 360px;
    margin-bottom: 24px;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .section-intro {
    font-size: 0.95rem;
  }

  .content-block p {
    font-size: 0.95rem;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .reason-card {
    padding: 20px;
  }

  .reason-card h4 {
    font-size: 0.95rem;
  }

  .reason-card p {
    font-size: 0.85rem;
  }

  .shame-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .shame-card {
    padding: 20px;
  }

  .shame-card h3 {
    font-size: 0.95rem;
  }

  .shame-card p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .step-card {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }

  .step-card h3 {
    font-size: 1rem;
  }

  .step-card p {
    font-size: 0.9rem;
  }

  .card {
    padding: 20px;
    border-radius: 12px;
  }

  .card p {
    font-size: 0.95rem;
  }

  .quote {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .tag {
    font-size: 0.75rem;
    padding: 3px 10px;
  }

  .btn-primary {
    padding: 12px 28px;
    font-size: 0.95rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 14px 0;
  }

  .faq-icon {
    font-size: 1.2rem;
    margin-left: 12px;
  }

  .faq-answer p {
    font-size: 0.9rem;
    padding: 8px 0 16px;
  }

  .footer {
    padding: 32px 0;
  }

  .footer-share h2 {
    font-size: 1.2rem;
  }

  .footer-share p {
    font-size: 0.9rem;
  }

  .footer-quote {
    font-size: 0.9rem;
    margin: 24px auto;
  }

  .timeline-year {
    font-size: 0.95rem;
  }

  .timeline-text {
    font-size: 0.9rem;
  }
}

/* ===== Responsive — Small mobile (≤400px) ===== */
@media (max-width: 400px) {
  html {
    font-size: 15px;
  }

  .hero {
    min-height: 75vh;
    padding: 40px 12px 24px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-tagline {
    font-size: 0.9rem;
    max-width: 300px;
  }

  .container {
    padding: 0 12px;
  }

  .section {
    padding: 32px 0;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .navbar {
    padding: 10px 12px;
  }

  .nav-logo {
    font-size: 0.82rem;
  }

  .btn-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .card {
    padding: 16px;
  }

  .step-card {
    padding: 16px;
  }

  .reason-card {
    padding: 16px;
  }

  .shame-card {
    padding: 16px;
  }
}
