@font-face {
  font-family: 'Poppins';
  src: url('../home_web3school/fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../home_web3school/fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../home_web3school/fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../home_web3school/fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../home_web3school/fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../home_web3school/fonts/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../home_web3school/fonts/Outfit-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../home_web3school/fonts/Outfit-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../home_web3school/fonts/Outfit-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../home_web3school/fonts/Outfit-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-primary: #050505;
  --bg-secondary: #0a0a0a;
  --bg-card: #111111;
  --text-primary: #ffffff;
  --text-muted: #b5b5b5;
  --text-soft: #888888;
  --border-dark: #1f1f1f;
}

.home-web3school {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

.home-web3school * {
  box-sizing: border-box;
}

.home-web3school a {
  color: inherit;
  text-decoration: none;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: background-color 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  padding: 24px 0;
}

.home-nav.nav-transparent {
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

.home-nav.nav-scrolled {
  background-color: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: #dcdcdc;
  transition: color 0.2s ease;
  text-transform: uppercase;
}

.nav-links a.active,
.nav-links a:hover {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  position: relative;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.nav-icon-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.nav-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff4d4f;
  color: #ffffff;
  font-weight: 800;
  font-size: 11px;
  line-height: 1;
  padding: 5px 6px;
  border-radius: 999px;
  min-width: 22px;
  text-align: center;
  border: 2px solid #050505;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  padding: 13px 24px;
  font-size: 14px;
}

.btn-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-25deg);
  animation: shine-loop 4s infinite;
}

.btn-primary {
  background: #ffffff;
  color: #000000 !important;
  border: 2px solid #ffffff;
}

.btn-primary *,
.btn-primary:hover *,
.btn-primary:focus * {
  color: #000000 !important;
}

.btn-primary:hover {
  background: #e5e5e5;
  border-color: #e5e5e5;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.nav-login {
  padding: 10px 22px;
  font-size: 12px;
}

.hero-actions .btn {
  padding: 16px 34px;
  font-size: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #1f1f1f;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 48px 24px 24px;
  min-height: calc(100vh - 64px);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 20px;
  font-weight: 700;
}

.mobile-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mobile-cart-count {
  color: #ff4d4f;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transform: scale(1.05);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.6), rgba(5, 5, 5, 0.2), #050505);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 104px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.hero-gradient {
  background: linear-gradient(90deg, #ffffff 0%, #7d7d7d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 22px);
  color: #d0d0d0;
  font-weight: 300;
  max-width: 820px;
  margin: 0 auto 40px;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero .btn {
  padding: 16px 32px;
  font-size: 16px;
}

.typing-cursor {
  display: inline-block;
  width: 4px;
  height: 0.9em;
  background: #ffffff;
  margin-left: 4px;
  animation: blink 1s infinite;
  vertical-align: text-bottom;
}

.scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  opacity: 0.7;
  animation: bounce 1.8s infinite;
  z-index: 2;
}

.section {
  padding: 50px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.15;
  margin: 0 0 24px;
}

.section-title .gradient-text {
  background: linear-gradient(90deg, #ffffff 0%, #7d7d7d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-bar {
  width: 96px;
  height: 6px;
  background: #ffffff;
  border-radius: 999px;
  margin-bottom: 32px;
  opacity: 0.85;
}

.section-copy {
  color: #c1c1c1;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
}

.image-stack {
  position: relative;
  display: inline-flex;
  justify-content: center;
}

.image-stack::before {
  content: '';
  position: absolute;
  inset: 8%;
  background: radial-gradient(ellipse at center, rgba(64, 102, 255, 0.25), transparent 60%);
  filter: blur(60px);
  z-index: 0;
}

.image-stack img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.45));
  transition: transform 0.6s ease;
}

.image-stack img:hover {
  transform: scale(1.02);
}

.podcast-section {
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}

.outline-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.outline-text span {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 18vw;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  opacity: 0.2;
}

.podcast-heading {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 48px;
}

.podcast-heading h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 4vw, 72px);
  margin: 0 0 6px;
  font-weight: 800;
}

.podcast-heading span {
  color: #a5a5a5;
  font-weight: 300;
}

.podcast-subtitle {
  letter-spacing: 0.4em;
  color: #7a7a7a;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

.podcast-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.podcast-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #1a1a1a;
  min-height: auto;
  background: #0c0c0c;
  cursor: pointer;
}

.podcast-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.podcast-card:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

.podcast-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.35), transparent);
}

.podcast-meta {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
}

.podcast-number {
  position: absolute;
  top: -38px;
  left: -8px;
  font-family: 'Outfit', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
}

.podcast-title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
}

.podcast-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.3s ease;
}

.podcast-card:hover .podcast-link {
  color: #ff4d4f;
}

.podcast-cta {
  text-align: center;
  margin-top: 56px;
}

.podcast-cta .btn {
  padding: 14px 30px;
  font-size: 14px;
}

.stats-section {
  background: linear-gradient(to bottom, #050505, #111111);
  text-align: center;
}

.stats-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  margin: 0;
}

.stats-muted {
  color: #7c7c7c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  border-top: 1px solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
  padding: 48px 0;
}

.stat-item {
  padding: 12px;
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  margin: 0 0 12px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
}

.stat-label {
  color: #b5b5b5;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.stats-cta {
  margin-top: 48px;
}

.stats-cta .btn {
  padding: 14px 30px;
  font-size: 14px;
}

.coming-section {
  background: var(--bg-primary);
  text-align: center;
}

.coming-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  margin: 0 0 20px;
}

.coming-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #525252, transparent);
  margin: 0 auto 48px;
}

.coming-video {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid #1a1a1a;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  aspect-ratio: 16 / 9;
}

.coming-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 2s ease;
}

.coming-video:hover video {
  transform: scale(1.03);
}

.coming-overlay {
  display: none;
}

@media (min-width: 1024px) {
  .coming-overlay {
    display: flex;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 18px;
    gap: 14px;
  }
}

.pill {
  background: #ffffff;
  color: #000000;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 800;
  border-radius: 999px;
  padding: 8px 14px;
  text-transform: uppercase;
}

.coming-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 6vw, 68px);
  margin: 0;
}

.coming-headline.gradient {
  background: linear-gradient(90deg, #f1f1f1 0%, #7d7d7d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coming-subtext {
  margin: 8px 0 16px;
  color: #d8d8d8;
  font-size: 18px;
}

.coming-form {
  width: 100%;
  max-width: 600px;
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(24, 24, 24, 0.9);
  border: 1px solid #2a2a2a;
  backdrop-filter: blur(8px);
}

.coming-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 16px;
  padding: 10px 12px;
  outline: none;
}

.coming-form input::placeholder {
  color: #6f6f6f;
}

.coming-form button {
  border: none;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 12px 22px;
}

.explore-section {
  background: var(--bg-primary);
}

.explore-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  margin: 0 0 32px;
  padding-left: 16px;
  border-left: 4px solid #ffffff;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.explore-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
}

.explore-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.explore-card:hover img {
  transform: scale(1.04);
}

.cta-row {
  background: #0a0a0a;
  border-top: 1px solid #171717;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.cta-card {
  display: flex;
  gap: 22px;
  padding: 32px;
  background: #111111;
  border-radius: 24px;
  border: 1px solid #1b1b1b;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-4px);
  border-color: #2a2a2a;
  background: #161616;
}

.cta-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.cta-card:hover img {
  transform: scale(1.06);
}

.cta-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  margin: 0 0 12px;
}

.cta-card p {
  margin: 0 0 14px;
  color: #c1c1c1;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.12em;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.cta-card:hover .cta-link {
  transform: translateX(6px);
}

.footer {
  background: #000000;
  border-top: 1px solid #141414;
}

.footer-hero {
  text-align: center;
  padding-bottom: 36px;
}

.footer-hero h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 86px);
  margin: 0;
  background: linear-gradient(to bottom, #ffffff 0%, #2e2e2e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 32px;
}

.footer-logo {
  height: 36px;
  margin-bottom: 16px;
}

.footer p {
  margin: 0;
  color: #a5a5a5;
  font-size: 14px;
}

.footer-title {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #b5b5b5;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: #c4c4c4;
  transition: all 0.2s ease;
}

.socials a:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-3px);
}

.store-badges {
  display: grid;
  gap: 10px;
}

.store-badges img {
  width: 150px;
  height: auto;
  display: block;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.store-badges img:hover {
  opacity: 1;
}

.footer-bottom {
  padding: 20px 0 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #8a8a8a;
  font-size: 12px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-legal a {
  color: #8a8a8a;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shine-loop {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  30% {
    left: 110%;
    opacity: 0;
  }
  100% {
    left: 110%;
    opacity: 0;
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -10px);
  }
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .nav-actions {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .split-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .section-bar {
    margin-left: auto;
    margin-right: auto;
  }
  .podcast-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: clamp(42px, 8vw, 76px);
  }
}

@media (max-width: 768px) {
  .home-nav {
    padding: 18px 0;
  }
  .hero-content {
    padding-top: 140px;
  }
  .hero .btn {
    width: 100%;
    justify-content: center;
  }
  .section {
    padding: 30px 0;
  }
  .podcast-title {
    font-size: 20px;
  }
  .podcast-number {
    font-size: 60px;
  }
  .stat-value {
    font-size: 52px;
  }
  .cta-card {
    flex-direction: row;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
