/* Variables */
:root {
  --teal: #53c7c6;
  --peach: #f6d6a6;
  --coral: #ff6b6b;
  --cream: #fffef9;
  --ink: #1a1a1a;
  --shadow: rgba(0, 0, 0, 0.1);
  --scroll: 0;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scroll Progress Bar */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, var(--coral), var(--teal));
  transform-origin: left;
  transform: scaleX(var(--scroll));
  z-index: 2000;
  transition: transform 0.1s ease-out;
}

/* Navigation */
nav {
  width: 100%;
  z-index: 1000;
  background: rgba(255, 254, 249, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--teal);
  padding: 0.75rem 2rem;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--coral);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--coral);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: var(--teal);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  background: radial-gradient(
      circle at 20% 50%,
      var(--teal) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 80% 80%, var(--peach) 0%, transparent 50%),
    var(--cream);
  position: relative;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out;
}

.highlight {
  color: var(--coral);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: -5px;
  right: -5px;
  height: 15px;
  background: var(--teal);
  opacity: 0.3;
  z-index: -1;
  transform: rotate(-1deg);
}

.punchline {
  color: var(--coral);
  font-size: 0.85em;
  font-style: italic;
  display: inline-block;
  margin-top: 0.5rem;
}

.hero-subtext {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.1rem;
  text-decoration: none;
  border: none;
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer;
  font-family: "Nunito", sans-serif;
}

.btn-primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
  background: var(--cream);
  color: var(--ink);
  border: 3px solid var(--teal);
}

.btn-secondary:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-3px);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem 1rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.stat-number {
  font-weight: 900;
  font-size: 2rem;
  color: var(--coral);
  display: block;
  margin-bottom: 0.25rem;
}

.stat-text {
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 700;
  color: var(--ink);
}

/* Countdown specific styles */
.countdown-stat {
  position: relative;
}

.countdown-stat .stat-number {
  animation: countdownPulse 2s ease-in-out infinite;
}

@keyframes countdownPulse {
  0%, 100% { 
    transform: scale(1); 
  }
  50% { 
    transform: scale(1.1); 
  }
}

.countdown-urgent {
  animation: urgentShake 0.5s ease-in-out infinite;
}

@keyframes urgentShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

.countdown-urgent .stat-number {
  color: var(--coral);
  animation: urgentPulse 1s ease-in-out infinite;
}

@keyframes urgentPulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 1;
  }
  50% { 
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.countdown-live {
  background: linear-gradient(135deg, var(--coral), var(--teal));
  padding: 1rem;
  border-radius: 12px;
  animation: celebrate 1s ease-in-out infinite;
}

.countdown-live .stat-number,
.countdown-live .stat-text {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes celebrate {
  0%, 100% { 
    transform: scale(1) rotate(0deg); 
  }
  50% { 
    transform: scale(1.05) rotate(2deg); 
  }
}

.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.game-preview {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px var(--shadow);
  transform: rotate(3deg);
  transition: transform 0.5s;
}

.game-preview:hover {
  transform: rotate(0deg) scale(1.05);
}

.game-preview img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

.preview-tag {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--coral);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
  animation: pulse 2s ease-in-out infinite;
    text-decoration: none;
  display: inline-block;
}

.preview-tag:hover {
  transform: scale(1.08);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  animation: bounce 2s infinite;
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.5s;
  z-index: 10;
}

.scroll-hint.hidden {
  opacity: 0;
}

@keyframes bounce {
  0%, 100% { 
    transform: translateX(-50%) translateY(0); 
  }
  50% { 
    transform: translateX(-50%) translateY(10px); 
  }
}

/* Section Reveal Animation */
.section-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Games Section */
.games {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 900;
}

.section-header p {
  font-size: 1.2rem;
  opacity: 0.8;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.game-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.game-card:hover {
  transform: translateY(-15px) rotate(-1deg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.game-card.featured::before {
  content: "⭐ FEATURED";
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--coral);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.75rem;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.game-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.game-card:hover .game-image {
  transform: scale(1.1);
}

.game-content {
  padding: 1.5rem;
}

.game-status {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
    text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.game-status:hover {
  transform: translateY(-2px);
}


.status-live {
  background: var(--coral);
  color: white;
}

.status-brewing {
  background: var(--peach);
  color: var(--ink);
}

.game-title {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.game-desc {
  opacity: 0.8;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.game-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.game-link {
  color: var(--coral);
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.game-link:hover {
  gap: 1rem;
}

/* Testimonials - Swipeable on Mobile */
.testimonials {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(246, 214, 166, 0.3) 0%, rgba(255, 107, 107, 0.15) 100%);
}

.testimonials h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  font-weight: 900;
}

.testimonial-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

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

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
  transition: transform 0.3s;
}

.testimonial:hover {
  transform: translateY(-10px);
}

.testimonial-quote {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  opacity: 0.7;
  font-size: 0.9rem;
}

.swipe-indicator {
  display: none;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.5s;
}

/* Story Section */
.story {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--teal) 0%, var(--peach) 100%);
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.story h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 900;
  color: white;
}

.story-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.95;
  color: white;
}

.founders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.polaroid {
  background: white;
  padding: 1rem;
  padding-bottom: 2rem;
  box-shadow: 0 10px 30px var(--shadow);
  transform: rotate(-2deg);
  transition: all 0.3s;
}

.polaroid:nth-child(2) {
  transform: rotate(2deg);
  margin-top: 2rem;
}

.polaroid:nth-child(3) {
  transform: rotate(-1deg);
}

.polaroid:hover {
  transform: rotate(0deg) scale(1.1);
  z-index: 10;
}

.polaroid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 5px;
  object-position: center bottom;
}

.polaroid-caption {
  text-align: center;
  margin-top: 1rem;
}

.polaroid-name {
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.polaroid-role {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.polaroid-bio {
  font-size: 0.85rem;
  opacity: 0.8;
  font-style: italic;
}

/* Philosophy Quote */
.philosophy-quote {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem 2.25rem;
  border-radius: 14px;
  background: #fffef9;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  border: 3px solid var(--teal);
  position: relative;
  transform: rotate(1deg);
}

.philosophy-quote::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 120px;
  height: 28px;
  background: rgba(255, 107, 107, 0.35);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.quote-text {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 900;
}

.quote-attribution {
  margin-top: 0.75rem;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.75);
  font-style: italic;
  font-size: 0.95rem;
}

/* Conventions Section */
.conventions {
  padding: 6rem 2rem;
  background: var(--cream);
}

.conventions-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.conventions h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 900;
}

.conventions-intro {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.convention-featured {
  position: relative;
  margin-bottom: 3rem;
}

.convention-badge {
  display: inline-block;
  background: var(--coral);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.convention-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px var(--shadow);
  border: 3px solid var(--teal);
  text-align: left;
  transition: transform 0.3s;
}

.convention-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.convention-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--peach);
}

.convention-name {
  font-size: 2rem;
  font-weight: 900;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.convention-date {
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 0.8;
}

.convention-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.convention-location,
.convention-activity {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.detail-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.convention-location strong,
.convention-activity strong {
  color: var(--coral);
  display: block;
  margin-bottom: 0.25rem;
}

.convention-cta {
  background: rgba(83, 199, 198, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
}

.convention-tagline {
  font-style: italic;
  opacity: 0.8;
  margin: 0;
}

.convention-callout {
  background: linear-gradient(135deg, var(--teal) 0%, var(--peach) 100%);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  color: white;
}

.convention-callout p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.convention-callout .btn {
  background: white;
  color: var(--ink);
  border: none;
}

.convention-callout .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Updates Section */
.updates {
  padding: 6rem 2rem;
  background: var(--cream);
}

.updates-content {
  max-width: 800px;
  margin: 0 auto;
}

.updates h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  font-weight: 900;
  text-align: center;
}

.update-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px var(--shadow);
  border-left: 5px solid var(--teal);
  transition: all 0.3s;
}

.update-card:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px var(--shadow);
}

.update-date {
  color: var(--coral);
  font-weight: 900;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.update-title {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.update-text {
  opacity: 0.8;
  line-height: 1.6;
}

/* FAQ Section */
.faq {
  padding: 6rem 2rem;
  background: var(--peach);
  max-width: 900px;
  margin: 0 auto;
}

.faq h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  font-weight: 900;
  text-align: center;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  font-weight: 900;
  font-size: 1.1rem;
  border: none;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Nunito", sans-serif;
  transition: background 0.3s;
  color: var(--ink);
  -webkit-appearance: none;
  appearance: none;
}

.faq-question:hover {
  background: rgba(83, 199, 198, 0.1);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
  color: var(--ink);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  opacity: 0.8;
  line-height: 1.6;
}

/* Signup Section */
.signup {
  padding: 6rem 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.signup h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 900;
}

.signup-subtext {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.signup-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
}

.signup-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 3px solid var(--teal);
  border-radius: 50px;
  font-size: 1rem;
  font-family: "Nunito", sans-serif;
  min-width: 250px;
  transition: all 0.3s;
}

.signup-form input:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 107, 107, 0.1);
  transform: scale(1.02);
}

.perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.perk {
  text-align: center;
}

.perk-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.perk-text {
  font-weight: 700;
}

/* Footer */
footer {
  background: var(--ink);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

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

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.social-link {
  font-size: 2rem;
  color: white;
  text-decoration: none;
  transition: transform 0.3s;
}

.social-link:hover {
  transform: scale(1.3) rotate(10deg);
}

.contact-link {
  position: relative;
}

.contact-link::after {
  content: "Contact us";
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: white;
  font-size: 0.75rem;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.contact-link:hover::after {
  opacity: 1;
}

.footer-tagline {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

/* ========================================
   CONTACT MODAL
   ======================================== */

.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.contact-modal.active {
  opacity: 1;
  pointer-events: all;
}

.contact-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.contact-modal-content {
  position: relative;
  background: var(--cream);
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  z-index: 1;
}

.contact-modal.active .contact-modal-content {
  transform: scale(1) translateY(0);
}

.contact-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  opacity: 0.5;
  transition: all 0.2s;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.contact-modal-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.contact-modal-header {
  background: linear-gradient(135deg, var(--teal) 0%, var(--peach) 100%);
  padding: 2.5rem 2rem 2rem;
  border-radius: 20px 20px 0 0;
  text-align: center;
  color: white;
}

.contact-modal-header h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.contact-modal-header p {
  opacity: 0.95;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-form {
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 3px solid var(--teal);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  transition: all 0.3s;
  background: white;
  color: var(--ink);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
  transform: scale(1.01);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a1a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.contact-success {
  display: none;
  padding: 3rem 2rem;
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounce 0.6s ease;
}

.contact-success h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--coral);
}

.contact-success p {
  margin-bottom: 2rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* ========================================
   MOBILE ENGAGEMENT FEATURES
   ======================================== */

/* Progress Dots Navigation */
.progress-dots {
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.3;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.progress-dot:hover {
  opacity: 0.6;
}

.progress-dot.active {
  opacity: 1;
  transform: scale(1.4);
  background: var(--coral);
}

/* ========================================
   GAME PAGE STYLES
   ======================================== */

/* Game Hero */
.game-hero {
  padding: 8rem 2rem 4rem;
  background: radial-gradient(circle at 15% 25%, var(--teal) 0%, transparent 45%),
              radial-gradient(circle at 85% 75%, var(--peach) 0%, transparent 45%),
              radial-gradient(circle at 50% 90%, rgba(255, 107, 107, 0.15) 0%, transparent 40%),
              var(--cream);
  position: relative;
  overflow: hidden;
}

.game-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.breadcrumb {
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.breadcrumb a:hover {
  opacity: 1;
}

.game-hero-text h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--ink);
  transform: rotate(-1.5deg);
  text-shadow: 3px 3px 0px rgba(255, 107, 107, 0.3);
  display: inline-block;
}

.game-tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.85;
  font-style: italic;
}

.game-quick-info {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: nowrap;
  align-items: center;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: white;
  padding: 0.65rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  flex-shrink: 0;
}

.info-icon {
  font-size: 1.5rem;
}

.info-text {
  font-weight: 700;
}

.game-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.countdown-inline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.countdown-label {
  font-size: 0.9rem;
  opacity: 0.7;
  font-weight: 700;
}

.countdown-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--coral);
}

.game-hero-image {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px var(--shadow);
}

.game-hero-image img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

/* Game Pitch */
.game-pitch {
  padding: 6rem 2rem;
  background: white;
}

.game-pitch-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.game-pitch h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 3rem;
}

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

.pitch-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
  transition: transform 0.3s;
}

.pitch-card:hover {
  transform: translateY(-10px);
}

.pitch-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.pitch-card h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.pitch-card p {
  opacity: 0.8;
  line-height: 1.6;
}

/* How to Play */
.how-to-play {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(246, 214, 166, 0.2) 0%, rgba(255, 107, 107, 0.1) 100%);
}

.how-to-play-content {
  max-width: 900px;
  margin: 0 auto;
}

.how-to-play h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
}

.section-intro {
  text-align: center;
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 3rem;
}

.play-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.play-step {
  display: flex;
  gap: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--coral);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
}

.step-content h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.step-content p {
  opacity: 0.8;
  line-height: 1.6;
}

.play-callout {
  background: var(--teal);
  color: white;
  padding: 2rem;
  border-radius: 20px;
  margin-top: 2rem;
  text-align: center;
}

.play-callout strong {
  font-weight: 900;
}

/* What's in the Box - Refined Version */
.whats-in-box {
  padding: 6rem 2rem;
  background: var(--cream);
}

.whats-in-box-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.whats-in-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.box-subtitle {
  font-size: 1.05rem;
  opacity: 0.65;
  margin-bottom: 4rem;
}

.box-section {
  margin-bottom: 4rem;
}

.box-section:last-child {
  margin-bottom: 0;
}

.box-section-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--ink);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.box-grid-extras {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 650px;
  margin: 0 auto;
}

.box-item {
  background: white;
  padding: 2rem 1.5rem 1.75rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

.box-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.box-item:hover .box-card-image {
  transform: rotate(-4deg) scale(1.05);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
}

.box-item-core {
  background: linear-gradient(135deg, white 0%, rgba(255, 107, 107, 0.02) 100%);
  border: 2px solid rgba(255, 107, 107, 0.08);
}

/* Card Image Display - BETTER PROPORTIONS */
.box-card-image {
  width: 110px;
  height: 155px;
  margin: 0 auto 1.25rem;
  position: relative;
  transform: rotate(-2deg);
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.box-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: smooth;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  filter: blur(0.3px);
}

/* Alternative: Stack of cards effect */
.box-card-stack {
  width: 110px;
  height: 155px;
  margin: 0 auto 1.25rem;
  position: relative;
}

.box-card-stack::before,
.box-card-stack::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.box-card-stack::before {
  transform: rotate(-4deg) translateY(-4px);
  opacity: 0.6;
  z-index: 0;
}

.box-card-stack::after {
  transform: rotate(-2deg) translateY(-2px);
  opacity: 0.8;
  z-index: 1;
}

.box-card-stack img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.box-item h3 {
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 0.6rem;
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.box-item p {
  opacity: 0.75;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.card-count {
  display: inline-block;
  background: var(--coral);
  color: white;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 900;
}

.box-optional-badge {
  display: inline-block;
  background: var(--teal);
  color: white;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
}

/* Fallback icon for items without card images */
.box-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* Chaos Cards - Improved Readability Version */
.chaos-cards {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 100%);
}

.chaos-cards-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.chaos-cards-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chaos-cards-content .section-intro {
  color: white;
  opacity: 1;
  margin-bottom: 3rem;
  font-size: 1.15rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chaos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.chaos-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.chaos-card:hover {
  transform: translateY(-10px) rotate(-2deg);
}

.chaos-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.chaos-card h3 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  color: var(--coral);
}

.chaos-card p {
  opacity: 0.8;
  line-height: 1.6;
  color: var(--ink);
}

/* IMPROVED VERSION: Better contrast for the callout box */
.chaos-callout {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  color: var(--ink);
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.chaos-callout h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--coral);
}

.chaos-callout p {
  margin-bottom: 1rem;
  line-height: 1.6;
  opacity: 0.85;
  color: var(--ink);
}

.chaos-callout p:last-child {
  margin-bottom: 0;
}

.chaos-callout strong {
  font-weight: 900;
  color: var(--coral);
}

/* Game FAQ */
.game-faq {
  padding: 6rem 2rem;
  background: var(--peach);
}

.game-faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.game-faq h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 3rem;
}

/* Final CTA */
.final-cta {
  padding: 6rem 2rem;
  background: var(--cream);
}

.final-cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.final-cta .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-note {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.9;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 968px) {
  .box-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Better section spacing */
  section {
    padding: 4rem 1.25rem;
  }

  section + section {
    margin-top: 2rem;
  }

  /* Hero adjustments */
  .hero {
    min-height: auto;
    padding-top: 6rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .hero-visual {
    margin-top: 2rem;
  }

  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat {
    padding: 1.25rem 0.75rem;
  }

  .stat-icon {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-text {
    font-size: 0.75rem;
  }

  .cta-buttons {
    justify-content: center;
  }

  /* Hide secondary CTA on mobile */
  .hero .btn-secondary {
    display: none;
  }

  /* Larger touch targets */
  .btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.15rem;
  }

  /* Mobile menu */
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none !important;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.open {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 3px solid var(--teal);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    padding: 1rem 0;
    font-size: 1.1rem;
    display: block;
  }

  /* Swipeable testimonials */
  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: none;
  }

  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial {
    flex: 0 0 85%;
    scroll-snap-align: center;
    min-height: 180px;
  }

  .swipe-indicator {
    display: block;
    animation: fadeInOut 3s ease-in-out infinite;
  }

  @keyframes fadeInOut {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.3; }
  }

  /* Story text as cards */
  .story-text {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.25rem;
    border-radius: 14px;
    backdrop-filter: blur(6px);
  }

  /* Quote mobile optimization */
  .philosophy-quote {
    margin: 3rem auto;
    padding: 2rem 1.5rem;
  }

  .quote-text {
    font-size: 1.15rem;
  }

  /* Better polaroid sizing */
  .polaroid img {
    height: 260px;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .perks {
    grid-template-columns: 1fr;
  }

  .founders {
    grid-template-columns: 1fr;
  }

  .polaroid:nth-child(2) {
    margin-top: 0;
  }

  .signup-form {
    flex-direction: column;
  }

  .signup-form input {
    min-width: 100%;
  }

  /* Progress dots mobile positioning */
  .progress-dots {
    right: 0.75rem;
    gap: 0.6rem;
  }

  .progress-dot {
    width: 8px;
    height: 8px;
  }

  /* Convention mobile adjustments */
  .convention-card {
    padding: 2rem 1.5rem;
  }

  .convention-name {
    font-size: 1.6rem;
  }

  .convention-date {
    font-size: 1rem;
  }

  .convention-details {
    gap: 1.25rem;
  }

  .detail-icon {
    font-size: 1.5rem;
  }

  .convention-callout {
    padding: 2rem 1.5rem;
  }

  .convention-callout p {
    font-size: 1.1rem;
  }

  /* Contact modal mobile adjustments */
  .contact-modal-content {
    width: 95%;
    max-height: 95vh;
    border-radius: 15px;
  }

  .contact-modal-header {
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 15px 15px 0 0;
  }

  .contact-modal-header h2 {
    font-size: 1.6rem;
  }

  .contact-modal-header p {
    font-size: 0.9rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .contact-success {
    padding: 2rem 1.5rem;
  }

  /* Game page mobile */
  .game-hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .game-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .game-hero-text {
    order: 1;
  }

  .game-hero-image {
    order: 2;
    padding: 1.5rem;
  }

  .game-hero-text h1 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    transform: rotate(-1deg);
  }

  .game-tagline {
    font-size: 1.2rem;
  }

  .game-quick-info {
    justify-content: center;
    flex-wrap: wrap;
  }

  .quick-info-item {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .game-cta {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .countdown-inline {
    align-items: center;
    text-align: center;
  }

  .play-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pitch-grid,
  .box-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* What's in the Box mobile */
  .box-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .box-grid-extras {
    grid-template-columns: 1fr;
  }

  .box-item {
    padding: 2rem 1.5rem;
  }

  .box-card-image,
  .box-card-stack {
    width: 100px;
    height: 140px;
  }

  .box-icon {
    font-size: 3rem;
  }

  /* Chaos cards mobile */
  .chaos-cards {
    padding: 4rem 1.5rem;
  }

  .chaos-grid {
    grid-template-columns: 1fr;
  }

  .chaos-callout {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .whats-in-box {
    padding: 4rem 1.5rem;
  }

  .box-section-title {
    font-size: 0.9rem;
  }

  .box-card-image,
  .box-card-stack {
    width: 95px;
    height: 135px;
  }
}

/* Gentle float animation for hero image (touch devices) */
@media (hover: none) {
  .game-preview {
    animation: floaty 4s ease-in-out infinite;
  }

  /* Touch feedback */
  .btn:active,
  .game-card:active,
  .faq-question:active,
  .polaroid:active {
    transform: scale(0.97);
  }
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0) rotate(3deg);
  }
  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  
  body::before {
    transition: none !important;
  }
}