:root {
  --clr-bg: #171717;
  --clr-white-1: rgba(255,255,255,0.2);
  --clr-bg-red: var(--clr-white-1);
  --clr-text: #eeeeee;
  --clr-text-light: #cccccc;
  --red-replace: #dcdcdc;
  --clr-red: var(--red-replace);
  --clr-white: #ffffff;
  --clr-black-1: #1C1717;
  --clr-modal-bg: rgba(0,0,0,0.7);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-xs: 6px;
  --border-glass: 1px solid rgba(255,255,255,0.2);
  --fs-text: 0.9rem;
  --fs-text--small: 0.8rem;
  --fs-text--mini: 0.65rem;
  --fs-text--big: 1rem;
  --fs-title-item: 1.3rem;
  --fs-title-section: 1.4rem;
  --fs-title-page: 1.2rem;
  --section-padding-inline: 1.2rem;
  --size-mobile: 480px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  position: relative;
  background-color: var(--clr-bg);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif;
  color: var(--clr-text);
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.nikeC__container {
  --_padding-bottom: 7rem;
  max-width: var(--size-mobile);
  margin: 0 auto;
  background-color: var(--clr-bg);
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  overflow-x: hidden;
  padding: 0;
  padding-bottom: var(--_padding-bottom);
}
.nikeC__container.is-inactive button, .nikeC__container.is-inactive a {
  pointer-events: none;
  -webkit-filter: brightness(0.5);
  filter: brightness(0.5);
}
.nikeC__container.s-o2o-container {
  padding-bottom: 0;
}
.nikeC__container.s-o2o-container .nikeC__o2o-glass {
  padding-bottom: var(--_padding-bottom);
}

a.is-inactive,
.nikeC__nav-item.is-inactive {
  pointer-events: none;
  cursor: default;
  -webkit-filter: brightness(0.5) !important;
  filter: brightness(0.5) !important;
}

/* Glassmorphism component */
.nikeC__status-bar {
  height: 44px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-size: 14px;
}

.nikeC__header {
  text-align: center;
  padding-bottom: 0 !important;
}

.nikeC__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 3rem;
  margin: 0 auto;
}

.nikeC__hero {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.nikeC__hero .nikeC__hero-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.nikeC__hero .nikeC__hero-cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 22px;
}
.nikeC__hero .nikeC__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.2rem;
  height: 4.2rem;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3rem;
}

.nikeC__section {
  padding: 1.2rem;
}

.nikeC__section-athlete.is-inactive a {
  pointer-events: none;
  cursor: default;
}

.nikeC__section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.nikeC__section-title {
  font-size: 18px;
  font-weight: 700;
}

.nikeC__section-more {
  --_text-color: #fff;
  font-size: 14px;
  color: var(--_text-color);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nikeC__section-more::after {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  border: solid var(--_text-color);
  border-width: 1.5px 1.5px 0 0;
  transform: rotate(45deg);
}

.nikeC__player-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.nikeC__athlete-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: #111;
  border: var(--border-glass);
  line-height: 1;
}
.nikeC__athlete-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nikeC__athlete-card.is-coming-soon {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.nikeC__athlete-card.is-coming-soon .nikeC__coming-soon-content {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
  display: flex;
  align-items: flex-end;
}
.nikeC__athlete-card.is-coming-soon .nikeC__coming-soon-icon {
  width: 2.3rem;
  height: 2.3rem;
  margin: 0 auto 1rem;
}
.nikeC__athlete-card.is-coming-soon span {
  color: #fff;
  font-size: var(--fs-title-page);
  font-weight: bold;
  text-transform: uppercase;
  width: 7rem;
  display: block;
  text-align: left;
  line-height: 1.3;
  padding: 1.5rem;
}

.nikeC__interaction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Surprise Page specific grid (3 columns, tighter spacing) */
.nikeC__surprise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding-top: 1rem;
  display: flex;
  justify-content: center;
}

/* Surprise Page specific card */
.nikeC__surprise-card {
  border-radius: var(--radius-xs);
  overflow: hidden;
  background: #111;
  position: relative;
  text-decoration: none;
  display: block;
  line-height: 1;
  border: var(--border-glass);
  cursor: pointer;
  max-width: 8rem;
}
.nikeC__surprise-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nikeC__surprise-card.is-locked.s-coming-soon {
  pointer-events: none;
}
.nikeC__surprise-card:hover, .nikeC__surprise-card:focus-within {
  outline: 3px solid #fff;
  outline-offset: -3px;
}

/* Surprise Page specific section title/desc sizing */
.nikeC__surprise-section .nikeC__section-hero-title {
  font-size: 1rem;
}
.nikeC__surprise-section .nikeC__section-hero-desc {
  font-size: 0.8rem;
  width: 18rem;
  margin: 0 auto;
}
.nikeC__surprise-section .nikeC__section-hero-desc span {
  margin-top: 0.5rem;
  display: block;
}

.nikeC__interaction-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #111;
  position: relative;
  text-decoration: none;
  display: block;
  line-height: 1;
  border: var(--border-glass);
  cursor: pointer;
}
.nikeC__interaction-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nikeC__interaction-card.s-coming-soon {
  pointer-events: none;
}
.nikeC__interaction-card.s-coming-soon > img {
  -webkit-filter: blur(2px) brightness(0.5);
  filter: blur(2px) brightness(0.5);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.nikeC__interaction-card .nikeC__interaction-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: grid;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}
.nikeC__interaction-card .nikeC__interaction-label {
  font-size: var(--fs-text);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.3rem;
  padding: 1rem 0.5rem;
}
.nikeC__interaction-card .nikeC__interaction-label > span:first-child {
  font-size: 1rem;
  width: 100%;
  text-wrap-style: balance;
  text-wrap-style: pretty;
}
@media (max-width: 480px) {
  .nikeC__interaction-card .nikeC__interaction-label > span:first-child {
    font-size: 0.7rem;
  }
}
.nikeC__interaction-card .nikeC__interaction-arrow {
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  aspect-ratio: 1/1;
  right: 0.6rem;
  bottom: 0.6rem;
}
.nikeC__interaction-card:hover, .nikeC__interaction-card:focus-within {
  outline: 3px solid #fff;
  outline-offset: -3px;
}
.nikeC__interaction-card.is-disabled {
  pointer-events: none;
  opacity: 0.6;
}

.nikeC__btn {
  background: black;
  color: #fff;
  border: none;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.nikeC__btn span {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}

.nikeC__btn-share {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.nikeC__btn-share .nikeC__share-error {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: var(--fs-text--small);
}

.nikeC__btn-download {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}
.nikeC__btn-download .nikeC__share-error {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: var(--fs-text--small);
}

/* Athlete World Hero */
.nikeC__hero-text {
  text-align: center;
  color: #fff;
  font-size: 1rem;
}

.nikeC__hero-subtitle {
  text-align: center;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.nikeC__section-hero {
  text-align: center;
}

.nikeC__page-header {
  --_header-clr: #fff;
  display: flex;
  align-items: center;
  padding: 1rem 1.2rem;
  position: relative;
}
.nikeC__page-header.s-header-o2o {
  --_header-clr: #000;
  position: absolute;
  top: 1rem;
  left: 0rem;
}

.nikeC__back-btn {
  color: var(--_header-clr);
  text-decoration: none;
  margin-right: 1rem;
  border: solid var(--_header-clr);
  border-width: 0 0 2px 2px;
  transform: rotate(45deg);
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  left: 1rem;
}
.nikeC__back-btn--white {
  --_header-clr: #fff;
}

.nikeC__page-title {
  color: #fff;
  font-size: var(--fs-title-page);
  margin: 0 auto;
  padding: 0 0.5rem;
  text-align: center;
}

.nikeC__section-hero-title {
  color: #fff;
  font-size: var(--fs-title-page);
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
}

.nikeC__section-hero-subtitle {
  font-size: var(--fs-text--big);
  line-height: 1.5;
}

.nikeC__section-hero-desc {
  font-size: var(--fs-text);
  line-height: 1.5;
  margin-top: 0.5rem;
  text-align: center;
}

/* Surprise / Rewards page */
.nikeC__surprise-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nikeC__surprise-swoosh {
  width: 36px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.nikeC__surprise-text {
  color: #fff;
  font-size: var(--fs-text--small);
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  width: 5rem;
  line-height: 1.2;
}

.nikeC__coming-soon {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.nikeC__terms-link {
  text-align: center;
  font-size: 0.75rem;
  padding: 0.625rem 0 1rem;
  display: block;
  margin: 0 auto;
}

.nikeC__shirt-reference {
  display: flex;
  flex-wrap: wrap;
}
.nikeC__shirt-reference p {
  font-size: 0.7rem;
  display: block;
  margin: 0 auto 0.5rem !important;
  color: var(--clr-text-light);
}

.nikeC__shirt-wrap {
  max-width: 5rem;
  margin: 0 auto;
  padding: 0.5rem 0;
}

/* Unlock Modal */
.nikeC__unlock-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--clr-modal-bg);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.nikeC__unlock-modal.active {
  display: flex;
}

.nikeC__unlock-modal-content {
  background: #1a1a1a;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.nikeC__unlock-modal-title {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.nikeC__unlock-modal-desc {
  color: var(--clr-text);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.nikeC__unlock-modal-btn {
  display: block;
  line-height: 1;
  background: #fff;
  color: #000;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

/* Video Completion Modal */
.nikeC__completion-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--clr-modal-bg);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.nikeC__completion-modal.active {
  display: flex;
}

.nikeC__completion-modal-content {
  background: #1a1a1a;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  width: 100%;
  max-width: 320px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: var(--border-glass);
}

.nikeC__completion-modal-image {
  width: 7rem;
  margin: 0 auto 1rem;
  border-radius: 12px;
  overflow: hidden;
}
.nikeC__completion-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nikeC__completion-modal-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.nikeC__completion-modal-desc {
  color: var(--clr-text);
  font-size: var(--fs-text);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.nikeC__completion-modal-actions {
  display: flex;
  gap: 0.6rem;
}

.nikeC__completion-modal-btn {
  flex: 1;
  display: block;
  line-height: 1;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
}

.nikeC__completion-modal-btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid #555;
  line-height: 1;
}

.nikeC__completion-modal-btn--primary {
  background: #fff;
  color: #000;
}

/* O2O Detail Page Styles */
.nikeC__o2o-image img {
  width: 100%;
  display: block;
}

.nikeC__o2o-glass {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}

.nikeC__o2o-glass-wrap {
  position: relative;
}

.nikeC__o2o-glass-image-wrap {
  position: absolute;
  inset: 0;
  -webkit-filter: brightness(0.5);
  filter: brightness(0.5);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.nikeC__o2o-title {
  color: #fff;
  font-size: var(--fs-title-page);
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.nikeC__o2o-desc {
  color: var(--clr-text);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.nikeC__o2o-desc-remark {
  color: var(--clr-text-light);
  font-size: 0.8rem;
  line-height: 1.6;
  margin-top: 2rem;
}

.nikeC__o2o-action {
  margin-top: 1.5rem;
}

.nikeC__o2o-btn {
  display: block;
  line-height: 1;
  width: 100%;
  background: #fff;
  color: #000;
  text-align: center;
  padding: 0.875rem 0;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

/* Rip The Script Icon Grid */
.nikeC__rip-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: baseline;
  margin: 1rem 0;
}

.nikeC__rip-icon {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  display: grid;
  justify-content: center;
}
.nikeC__rip-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 0.5rem;
  -webkit-filter: grayscale(100%) opacity(0.5); /* Grey state */
  filter: grayscale(100%) opacity(0.5); /* Grey state */
  transition: filter 0.3s ease;
  border: 2px solid transparent;
}
.nikeC__rip-icon span {
  display: block;
  font-size: 0.75rem;
  color: var(--clr-text);
  line-height: 1.3;
}
.nikeC__rip-icon.collected img {
  -webkit-filter: none; /* Original color state */
  filter: none; /* Original color state */
  border-color: #fff;
}

/* Task Completion Modal (for Interaction pages) */
.nikeC__task-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--clr-modal-bg);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.nikeC__task-modal.active {
  display: flex;
}

.nikeC__task-modal-content {
  background: #1a1a1a;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  width: 100%;
  max-width: 320px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: var(--border-glass);
}
.nikeC__task-modal-content--has-top-close {
  position: relative;
  padding-top: 2.5rem;
}

.nikeC__task-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.nikeC__task-modal-image {
  width: 7rem;
  margin: 0 auto 1rem;
  border-radius: 12px;
  overflow: hidden;
}
.nikeC__task-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nikeC__task-modal-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-wrap-style: balance;
  text-wrap-style: pretty;
}

.nikeC__task-modal-desc {
  color: var(--clr-text);
  font-size: var(--fs-text);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.nikeC__task-modal-desc--scroll {
  max-height: 55vh;
  overflow-y: auto;
  text-align: left;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--clr-red) transparent;
}
.nikeC__task-modal-desc--scroll::-webkit-scrollbar {
  width: 0.2rem;
}
.nikeC__task-modal-desc--scroll::-webkit-scrollbar-track {
  background: transparent;
}
.nikeC__task-modal-desc--scroll::-webkit-scrollbar-thumb {
  background: var(--clr-red);
}
.nikeC__task-modal-desc--scroll::-webkit-scrollbar-thumb:hover {
  background: var(--clr-red);
}
.nikeC__task-modal-desc--scroll p {
  margin: 0 0 0.75rem;
}
.nikeC__task-modal-desc--scroll ol,
.nikeC__task-modal-desc--scroll ul {
  margin: 0 0 0.75rem;
  padding-left: 0;
  font-size: var(--fs-text--small);
  list-style-position: inside;
}
.nikeC__task-modal-desc--scroll ol ol, .nikeC__task-modal-desc--scroll ol ul,
.nikeC__task-modal-desc--scroll ul ol,
.nikeC__task-modal-desc--scroll ul ul {
  padding-left: 1.25rem;
}
.nikeC__task-modal-desc--scroll li {
  margin-bottom: 0.35rem;
}

.nikeC__task-modal-actions {
  display: flex;
  gap: 0.6rem;
}

.nikeC__task-modal-btn {
  flex: 1;
  display: block;
  line-height: 1;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.nikeC__task-modal-btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid #555;
  line-height: 1;
}

.nikeC__task-modal-btn--primary {
  background: #fff;
  color: #000;
}

/* Video page styles */
.nikeC__video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
}

.nikeC__video-iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

.nikeC__video-cover {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
}

.nikeC__action-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(4rem, 1fr));
  gap: 0.8rem;
  justify-content: center;
}

.nikeC__btn--dark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  color: #fff;
  padding: 0.875rem 1.2rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.6);
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
}

.nikeC__btn--white {
  background: #fff;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-width: 120px;
  text-align: center;
}

.nikeC__full-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* Full-width white unlock button */
.nikeC__unlock-btn {
  display: block;
  line-height: 1;
  width: 100%;
  margin: 2rem auto 0;
  background: #fff;
  color: #000;
  text-align: center;
  padding: 0.875rem 0;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.nikeC__banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.nikeC__banner img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  border-radius: var(--radius-md);
}
.nikeC__banner .nikeC__banner-arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  aspect-ratio: 1/1;
}

.nikeC__script-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.nikeC__script-card {
  flex: 0 0 auto;
  border-radius: var(--radius-xs);
  overflow: hidden;
  position: relative;
  display: block;
}
.nikeC__script-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nikeC__script-card.locked > img {
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
}
.nikeC__script-card.locked .nikeC__script-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nikeC__script-card.locked .nikeC__script-card-swoosh {
  width: 32px;
  height: auto;
}
.nikeC__script-card.locked .nikeC__script-card-text {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  text-align: center;
}
.nikeC__script-card.locked.s-coming-soon {
  pointer-events: none;
}
.nikeC__script-card:hover, .nikeC__script-card:focus-within {
  outline: 3px solid #fff;
  outline-offset: -3px;
}

.nikeC__nav {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: calc(var(--size-mobile) - 2rem);
  background: #121212;
  border: 2px solid #222;
  border-radius: 9999px;
  display: flex;
  justify-content: space-around;
  padding: 0.5rem 0;
  z-index: 1;
}
.nikeC__nav .nikeC__nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  -webkit-filter: brightness(0.5);
  filter: brightness(0.5);
}
.nikeC__nav .nikeC__nav-item.s-active {
  -webkit-filter: brightness(1);
  filter: brightness(1);
}
.nikeC__nav .nikeC__nav-item > img {
  height: 2rem;
  object-fit: contain;
}

.nikeC__modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100;
  align-items: center;
  justify-content: center;
}
.nikeC__modal.active {
  display: flex;
}
.nikeC__modal .nikeC__modal-content {
  width: 92%;
  max-width: 560px;
  position: relative;
}
.nikeC__modal .nikeC__modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* Drawer / Side Menu */
.nikeC__drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
  max-width: var(--size-mobile);
  margin: 0 auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nikeC__drawer.active {
  visibility: visible;
  opacity: 1;
}
.nikeC__drawer .nikeC__drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 80%;
  max-width: 320px;
  background: var(--clr-bg);
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1.5rem 5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  overflow-y: auto;
}
.nikeC__drawer.active .nikeC__drawer-content {
  transform: translateX(0);
}
.nikeC__drawer .nikeC__drawer-close {
  display: block;
  margin-left: auto;
  text-align: right;
  text-decoration: none;
}
.nikeC__drawer .nikeC__drawer-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.nikeC__drawer .nikeC__drawer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nikeC__drawer .nikeC__drawer-menu li {
  margin-bottom: 1.5rem;
}
.nikeC__drawer .nikeC__drawer-menu li a {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}
.nikeC__drawer .nikeC__drawer-menu li a img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}
.nikeC__drawer .nikeC__drawer-footer {
  padding-top: 1.25rem;
}
.nikeC__drawer .nikeC__drawer-login {
  display: block;
  line-height: 1;
  background: #fff;
  color: #000;
  text-align: center;
  padding: 0.875rem 0;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
}

/*# sourceMappingURL=main.css.map */
