:root {
  --bg: #ffd59f;
  --bg-soft: #ffe9c9;
  --text: #5a2f14;
  --muted: #7a4b2a;
  --primary: #ff9f45;
  --primary-strong: #ffbf73;
  --accent: #8f4e1f;
  --card: rgba(255, 241, 217, 0.88);
  --border: rgba(176, 107, 48, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Fredoka", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 205, 143, 0.72), rgba(255, 177, 91, 0.72)),
    url("assets/back.png") center / cover fixed no-repeat;
  scroll-behavior: smooth;
}

body {
  line-height: 1.55;
  position: relative;
  overflow-x: hidden;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5vw;
  background: rgba(255, 232, 198, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  font-family: "Luckiest Guy", "Fredoka", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.025em;
  color: #7a3e18;
  text-shadow: 0 0 14px rgba(255, 225, 179, 0.78);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.header-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(181, 109, 47, 0.65);
  box-shadow: 0 0 16px rgba(255, 173, 94, 0.62);
}

.section-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.section-nav a {
  color: var(--text);
  text-decoration: none;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(162, 94, 39, 0.35);
  background: rgba(255, 255, 255, 0.44);
  font-weight: 700;
  font-size: 0.88rem;
}

.section-nav a:hover {
  background: rgba(255, 255, 255, 0.7);
}

.header-actions {
  display: flex;
  gap: 0.65rem;
}

.icon-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.icon-btn {
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--border);
  color: var(--text);
  background: linear-gradient(145deg, rgba(255, 181, 96, 0.5), rgba(255, 228, 188, 0.5));
  font-size: 0.92rem;
}

.icon-btn:hover,
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(168, 154, 255, 0.35);
}

.icon {
  color: var(--accent);
}

main {
  width: min(1480px, 95vw);
  margin: 0 auto;
}

section {
  margin: 0.8rem 0;
  padding: 1.4rem 0.6rem;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.tag {
  display: inline-block;
  margin: 0 0 0.7rem;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #8f4e1f 0%, #b7642c 100%);
  color: #fff4de;
  border: 1px solid rgba(255, 223, 170, 0.75);
  box-shadow: 0 7px 18px rgba(143, 78, 31, 0.38);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Luckiest Guy", "Fredoka", sans-serif;
  margin: 0 0 0.8rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: #6b3513;
}

h1 {
  font-size: clamp(2.8rem, 5.4vw, 4.8rem);
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
}

.lead {
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-size: clamp(1.16rem, 1.7vw, 1.42rem);
  font-weight: 700;
}

.hero-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(122, 140, 255, 0.34));
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn {
  padding: 0.7rem 1.1rem;
  border: 1px solid transparent;
  color: var(--text);
}

.btn-primary {
  background: linear-gradient(135deg, #ff9a3e 0%, #ffd08e 100%);
  color: #5c3016;
  font-weight: 700;
}

.btn-secondary {
  background: rgba(255, 204, 145, 0.5);
  border-color: var(--border);
}

.ca {
  margin-top: 0.9rem;
  color: #6d3a18;
  font-weight: 700;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0.9rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-height: 620px;
  border-radius: 1rem;
  object-fit: cover;
}

blockquote {
  margin: 0.9rem 0 0;
  padding: 0.9rem 1rem;
  border-left: 3px solid #ffab59;
  background: rgba(255, 216, 163, 0.45);
  border-radius: 0.6rem;
  color: #6b3818;
}

blockquote span {
  display: block;
  margin-top: 0.5rem;
  color: #8c4a20;
  font-size: 0.9rem;
}

.viral-post h2,
.chart h2,
.join-us h2 {
  text-align: center;
}

.section-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0.5rem 0;
  border-top: 1px dashed rgba(140, 76, 34, 0.34);
  border-bottom: 1px dashed rgba(140, 76, 34, 0.34);
  background: rgba(255, 240, 211, 0.42);
}

.carousel-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: carousel-scroll 24s linear infinite;
  will-change: transform;
}

.section-carousel.reverse .carousel-track {
  animation-direction: reverse;
}

.carousel-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  font-weight: 700;
  color: #7c411a;
  padding: 0.32rem 0.82rem;
  border-radius: 0;
  background: rgba(255, 214, 156, 0.45);
  border-top: 1px solid rgba(151, 82, 37, 0.3);
  border-bottom: 1px solid rgba(151, 82, 37, 0.3);
  border-right: 1px solid rgba(151, 82, 37, 0.3);
}

.carousel-track i {
  color: #a1561f;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

video {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  background: #000;
}

.insta-btn {
  margin: 1rem auto 0;
  background: linear-gradient(120deg, #feda75 0%, #d62976 42%, #4f5bd5 100%);
  color: #fff;
  font-weight: 700;
  display: flex;
  width: fit-content;
}

.chart-embed {
  border-radius: 0.95rem;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 490px;
}

.chart-embed iframe {
  width: 100%;
  height: 560px;
  border: 0;
}

.join-us {
  overflow: hidden;
}

.join-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.95rem;
}

.join-content {
  margin-top: 0.65rem;
  text-align: center;
}

p,
blockquote,
.ca {
  font-weight: 700;
  font-size: clamp(1.05rem, 1.35vw, 1.26rem);
}

.join-buttons {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.site-footer {
  width: min(1480px, 95vw);
  margin: 0 auto 1rem;
  text-align: center;
  color: #6d3a18;
  font-size: 0.95rem;
}

.falling-icons {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.falling-icons i {
  position: absolute;
  top: -12%;
  color: rgba(151, 84, 34, 0.36);
  text-shadow: 0 0 10px rgba(255, 209, 153, 0.7);
  animation: fall 13s linear infinite;
}

.falling-icons i:nth-child(2n) {
  color: rgba(186, 104, 43, 0.34);
  text-shadow: 0 0 10px rgba(255, 190, 118, 0.55);
}

.falling-icons i:nth-child(3n) {
  color: rgba(128, 77, 32, 0.32);
  text-shadow: 0 0 10px rgba(255, 226, 179, 0.55);
}

.falling-icons i:nth-child(1) { left: 4%; font-size: 1.65rem; animation-delay: 0s; animation-duration: 11s; }
.falling-icons i:nth-child(2) { left: 13%; font-size: 1.9rem; animation-delay: 1.4s; animation-duration: 14s; }
.falling-icons i:nth-child(3) { left: 21%; font-size: 1.75rem; animation-delay: 2.2s; animation-duration: 12.5s; }
.falling-icons i:nth-child(4) { left: 30%; font-size: 2rem; animation-delay: 0.5s; animation-duration: 13.8s; }
.falling-icons i:nth-child(5) { left: 39%; font-size: 1.6rem; animation-delay: 2.8s; animation-duration: 15.2s; }
.falling-icons i:nth-child(6) { left: 47%; font-size: 1.85rem; animation-delay: 1s; animation-duration: 12.8s; }
.falling-icons i:nth-child(7) { left: 56%; font-size: 1.7rem; animation-delay: 3.1s; animation-duration: 11.8s; }
.falling-icons i:nth-child(8) { left: 65%; font-size: 2.05rem; animation-delay: 1.9s; animation-duration: 14.5s; }
.falling-icons i:nth-child(9) { left: 73%; font-size: 1.65rem; animation-delay: 3.4s; animation-duration: 13.1s; }
.falling-icons i:nth-child(10) { left: 81%; font-size: 1.85rem; animation-delay: 0.8s; animation-duration: 12.2s; }
.falling-icons i:nth-child(11) { left: 89%; font-size: 2.1rem; animation-delay: 2.6s; animation-duration: 14.9s; }
.falling-icons i:nth-child(12) { left: 95%; font-size: 1.65rem; animation-delay: 1.2s; animation-duration: 13.4s; }

@keyframes fall {
  0% {
    transform: translate3d(0, -10vh, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.9;
  }
  100% {
    transform: translate3d(-10px, 115vh, 0) rotate(320deg);
    opacity: 0;
  }
}

@keyframes carousel-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 1rem 0.35rem;
  }

  .carousel-track {
    animation-duration: 14s;
  }

  .icon-btn span:nth-child(2) {
    display: none;
  }

  .section-nav {
    width: 100%;
    justify-content: center;
  }

  .brand span {
    font-size: 1.2rem;
  }

  .falling-icons i {
    font-size: 1.35rem;
  }
}
