.nft-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-top: 115px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nft-hiw {
  padding: 60px 20px;
  text-align: center;
}

.nft-hiw-title {
  color: #fff;
  font-family: 'SeoulHangang', sans-serif;
  font-size: 32px;
  margin: 0 0 40px;
}

.nft-hiw-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.nft-hiw-card {
  width: 260px;
  height: 160px;
  background: #07122A;
  border: 2px solid #82ECFF;
  border-radius: 14px;
  color: #fff;
  font-family: 'SeoulHangang', sans-serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 20px;
}

.nft-hiw-example-title {
  color: #82ECFF;
  font-family: 'SeoulHangang', sans-serif;
  font-size: 20px;
  margin-bottom: 8px;
}

.nft-hiw-example-text {
  color: #fff;
  font-family: 'SeoulHangang', sans-serif;
  font-size: 16px;
  margin: 0;
}

@media (max-width: 1099px) and (min-width: 600px) {
  .nft-hiw-card {
    width: calc(50% - 12px);
    font-size: 16px;
  }
}

@media (max-width: 599px) {
  .nft-hiw-card {
    width: 90%;
    font-size: 14px;
  }
  .nft-hiw-title { font-size: 24px; }
  .nft-hiw-example-title { font-size: 18px; }
  .nft-hiw-example-text { font-size: 14px; }
}
.nft-hero-bg,
.nft-hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* keep the top of the image visible */
}

.nft-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7,18,42,0.6) 0%, rgba(7,18,42,0.2) 40%, rgba(7,18,42,0.8) 100%);
  z-index: 1;
}

.nft-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.nft-hero-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1rem;
}

.nft-subtitle {
  color: #fff;
  font-family: 'SeoulHangang', sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}

.nft-desc {
  color: rgba(255,255,255,0.85);
  font-family: 'SeoulHangang', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  max-width: 38rem;
  margin: 0;
}

.nft-hero-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

.nft-paladin {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(130,236,255,0.5));
}

@media (max-width: 899px) {
  .nft-hero {
    padding-top: 56px;
  }
  .nft-hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nft-hero-text {
    align-items: center;
    text-align: center;
  }
  .nft-paladin {
    max-width: 320px;
    margin-top: 1.5rem;
  }
  .nft-subtitle {
    font-size: 20px;
  }
  .nft-desc {
    font-size: 14px;
  }
}

.nft-collections {
  background: #07122A;
  padding: 60px 20px;
  text-align: center;
}

.nft-collections-title {
  color: #fff;
  font-family: 'SeoulHangang', sans-serif;
  font-size: 32px;
  margin: 0 0 40px;
}

.nft-collections-table {
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
}

.nft-collections-row {
  display: grid;
  grid-template-columns: 40% 40% 20%;
  padding: 12px 0;
  color: #fff;
}

.nft-collections-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nft-collections-header {
  color: #82ECFF;
  font-weight: 500;
}

.nft-collections-col:nth-child(2) {
  text-align: center;
}

.nft-collections-col:nth-child(3) {
  text-align: right;
}

.nft-collections-hint {
  margin-top: 20px;
  color: #fff;
  font-size: 14px;
}

@media (max-width: 599px) {
  .nft-collections-title {
    font-size: 24px;
  }
  .nft-collections-header {
    display: none;
  }
  .nft-collections-row {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .nft-collections-col:nth-child(2),
  .nft-collections-col:nth-child(3) {
    text-align: left;
  }
}

/* === NFT benefits === */
.nft-benefits {
  padding: 60px 20px;
  text-align: center;
}
.nft-benefits-title {
  color: #fff;
  font-family: 'SeoulHangang', sans-serif;
  font-size: 32px;
  margin: 0 0 40px;
}
.nft-benefits-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.nft-benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  font-family: 'SeoulHangang', sans-serif;
  font-size: 18px;
}
.nft-benefit-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

/* === NFT RC uses === */
.nft-rc-uses {
  margin-top: 56px;
  padding: 0 20px 60px;
  text-align: center;
}
.nft-rc-uses-title {
  color: #fff;
  font-family: 'SeoulHangang', sans-serif;
  font-size: 32px;
  margin: 0 0 40px;
}
.nft-rc-uses-cards {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
}
.nft-rc-use-card {
  width: 260px;
  padding: 20px;
  box-sizing: border-box;
  border: 2px solid #82ECFF;
  border-radius: 20px;
  background: #0A1B35;
  color: #fff;
  font-family: 'SeoulHangang', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.nft-rc-use-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
}
.nft-rc-use-card p {
  margin: 0;
  font-size: 18px;
}

@media (max-width: 1099px) {
  .nft-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nft-benefit {
    font-size: 16px;
  }
  .nft-benefit-icon {
    width: 56px;
    height: 56px;
  }
  .nft-rc-use-card {
    width: calc(50% - 18px);
  }
}

@media (max-width: 599px) {
  .nft-benefits-title,
  .nft-rc-uses-title {
    font-size: 24px;
  }
  .nft-benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .nft-benefit {
    flex-direction: column;
    text-align: center;
  }
  .nft-rc-uses-cards {
    flex-direction: column;
    gap: 32px;
  }
  .nft-rc-use-card {
    width: 90%;
    margin: 0 auto;
  }
}

/* === NFT legend block === */
.nft-legend-block {
  width: 100%;
  background: #0A1B35;
  margin-top: 56px;
  display: flex;
  justify-content: center;
  border-top: 2px solid #62d0f8;
  border-bottom: 2px solid #62d0f8;
  box-sizing: border-box;
}

.nft-legend-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  box-sizing: border-box;
  text-align: center;
  font-family: 'SeoulHangang', sans-serif;
  color: #b6f0fa;
}

.nft-legend-text {
  margin: 0 0 24px;
  font-size: 24px;
  line-height: 1.4;
}

.nft-legend-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 1099px) {
  .nft-legend-text { font-size: 20px; }
  .nft-legend-buttons { gap: 16px; }
}

@media (max-width: 599px) {
  .nft-legend-text { font-size: 18px; }
  .nft-legend-buttons {
    flex-direction: column;
    gap: 20px;
  }
}

/* Remove footer gradient on NFT page */
.footer-fade { display: none; }

