:root {
  --lime: #b7ff00;
  --lime2: #6cdb00;
  --ink: #071007;
  --panel: rgba(7, 16, 8, .82);
  --line: rgba(184, 255, 0, .35);
  --muted: #aeb7ae;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #f5fff0;
  font-family: Cairo, system-ui, sans-serif;
  background: #030704;
  overflow-x: hidden;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 78% 12%, #3a7117 0 1px, transparent 2px) 0 0/73px 73px,
    radial-gradient(circle at 23% 27%, #c7ff00 0 1px, transparent 2px) 0 0/107px 107px,
    #030704;
}

.world {
  position: fixed;
  z-index: -2;
  inset: 0;
  opacity: .84;
  filter: saturate(.85) brightness(.43);
  transform: scale(1.07) translate3d(calc(var(--px, 0px) * -.22), calc(var(--py, 0px) * -.15), 0);
  transition: transform .25s ease-out;
}

.world-bg {
  position: absolute;
  inset: 0;
  background-position: center 32%;
  background-size: cover;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}

.world-bg.is-active {
  opacity: 1;
}

.world:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .1) 20%, rgba(1, 12, 3, .93));
  pointer-events: none;
}

.world:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 18% 35%, rgba(184, 255, 0, .18), transparent 17%),
    radial-gradient(circle at 82% 25%, rgba(184, 255, 0, .12), transparent 16%),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(105, 225, 35, .11) 58px 116px),
    repeating-linear-gradient(0deg, transparent 0 58px, rgba(106, 218, 32, .09) 58px 116px);
  mix-blend-mode: screen;
}

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

.floaters span {
  position: absolute;
  width: 19px;
  height: 19px;
  background: linear-gradient(135deg, #d7ff00, #4b9600);
  box-shadow: 0 0 18px #aaff00;
  opacity: .75;
  transform: translate3d(calc(var(--px, 0px) * var(--d)), calc(var(--py, 0px) * var(--d)), 0) rotate(25deg);
  transition: transform .3s ease-out;
}

.floaters span:nth-child(1) { top: 18%; left: 8%;  --d: .22; }
.floaters span:nth-child(2) { top: 70%; left: 5%;  width: 27px; height: 27px; --d: .35; }
.floaters span:nth-child(3) { top: 12%; right: 9%; width: 10px; height: 10px; --d: .5; }
.floaters span:nth-child(4) { top: 77%; right: 7%; width: 25px; height: 25px; --d: .25; }

.container {
  width: min(1130px, calc(100% - 32px));
  margin: auto;
}

section {
  scroll-margin-top: 25px;
}

nav {
  height: 76px;
  margin-top: 25px;
  border: 1px solid #233223;
  border-radius: 14px;
  background: rgba(5, 11, 6, .83);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  position: relative;
  z-index: 5;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rubik Mono One', sans-serif;
  font-size: 19px;
  direction: ltr;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(183, 255, 0, .75);
  box-shadow: 0 0 12px rgba(183, 255, 0, .4);
  transition: transform .45s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s ease;
}

.brand:hover img {
  transform: rotate(-14deg) scale(1.12);
  box-shadow: 0 0 22px rgba(183, 255, 0, .7);
}

.brand img.brand-character {
  width: 34px;
  height: 34px;
  object-position: center 20%;
  border-color: #dfffa7;
  background: #b7ff00;
}

.brand-text {
  background: linear-gradient(180deg, #d9ff5c, var(--lime) 55%, var(--lime2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(183, 255, 0, .55);
  letter-spacing: .5px;
  transition: filter .3s ease, text-shadow .3s ease;
}

.brand:hover .brand-text {
  filter: brightness(1.25);
  text-shadow: 0 0 26px rgba(183, 255, 0, .85);
}

.links {
  display: flex;
  gap: 29px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 800;
  font-size: 13px;
}

.links a {
  color: #e9eee7;
  text-decoration: none;
  transition: color .25s ease;
  position: relative;
  padding-bottom: 3px;
}

.links a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(183, 255, 0, .8);
  transition: width .3s ease;
}

.links a:hover {
  color: var(--lime);
}

.links a:hover:after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--lime);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-action,
.btn {
  border: 1px solid var(--lime);
  background: transparent;
  color: #fff;
  border-radius: 9px;
  padding: 10px 16px;
  font: 800 12px Cairo;
  text-decoration: none;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease, background .3s ease, color .3s ease;
}

.nav-action .icon,
.btn .icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.nav-action:hover,
.btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.nav-action:hover .icon,
.btn:hover .icon {
  transform: scale(1.15) rotate(-6deg);
}

.nav-action:hover,
.btn.primary,
.btn.primary:hover {
  background: var(--lime);
  color: #0a1308;
  box-shadow: 0 0 26px rgba(183, 255, 0, .45);
}

.btn:not(.primary):hover {
  box-shadow: 0 0 18px rgba(183, 255, 0, .3);
}

.hero {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 12px;
  padding: 52px 48px 20px;
}

.eyebrow {
  letter-spacing: 3px;
  font-size: 13px;
  color: #e4ece2;
  font-weight: 800;
}

h1 {
  margin: 9px 0 3px;
  direction: ltr;
  text-align: right;
  font-family: 'Rubik Mono One', sans-serif;
  color: var(--lime);
  text-transform: uppercase;
  font-size: clamp(52px, 7vw, 95px);
  line-height: 1;
  text-shadow: 4px 4px 0 #3a7100, 0 0 25px rgba(183, 255, 0, .34);
}

.hero p {
  color: #c9d1c7;
  max-width: 460px;
  line-height: 1.9;
  font-size: 15px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 21px;
  flex-wrap: wrap;
}

.btn {
  min-width: 148px;
}

.avatar-wrap {
  height: 390px;
  display: grid;
  place-items: center;
  position: relative;
}

.avatar {
  width: 300px;
  height: 300px;
  border-radius: 42% 42% 35% 35%;
  background: #b7ff00;
  border: 3px solid #dfffa7;
  box-shadow: 0 0 0 5px #172908, 0 0 42px 8px rgba(183, 255, 0, .53);
  position: relative;
  overflow: hidden;
  animation: avatar-float 5s ease-in-out infinite;
  transition: box-shadow .4s ease;
}

.avatar:hover {
  box-shadow: 0 0 0 5px #172908, 0 0 60px 14px rgba(183, 255, 0, .72);
  animation-play-state: paused;
}

@keyframes avatar-float {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-14px); }
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.avatar:after {
  content: "✦";
  position: absolute;
  top: 20px;
  right: 27px;
  color: var(--lime);
  font-size: 55px;
  text-shadow: 0 0 20px var(--lime);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 15px 0 15px;
}

h2 {
  font-size: 16px;
  margin: 0;
  letter-spacing: .4px;
}

h2 span {
  color: var(--lime);
  margin-left: 7px;
}

.small-link {
  color: var(--lime);
  font-weight: 800;
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: filter .3s ease, transform .3s ease;
}

.small-link:hover {
  filter: brightness(1.3);
  transform: translateX(-3px);
}

.videos {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 15px;
  background: var(--panel);
  box-shadow: inset 0 0 20px rgba(86, 205, 4, .05);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.video {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.video:hover {
  transform: translateY(-5px);
}

.video h3 {
  transition: color .35s ease;
}

.video:hover h3 {
  color: var(--lime);
}

.thumb {
  height: 145px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #395138;
  position: relative;
  background: linear-gradient(135deg, #5fb955, #143a18 55%, #111) center / cover;
  transition: border-color .4s ease, box-shadow .4s ease;
}

.thumb-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-position: center;
  background-size: cover;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.video:hover .thumb-img {
  transform: scale(1.12);
}

.video:hover .thumb {
  border-color: var(--lime);
  box-shadow: 0 0 22px rgba(183, 255, 0, .25);
}

.play {
  transition: transform .25s ease, background .25s ease;
  z-index: 2;
}

.video:hover .play {
  transform: scale(1.08);
  background: var(--lime);
  color: #0a1308;
}

.thumb:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 49, 12, .1), rgba(196, 255, 0, .25)),
    repeating-linear-gradient(90deg, transparent 0 29px, rgba(0, 0, 0, .17) 29px 58px),
    repeating-linear-gradient(0deg, transparent 0 29px, rgba(0, 0, 0, .13) 29px 58px);
}

.thumb:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(1, 8, 2, .55), transparent 65%);
}

.play {
  position: absolute;
  bottom: 9px;
  right: 9px;
  background: #050905db;
  border: 1px solid var(--lime);
  border-radius: 5px;
  padding: 2px 8px;
  color: var(--lime);
  font-size: 11px;
  direction: ltr;
}

.video h3 {
  margin: 7px 1px 1px;
  font-size: 13px;
  line-height: 1.6;
}

.video p {
  margin: 0;
  font-size: 11px;
  color: #a5ada3;
  direction: rtl;
}

.videos-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  color: #9fae9c;
  font-size: 12.5px;
  line-height: 1.9;
  padding: 26px 10px;
  border: 1px dashed #33452f;
  border-radius: 10px;
}

.channel-header {
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
  background: var(--panel);
  margin-top: 22px;
  box-shadow: inset 0 0 20px rgba(86, 205, 4, .05);
}

.channel-banner {
  height: 190px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, .28) 0 3px, transparent 4px) 0 0/64px 64px,
    radial-gradient(circle at 65% 65%, rgba(255, 255, 255, .18) 0 2px, transparent 3px) 0 0/96px 96px,
    linear-gradient(135deg, #a7f000 0%, #6cb300 55%, #2c5c00 100%);
}

.channel-banner:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(0, 0, 0, .09) 42px 84px),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(0, 0, 0, .07) 42px 84px),
    linear-gradient(0deg, rgba(3, 9, 3, .55), transparent 55%);
  transition: background .4s ease;
}

.channel-banner.has-photo:after {
  background: linear-gradient(0deg, rgba(3, 9, 3, .6), transparent 60%);
}

.channel-banner-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.channel-banner-photo.is-loaded {
  opacity: 1;
}

.channel-info {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding: 0 24px 22px;
  margin-top: -55px;
  position: relative;
  flex-wrap: wrap;
}

.channel-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 4px solid var(--ink);
  background: #b7ff00;
  box-shadow: 0 0 0 3px rgba(183, 255, 0, .5), 0 8px 22px rgba(0, 0, 0, .45);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), box-shadow .4s ease;
}

.channel-avatar:hover {
  transform: scale(1.06) rotate(-4deg);
  box-shadow: 0 0 0 3px rgba(183, 255, 0, .8), 0 8px 26px rgba(0, 0, 0, .5);
}

.channel-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: opacity .5s ease;
}

.channel-text {
  flex: 1;
  min-width: 230px;
  padding-top: 16px;
}

.channel-name {
  font-family: 'Rubik Mono One', sans-serif;
  font-size: 21px;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 10px;
  direction: ltr;
  justify-content: flex-end;
  margin: 0;
}

.channel-handle {
  font-family: Cairo, sans-serif;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.channel-meta {
  color: var(--lime);
  font-size: 12.5px;
  font-weight: 800;
  margin: 7px 0 0;
  direction: rtl;
}

.channel-bio {
  color: #b9c3b6;
  font-size: 13px;
  line-height: 1.85;
  max-width: 560px;
  margin: 8px 0 0;
}

.channel-subscribe {
  align-self: center;
  margin-top: 14px;
}

.socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 15px 0 45px;
}

.social {
  min-height: 128px;
  padding: 17px;
  border: 1px solid #334332;
  border-radius: 12px;
  background: rgba(4, 11, 5, .76);
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.social:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(183, 255, 0, .16), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
}

.social:hover {
  border-color: var(--lime);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .35);
}

.social:hover:before {
  opacity: 1;
}

.social i {
  font-style: normal;
  font-size: 25px;
  display: inline-flex;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}

.social i .icon {
  width: 27px;
  height: 27px;
}

.social:hover i {
  transform: scale(1.18) rotate(-8deg);
}

.social b {
  display: block;
  margin-top: 8px;
}

.social span {
  font-size: 11px;
  color: #bcc8b9;
  direction: ltr;
  display: block;
  text-align: right;
}

.social:after {
  content: "↗";
  color: var(--lime);
  position: absolute;
  left: 14px;
  bottom: 10px;
  font-size: 20px;
  transition: transform .3s ease;
}

.social:hover:after {
  transform: translate(2px, -2px);
}

.youtube { border-color: #7d2020; }
.youtube i .icon { color: #ff4b4b; }
.discord-link { border-color: #4e5db8; }
.discord-link i .icon { color: #8e93ff; }
.mail { border-color: #7a7821; }
.mail i .icon { color: var(--lime); }

footer {
  border-top: 1px solid #1f341e;
  text-align: center;
  color: #859282;
  padding: 18px;
  font-size: 11px;
  direction: ltr;
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.section-head h2 span .icon {
  width: 16px;
  height: 16px;
  color: var(--lime);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.reveal-left {
  transform: translateX(-28px);
}

.reveal.reveal-right {
  transform: translateX(28px);
}

.reveal.reveal-scale {
  transform: translateY(18px) scale(.94);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 18px rgba(183, 255, 0, .55); }
  50% { text-shadow: 0 0 30px rgba(183, 255, 0, .9); }
}

.eyebrow {
  position: relative;
}

.eyebrow:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  margin-left: 8px;
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.back-to-top {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--lime);
  background: rgba(7, 16, 8, .88);
  backdrop-filter: blur(8px);
  color: var(--lime);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, box-shadow .3s ease, visibility .3s;
}

.back-to-top .icon {
  width: 18px;
  height: 18px;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 0 20px rgba(183, 255, 0, .5);
  transform: translateY(-3px);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #050a05;
}

::-webkit-scrollbar-thumb {
  background: #2c4a24;
  border-radius: 10px;
  border: 2px solid #050a05;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--lime2);
}

html {
  scrollbar-color: #2c4a24 #050a05;
  scrollbar-width: thin;
}

@media (max-width: 800px) {
  nav {
    height: auto;
    padding: 14px;
    flex-wrap: wrap;
    gap: 13px;
  }

  .nav-toggle {
    display: flex;
    order: 2;
  }

  .links {
    order: 4;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    gap: 0;
    font-size: 13px;
    transition: max-height .35s ease;
  }

  .links.is-open {
    max-height: 260px;
  }

  .links li {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #1f341e;
  }

  .nav-action {
    order: 3;
  }

  .nav-action {
    padding: 7px 10px;
    font-size: 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 43px 12px 12px;
    text-align: center;
  }

  .hero p {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .avatar-wrap {
    height: 270px;
    order: -1;
  }

  .avatar {
    width: 210px;
    height: 210px;
  }

  .avatar:before {
    font-size: 28px;
  }

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

  .channel-banner {
    height: 130px;
  }

  .channel-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -45px;
    padding: 0 16px 20px;
  }

  .channel-avatar {
    width: 90px;
    height: 90px;
  }

  .channel-name {
    justify-content: center;
  }

  .channel-bio {
    max-width: none;
  }

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

  .thumb {
    height: 170px;
  }

  h1 {
    text-align: center;
  }

  .eyebrow {
    font-size: 11px;
  }

  .container {
    width: min(100% - 24px, 1130px);
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 16px;
    left: 16px;
  }
}