@import url("index.BtkE1jve.css");

.logo.karawatch-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  width: auto !important;
}

.logo.karawatch-logo .kw-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #3d8ef8, #6c63ff);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 0 20px rgba(61, 142, 248, 0.35);
  flex-shrink: 0;
  line-height: 1;
}

.logo.karawatch-logo .kw-logo-text {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, #3d8ef8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .main-header .logo.karawatch-logo {
    width: auto !important;
    min-width: 120px;
  }
}

.mobile-header-spacer {
  display: none;
}

@media (max-width: 768px) {
  .mobile-header-spacer {
    display: block;
    height: 40px;
    width: 40px;
    padding-right: 16px;
  }
}

.mobile-menu-shell.is-open {
  display: block;
}

.mobile-menu-shell:not(.is-open) {
  display: none;
}

@media (min-width: 769px) {
  .mobile-menu-shell {
    display: none !important;
  }
}

.main-header.scrolled {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(8, 2, 2, 0.88);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.locales.is-open {
  display: flex;
}

.main-header-centered .main-header-centered-content {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2vh 24px;
}

.main-header-centered .logo.karawatch-logo {
  justify-self: start;
  grid-column: 1;
}

.main-header-centered .nav-enter-btn-glitter {
  justify-self: center;
  grid-column: 2;
}

.main-header-centered .mobile-header-spacer {
  justify-self: end;
  grid-column: 3;
}

.main-header-centered .mobile-menu-btn,
.main-header-centered .main-nav {
  display: none !important;
}

.nav-enter-btn-glitter {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ea2625 0%, #ff4d4d 45%, #ea2625 100%);
  background-size: 200% 200%;
  color: #fff !important;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 0 20px rgba(234, 38, 37, 0.55),
    0 0 40px rgba(255, 100, 100, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.35);
  animation: enter-btn-glow 2.4s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.nav-enter-btn-glitter:hover {
  transform: translateY(-2px) scale(1.02);
  color: #fff !important;
}

.nav-enter-btn-glitter::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 25%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 100%
  );
  background-size: 250% 250%;
  animation: enter-btn-shimmer 2.2s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.nav-enter-btn-glitter::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -80%;
  width: 60%;
  height: 220%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: rotate(25deg);
  animation: enter-btn-sparkle 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

.nav-enter-btn-text {
  position: relative;
  z-index: 3;
}

@keyframes enter-btn-shimmer {
  0% { background-position: 200% 50%; }
  100% { background-position: -100% 50%; }
}

@keyframes enter-btn-sparkle {
  0%, 100% { left: -80%; opacity: 0; }
  15% { opacity: 1; }
  50% { left: 120%; opacity: 1; }
  85% { opacity: 0; }
}

@keyframes enter-btn-glow {
  0%, 100% {
    box-shadow:
      0 0 18px rgba(234, 38, 37, 0.5),
      0 0 36px rgba(255, 80, 80, 0.2),
      0 8px 24px rgba(0, 0, 0, 0.35);
    background-position: 0% 50%;
  }
  50% {
    box-shadow:
      0 0 28px rgba(255, 70, 70, 0.75),
      0 0 56px rgba(255, 120, 120, 0.35),
      0 10px 28px rgba(0, 0, 0, 0.4);
    background-position: 100% 50%;
  }
}

@media (max-width: 768px) {
  .main-header-centered .main-header-centered-content {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    padding: 14px 16px !important;
  }

  .main-header-centered .logo.karawatch-logo {
    display: none;
  }

  .main-header-centered .nav-enter-btn-glitter {
    grid-column: 1;
    min-width: 200px;
    padding: 11px 22px;
    font-size: 15px;
  }

  .main-header-centered .mobile-header-spacer {
    display: none !important;
  }
}

.locales:not(.is-open) {
  display: none;
}

/* Phone mockup — top aligned with TV hero art, flush right */
.first-screen[data-v-5956b6b5] {
  /* TV bezel top in home-bg-1 at 100vw width (~5.5% of bg height) */
  --hero-phone-top: 5.5vw;
}

.first-screen .phone[data-v-5956b6b5] {
  right: 2vw !important;
  top: var(--hero-phone-top) !important;
}

@media screen and (max-width: 1440px) {
  .first-screen[data-v-5956b6b5] {
    --hero-phone-top: 5vw;
  }

  .first-screen .phone[data-v-5956b6b5] {
    right: 1vw !important;
  }
}

@media screen and (max-width: 768px) {
  .first-screen[data-v-5956b6b5] {
    /* Mobile bg uses height: 100vh — TV top ~13% from hero top */
    --hero-phone-top: 13vh;
  }

  .first-screen .phone[data-v-5956b6b5] {
    right: 0 !important;
    width: 42vw !important;
    max-width: none;
  }
}

/* Landing homepage — black bottom bar with centered copyright */
.landing-copyright-bar {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 18px 24px;
  width: 100%;
  box-sizing: border-box;
}

.landing-copyright-text {
  margin: 0;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
