* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #fff;
  background: #000;
}

.landing-container {
  min-height: 100vh;
  background-image: url('img/Background_light_large.png');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .9));
  z-index: 1;
}

.content-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  width: min(100%, 980px);
  overflow: hidden;
}

.logo {
  width: 100%;
  max-width: 380px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
}

.content-wrap h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0.25rem 0;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.65);
}

.content-wrap h2 {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin: 0.25rem 0 1.2rem;
  color: #ffd600;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.65);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.78);
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.social-link i {
  font-size: 1.1rem;
}

.social-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.youtube { background: rgba(255, 0, 0, 0.15); border-color: #ff2e40; }
.twitch { background: rgba(120, 79, 255, 0.17); border-color: #8b5cf6; }
.x { background: rgba(50, 50, 50, 0.16); border-color: #333333; }

.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  background: #ff3f6c;
  color: #fff;
  border: 2px solid #ff3f6c;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #ff6194;
  box-shadow: 0 12px 24px rgba(255, 0, 60, 0.32);
}

/* ─── Latest Videos Section ─── */
.videos-section {
  background: #0a0a0b;
  padding: 4rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.videos-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.videos-label {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

.videos-title {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 2rem;
  color: #fff;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.video-card {
  border-radius: 10px;
  overflow: hidden;
  background: #111114;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.video-embed-short {
  position: relative;
  width: 100%;
  padding-bottom: 177.77%; /* 9:16 aspect ratio */
  height: 0;
}

.video-embed-short iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.videos-cta {
  display: inline-block;
  margin-top: 2rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.18s;
}

.videos-cta:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
  }
}

/* ─── Footer ─── */
.site-footer {
  background: #111114;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: #fff;
}

/* CTA band — landing page only */
.footer-cta {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 2.25rem 2rem;
}

.footer-cta-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-cta-label {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

.footer-cta-title {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0;
  color: #fff;
}

.footer-cta-btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  background: #14b8a6;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.footer-cta-btn:hover {
  background: #0d9488;
  transform: translateY(-1px);
}

/* Main body */
.footer-body {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-body {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  height: auto;
  width: 120px;
  max-width: 120px;
  display: block;
  object-fit: contain;
}

.footer-tagline {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* Link columns */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.25rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.18s;
}

.footer-social-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.75;
}

.footer-social-link:hover {
  color: #fff;
}

.footer-social-link:hover img {
  opacity: 1;
}

.footer-page-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.18s;
}

.footer-page-link:hover {
  color: #fff;
}

/* Bottom bar */
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

@media (max-width: 639px) {
  .footer-cta-inner {
    flex-direction: column;
    align-items: center;
  }

  .footer-cta-btn {
    width: 100%;
    text-align: center;
  }

  .footer-body {
    padding: 2rem 1.25rem 2rem;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-page-link {
    display: inline-block;
  }

  .footer-bar {
    padding: 1rem 1.25rem;
  }
}

/* ─── Pre-order Modal ─── */
.preorder-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9998;
  overflow-y: auto;
  padding: 2rem 1rem;
  backdrop-filter: blur(4px);
}

.preorder-overlay.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.preorder-card {
  position: relative;
  background: #1a1a1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 560px;
  color: #fff;
  margin: auto;
}

.preorder-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
}

.preorder-close:hover {
  color: #fff;
}

.preorder-title {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin: 0.5rem 0 0.75rem;
}

.preorder-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
}

.preorder-success {
  text-align: center;
  padding: 2rem 0 1rem;
  font-size: 1.05rem;
  color: #4ade80;
}

.mod-form select {
  width: 100%;
  background: #0e0e0f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  padding: 0.65rem 0.85rem;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.mod-form select:focus {
  outline: none;
  border-color: #9146FF;
}

.optional {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  font-weight: 400;
}

/* ─── Apply Page ─── */
.page-apply {
  background: #0e0e0f;
  min-height: 100vh;
  display: block;
}

.apply-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: #0e0e0f;
  position: sticky;
  top: 0;
  z-index: 10;
}

.apply-nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.apply-nav-back {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.apply-nav-back:hover {
  color: #fff;
}

.apply-main {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
}

.apply-hero {
  margin-bottom: 2.5rem;
}

.apply-badge {
  display: inline-block;
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.4);
  color: #2dd4bf;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.apply-hero h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(2rem, 6vw, 3rem);
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.apply-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
  max-width: 520px;
}

.apply-card {
  background: #17181a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
}

.form-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.mod-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.mod-form label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.4rem;
}

.required {
  color: #f87171;
}

.mod-form input,
.mod-form textarea {
  background: #1e2022;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  padding: 0.7rem 0.9rem;
  transition: border-color 0.18s, box-shadow 0.18s;
  resize: vertical;
}

.mod-form input::placeholder,
.mod-form textarea::placeholder {
  color: rgba(255,255,255,0.28);
}

.mod-form input:focus,
.mod-form textarea:focus {
  outline: none;
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.18);
}

.apply-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0.5rem 0;
}

.apply-check label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

.apply-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 0.15rem;
  accent-color: #14b8a6;
  cursor: pointer;
}

.apply-submit {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.85rem;
  border: none;
  border-radius: 10px;
  background: #14b8a6;
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.apply-submit:hover {
  background: #0d9488;
  transform: translateY(-1px);
}

.apply-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0.75rem 0 0;
}

@media (max-width: 580px) {
  .logo {
    max-width: 130px;
  }

  .apply-nav {
    padding: 0.85rem 1.25rem;
  }

  .apply-main {
    padding: 2rem 1rem 4rem;
  }

  .apply-card {
    padding: 1.5rem 1.25rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ─── Landing Shop Link ─── */
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.shop-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}

.shop-link:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  transform: translateY(-2px);
}

.apply-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  background: transparent;
  border: 1.5px solid rgba(20, 184, 166, 0.35);
  color: rgba(20, 184, 166, 0.7);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}

.apply-link:hover {
  background: rgba(20, 184, 166, 0.08);
  border-color: rgba(20, 184, 166, 0.5);
  color: #2dd4bf;
  transform: translateY(-2px);
}

/* ─── Shop Page ─── */
.shop-main {
  max-width: 900px;
}

.shop-product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: #17181a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
}

@media (min-width: 700px) {
  .shop-product {
    grid-template-columns: 1fr 1fr;
  }
}

/* Slider */
.slider {
  position: relative;
  overflow: hidden;
  background: #111;
  aspect-ratio: 1 / 1;
  border-radius: 16px 16px 0 0;
}

@media (min-width: 700px) {
  .slider {
    border-radius: 16px 0 0 16px;
  }
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1c;
}

.slide img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}

.slider-btn:hover {
  background: rgba(0,0,0,0.8);
}

.slider-prev { left: 0.6rem; }
.slider-next { right: 0.6rem; }

.slider-dots {
  position: absolute;
  bottom: 0.7rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.dot.active {
  background: #fff;
  transform: scale(1.25);
}

/* Product Info */
.shop-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shop-badge-new {
  display: inline-block;
  background: rgba(255, 63, 108, 0.15);
  border: 1px solid rgba(255, 63, 108, 0.4);
  color: #ff6194;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  width: fit-content;
}

.shop-title {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0;
  line-height: 1.1;
  color: #fff;
}

.shop-description {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

.shop-details {
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.shop-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.shop-price {
  font-family: 'Luckiest Guy', cursive;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.shop-shipping {
  font-size: 0.8rem;
  color: #2dd4bf;
  font-weight: 600;
}

.shop-buy-btn {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background: #ff3f6c;
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: auto;
}

.shop-buy-btn:hover {
  background: #ff6194;
  transform: translateY(-1px);
}
