body { margin: 0; font-family: sans-serif; }

/* HOME */
.hero { position: relative; }
.banner { width: 100%; height: 70vh; object-fit: cover; display: block; }

.menu {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 10px;
  flex-wrap: wrap; /* FIX OVERLAPPING */
}

.menu a {
  background: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}

.store-btn { background: #ffd966; }

/* SUBPAGES */
.content-body {
  background: #fafafa;
  padding: 20px;
}

.content-header {
  text-align: center;
  margin-bottom: 20px;
}

.back-home {
  display: inline-block;
  margin-top: 6px;
  text-decoration: none;
  background: white;
  padding: 6px 14px;
  border-radius: 6px;
}

.content-main {
  max-width: 800px;
  margin: auto;
  font-size: 1rem;
}

/* COSMIC STORE */
.store-body { background: #fff3fc; padding: 20px; }
.store-header { text-align: center; margin-bottom: 20px; }
.store-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }
.store-card { background: white; padding: 16px; border-radius: 12px; text-align: center; box-shadow: 0 2px 6px rgba(0,0,0,0.08); }
.store-card button { padding: 8px 16px; border: none; border-radius: 6px; background: #ffe066; font-weight: bold; }


/* FOOTER */
.site-footer {
  background: #c9ffb3;
  color: #fbeeff;
  padding: 18px 16px 22px;
  font-size: 13px;
}
.site-footer a { color: #ffd6ff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
.footer-brand {
  margin: 0;
  opacity: 0.85;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.footer-label {
  opacity: 0.8;
  margin-right: 8px;
}
.app-badges .badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #2a1a3a;
  border: 1px solid rgba(255,255,255,0.2);
  margin-right: 6px;
  font-size: 12px;
}
.social-icons .icon-pill {
  display: inline-block;
  min-width: 24px;
  text-align: center;
  padding: 3px 6px;
  border-radius: 999px;
  background: #2a1a3a;
  border: 1px solid rgba(255,255,255,0.2);
  margin-right: 4px;
}
@media (max-width: 600px) {
  .footer-row { flex-direction: column; align-items: flex-start; }
}


/* Southern Comfort & Teaser */
.southern-comfort {
  max-width: 1100px;
  margin: 30px auto 10px;
  padding: 0 16px 20px;
}
.southern-comfort h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.southern-comfort p {
  margin-bottom: 12px;
}
.southern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 10px;
}
.southern-card {
  background: #fff4ea;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.95rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.teaser-block {
  max-width: 1100px;
  margin: 0 auto 30px;
  padding: 0 16px 30px;
}
.teaser-block h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.teaser-block p {
  margin-bottom: 12px;
}
.teaser-frame {
  position: relative;
  max-width: 640px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.teaser-frame img {
  display: block;
  width: 100%;
}
.play-pill {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(15, 8, 40, 0.85);
  color: #fdf7ff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

/* Badge utility (for monetization page) */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fbe8ff;
  color: #5a2b6e;
  font-size: 0.8rem;
}
