:root {
      --bg: #05060A;
      --panel: #080C14;
      --blue: #1F6FFF;
      --purple: #8A2BE2;
      --cyan: #00FFFF;
      --green: #00FF88;
      --amber: #FFB800;
      --white: #E8EEFF;
      --border: rgba(31, 111, 255, 0.2);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: 'Space Mono', monospace;
      overflow-x: hidden;
      cursor: none;
    }

    .cur {
      position: fixed;
      width: 10px;
      height: 10px;
      background: var(--cyan);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 10px var(--cyan), 0 0 22px var(--cyan);
      mix-blend-mode: screen;
      transition: width .15s, height .15s;
    }

    .cur-r {
      position: fixed;
      width: 32px;
      height: 32px;
      border: 1px solid rgba(0, 255, 255, .35);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: width .25s, height .25s, border-color .25s;
    }

    #sf {
      position: fixed;
      inset: 0;
      z-index: 0;
    }

    .neb {
      position: fixed;
      border-radius: 50%;
      filter: blur(90px);
      pointer-events: none;
      z-index: 0;
    }

    .n1 {
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(31, 111, 255, .1), transparent 70%);
      top: -200px;
      left: -200px;
      animation: nd 22s ease-in-out infinite alternate;
    }

    .n2 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(138, 43, 226, .09), transparent 70%);
      bottom: -100px;
      right: -100px;
      animation: nd 28s ease-in-out infinite alternate-reverse;
    }

    @keyframes nd {
      from {
        transform: translate(0, 0)scale(1)
      }

      to {
        transform: translate(35px, 25px)scale(1.12)
      }
    }

    .hg {
      position: fixed;
      inset: 0;
      z-index: 1;
      background-image: linear-gradient(rgba(31, 111, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(31, 111, 255, .025) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    .sl {
      position: fixed;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--cyan), transparent);
      z-index: 2;
      opacity: .07;
      animation: sc 10s linear infinite;
      pointer-events: none;
    }

    @keyframes sc {
      from {
        top: -2px
      }

      to {
        top: 100vh
      }
    }

    .hc {
      position: fixed;
      width: 66px;
      height: 66px;
      z-index: 3;
      pointer-events: none;
      opacity: .38;
    }

    .hc::before,
    .hc::after {
      content: '';
      position: absolute;
      background: var(--cyan);
    }

    .hc::before {
      width: 2px;
      height: 26px;
    }

    .hc::after {
      width: 26px;
      height: 2px;
    }

    .hc.tl {
      top: 16px;
      left: 16px
    }

    .hc.tl::before {
      top: 0;
      left: 0
    }

    .hc.tl::after {
      top: 0;
      left: 0
    }

    .hc.tr {
      top: 16px;
      right: 16px
    }

    .hc.tr::before {
      top: 0;
      right: 0
    }

    .hc.tr::after {
      top: 0;
      right: 0
    }

    .hc.bl {
      bottom: 16px;
      left: 16px
    }

    .hc.bl::before {
      bottom: 0;
      left: 0
    }

    .hc.bl::after {
      bottom: 0;
      left: 0
    }

    .hc.br {
      bottom: 16px;
      right: 16px
    }

    .hc.br::before {
      bottom: 0;
      right: 0
    }

    .hc.br::after {
      bottom: 0;
      right: 0
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      padding: 14px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(5, 6, 10, .9);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(31, 111, 255, .12);
    }

    .nav-brand {
      font-family: 'Orbitron', sans-serif;
      font-weight: 900;
      font-size: 15px;
      letter-spacing: 4px;
      background: linear-gradient(135deg, var(--cyan), var(--blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nav-links {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    .nav-links a {
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(200, 210, 255, .85);
      text-decoration: none;
      transition: color .25s;
    }

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

    .nav-cta {
      font-family: 'Orbitron', sans-serif;
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cyan);
      padding: 10px 20px;
      border: 1px solid rgba(0, 255, 255, .4);
      border-radius: 2px;
      text-decoration: none;
      transition: all .25s;
      cursor: pointer;
    }

    .nav-cta:hover {
      background: rgba(0, 255, 255, .08);
      box-shadow: 0 0 16px rgba(0, 255, 255, .2);
    }

    /* Hamburger */
    .ham {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      z-index: 60;
      background: none;
      border: none;
    }

    .ham span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--cyan);
      border-radius: 2px;
      transition: all .3s;
    }

    .ham.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .ham.open span:nth-child(2) {
      opacity: 0;
    }

    .ham.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile nav drawer */
    .mob-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 55;
      background: rgba(5, 6, 10, .97);
      backdrop-filter: blur(20px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }

    .mob-nav.open {
      display: flex;
    }

    .mob-nav a {
      font-family: 'Orbitron', sans-serif;
      font-size: 14px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(200, 210, 255, .88);
      text-decoration: none;
      transition: color .25s;
    }

    .mob-nav a:hover,
    .mob-nav a:active {
      color: var(--cyan);
    }

    .mob-nav .mob-reg {
      color: var(--cyan);
      padding: 12px 28px;
      border: 1px solid rgba(0, 255, 255, .4);
      border-radius: 2px;
      margin-top: 8px;
    }

    @media(max-width:768px) {
      .nav-links {
        display: none;
      }

      .nav-cta {
        display: none;
      }

      .ham {
        display: flex;
      }
    }

    section {
      position: relative;
      z-index: 10;
    }

    .container {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 24px;
    }

    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 100px 20px 60px;
      position: relative;
    }

    .orbit-wrap {
      position: absolute;
      width: min(560px, 88vw);
      height: min(560px, 88vw);
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .orbit {
      width: 100%;
      height: 100%;
      border: 1px solid rgba(31, 111, 255, .3);
      border-radius: 50%;
      animation: spin 14s linear infinite;
      position: relative;
    }

    .orbit::before {
      content: '';
      position: absolute;
      width: 10px;
      height: 10px;
      background: var(--cyan);
      border-radius: 50%;
      top: -5px;
      left: calc(50% - 5px);
      box-shadow: 0 0 12px var(--cyan), 0 0 26px var(--cyan);
    }

    .orbit-2 {
      position: absolute;
      inset: 22px;
      border: 1px dashed rgba(138, 43, 226, .22);
      border-radius: 50%;
      animation: spin 22s linear infinite reverse;
    }

    @keyframes spin {
      from {
        transform: rotate(0)
      }

      to {
        transform: rotate(360deg)
      }
    }

    .hero-dept {
      font-size: clamp(8px, 1.6vw, 10px);
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(200, 210, 255, .82);
      margin-bottom: 4px;
      animation: fsd .8s ease both;
    }

    .hero-college {
      font-size: clamp(9px, 1.8vw, 11px);
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(200, 210, 255, .88);
      margin-bottom: 4px;
      animation: fsd .8s .1s ease both;
    }

    .hero-cynex {
      font-size: clamp(9px, 1.5vw, 11px);
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 28px;
      animation: fsd .8s .2s ease both;
    }

    .hero-title {
      font-family: 'Orbitron', sans-serif;
      font-weight: 900;
      font-size: clamp(48px, 11vw, 108px);
      letter-spacing: 4px;
      line-height: 1;
      background: linear-gradient(135deg, #fff 0%, var(--cyan) 40%, var(--blue) 70%, var(--purple) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 30px rgba(0, 255, 255, .32));
      margin-bottom: 10px;
      cursor: default;
      animation: fsu .9s .35s ease both;
    }

    .hero-title:hover {
      animation: glitch .4s steps(2) forwards;
    }

    @keyframes glitch {
      0% {
        transform: translate(0)
      }

      20% {
        transform: translate(-4px, 2px);
        filter: hue-rotate(90deg) drop-shadow(0 0 20px #f0f)
      }

      40% {
        transform: translate(4px, -2px);
        filter: hue-rotate(-90deg) drop-shadow(0 0 20px #0ff)
      }

      60% {
        transform: translate(-2px, 2px)
      }

      80% {
        transform: translate(2px, -1px)
      }

      100% {
        transform: translate(0)
      }
    }

    .hero-tag {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(10px, 2.2vw, 15px);
      letter-spacing: 8px;
      color: rgba(220, 230, 255, .88);
      text-transform: uppercase;
      margin-bottom: 8px;
      animation: fsu .9s .5s ease both;
    }

    .hero-date {
      font-size: clamp(10px, 2vw, 13px);
      letter-spacing: 3px;
      color: var(--cyan);
      margin-bottom: 36px;
      animation: fsu .9s .6s ease both;
    }

    .hero-date span {
      opacity: .5;
      margin: 0 8px;
    }

    .prize-row {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 40px;
      animation: fsu .9s .75s ease both;
    }

    .prize-chip {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(13px, 3vw, 20px);
      font-weight: 700;
      padding: 10px 22px;
      border: 1px solid rgba(0, 255, 255, .28);
      border-radius: 3px;
      background: rgba(0, 255, 255, .04);
      position: relative;
    }

    .prize-chip::before,
    .prize-chip::after {
      content: '';
      position: absolute;
      width: 7px;
      height: 7px;
      border-color: var(--cyan);
      border-style: solid;
    }

    .prize-chip::before {
      top: -1px;
      left: -1px;
      border-width: 2px 0 0 2px;
    }

    .prize-chip::after {
      bottom: -1px;
      right: -1px;
      border-width: 0 2px 2px 0;
    }

    .prize-chip.gold {
      color: #FFD700;
      border-color: rgba(255, 215, 0, .35);
      animation: pglow-g 2.5s ease-in-out infinite;
    }

    .prize-chip.gold::before,
    .prize-chip.gold::after {
      border-color: #FFD700;
    }

    .prize-chip.silver {
      color: #C0C0C0;
      border-color: rgba(192, 192, 192, .3);
    }

    .prize-chip.consol {
      color: var(--amber);
      border-color: rgba(255, 184, 0, .3);
      font-size: clamp(11px, 2vw, 15px);
    }

    @keyframes pglow-g {

      0%,
      100% {
        box-shadow: 0 0 12px rgba(255, 215, 0, .15)
      }

      50% {
        box-shadow: 0 0 28px rgba(255, 215, 0, .4)
      }
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
      animation: fsu .9s .9s ease both;
    }

    .btn-prim,
    .btn-sec {
      font-family: 'Orbitron', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      padding: 16px 38px;
      border-radius: 2px;
      text-decoration: none;
      cursor: pointer;
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }

    .btn-prim {
      color: var(--bg);
      background: var(--cyan);
      border: 1.5px solid var(--cyan);
      box-shadow: 0 0 24px rgba(0, 255, 255, .3);
    }

    .btn-prim:hover {
      box-shadow: 0 0 40px rgba(0, 255, 255, .6);
    }

    .btn-sec {
      color: var(--cyan);
      background: transparent;
      border: 1.5px solid rgba(0, 255, 255, .4);
    }

    .btn-sec::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 255, 255, .08);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s cubic-bezier(.77, 0, .18, 1);
      z-index: -1;
    }

    .btn-sec:hover::before {
      transform: scaleX(1);
    }

    .btn-sec:hover {
      box-shadow: 0 0 24px rgba(0, 255, 255, .2);
    }

    .scroll-ind {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      opacity: .35;
      animation: fi 1s 1.8s both;
    }

    .scroll-ind span {
      font-size: 8px;
      letter-spacing: 4px;
      text-transform: uppercase;
    }

    .arr {
      width: 18px;
      height: 18px;
      border-right: 1.5px solid var(--cyan);
      border-bottom: 1.5px solid var(--cyan);
      transform: rotate(45deg);
      animation: bnc 1.4s ease-in-out infinite;
    }

    @keyframes bnc {

      0%,
      100% {
        transform: rotate(45deg) translateY(0)
      }

      50% {
        transform: rotate(45deg) translateY(6px)
      }
    }

    .sec-pad {
      padding: 80px 0;
    }

    .sec-tag {
      font-size: 9px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 10px;
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .6s, transform .6s;
    }

    .sec-tag.vis {
      opacity: 1;
      transform: translateY(0);
    }

    .sec-title {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(24px, 4.5vw, 40px);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 52px;
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .6s .12s, transform .6s .12s;
    }

    .sec-title.vis {
      opacity: 1;
      transform: translateY(0);
    }

    .rev {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .65s, transform .65s;
    }

    .rev.vis {
      opacity: 1;
      transform: translateY(0);
    }

    #about {
      background: linear-gradient(180deg, var(--bg) 0%, rgba(8, 12, 20, .8) 100%);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

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

    .about-card {
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 32px 28px;
      background: linear-gradient(135deg, rgba(31, 111, 255, .04), rgba(138, 43, 226, .03));
      position: relative;
      overflow: hidden;
      transition: border-color .3s, box-shadow .3s;
    }

    .about-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--blue), transparent);
    }

    .about-card:hover {
      border-color: rgba(0, 255, 255, .35);
      box-shadow: 0 0 32px rgba(31, 111, 255, .12);
    }

    .about-card.full {
      grid-column: 1/-1;
    }

    .ac-num {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(36px, 6vw, 56px);
      font-weight: 900;
      background: linear-gradient(135deg, var(--cyan), var(--blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 6px;
    }

    .ac-title {
      font-family: 'Orbitron', sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 8px;
    }

    .ac-desc {
      font-size: 10px;
      line-height: 1.9;
      color: rgba(200, 210, 255, .85);
    }

    .tags-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .tag {
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 12px;
      border: 1px solid rgba(31, 111, 255, .25);
      border-radius: 2px;
      color: rgba(200, 210, 255, .88);
      background: rgba(31, 111, 255, .05);
    }

    #flow {
      background: rgba(8, 12, 20, .5);
    }

    .flow-timeline {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
    }

    .flow-timeline::before {
      content: '';
      position: absolute;
      left: 22px;
      top: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(180deg, var(--blue), var(--purple), var(--blue));
    }

    .flow-item {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      padding-bottom: 32px;
      position: relative;
    }

    .flow-dot {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid var(--cyan);
      background: rgba(0, 255, 255, .07);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Orbitron', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--cyan);
      flex-shrink: 0;
      box-shadow: 0 0 14px rgba(0, 255, 255, .2);
      z-index: 1;
    }

    .flow-content {
      padding-top: 8px;
    }

    .flow-time {
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 4px;
    }

    .flow-label {
      font-family: 'Orbitron', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 4px;
    }

    .flow-desc {
      font-size: 10px;
      color: rgba(200, 210, 255, .82);
      line-height: 1.7;
    }

    #arenas {
      background: linear-gradient(180deg, rgba(8, 12, 20, .5) 0%, var(--bg) 100%);
    }

    .arena-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 18px;
    }

    .arena-card {
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 24px 22px;
      background: rgba(5, 6, 10, .6);
      transition: border-color .3s, box-shadow .3s, transform .3s;
      position: relative;
      overflow: hidden;
    }

    .arena-card:hover {
      border-color: rgba(0, 255, 255, .4);
      box-shadow: 0 0 30px rgba(31, 111, 255, .15);
      transform: translateY(-4px);
    }

    .arena-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 12px;
    }

    .arena-name {
      font-family: 'Orbitron', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--cyan);
    }

    .arena-pts {
      font-family: 'Orbitron', sans-serif;
      font-size: 11px;
      font-weight: 700;
      color: var(--amber);
      background: rgba(255, 184, 0, .08);
      padding: 4px 10px;
      border: 1px solid rgba(255, 184, 0, .2);
      border-radius: 2px;
    }

    .arena-diff {
      font-size: 8px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(200, 210, 255, .78);
      margin-bottom: 10px;
    }

    .arena-techs {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .arena-tech {
      font-size: 8px;
      letter-spacing: 1px;
      padding: 3px 8px;
      border: 1px solid rgba(138, 43, 226, .25);
      border-radius: 2px;
      color: rgba(200, 210, 255, .85);
      background: rgba(138, 43, 226, .04);
    }

    #rules {
      background: rgba(8, 12, 20, .4);
    }

    .rules-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    @media(max-width:640px) {
      .rules-grid {
        grid-template-columns: 1fr;
      }
    }

    .rule-block {
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 28px 24px;
      background: rgba(5, 6, 10, .5);
    }

    .rule-block-title {
      font-family: 'Orbitron', sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 18px;
    }

    .rule-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .rule-list li {
      font-size: 10px;
      line-height: 1.7;
      color: rgba(200, 210, 255, .85);
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .rule-list li::before {
      content: '▸';
      color: var(--blue);
      flex-shrink: 0;
      margin-top: 1px;
    }

    #prizes {
      background: linear-gradient(180deg, var(--bg) 0%, rgba(8, 12, 20, .6) 100%);
    }

    .prize-podium {
      display: flex;
      gap: 20px;
      justify-content: center;
      align-items: flex-end;
      flex-wrap: wrap;
    }

    .podium-card {
      border-radius: 8px;
      padding: 32px 28px 28px;
      text-align: center;
      position: relative;
      overflow: hidden;
      border: 1px solid;
    }

    .podium-card.p1 {
      border-color: rgba(255, 215, 0, .35);
      background: linear-gradient(180deg, rgba(255, 215, 0, .07), rgba(5, 6, 10, .9));
      min-width: 180px;
    }

    .podium-card.p2 {
      border-color: rgba(192, 192, 192, .25);
      background: linear-gradient(180deg, rgba(192, 192, 192, .05), rgba(5, 6, 10, .9));
      min-width: 160px;
    }

    .podium-card.p3 {
      border-color: rgba(255, 184, 0, .2);
      background: linear-gradient(180deg, rgba(255, 184, 0, .05), rgba(5, 6, 10, .9));
      min-width: 150px;
    }

    .podium-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
    }

    .podium-card.p1::before {
      background: linear-gradient(90deg, transparent, #FFD700, transparent);
    }

    .podium-card.p2::before {
      background: linear-gradient(90deg, transparent, #C0C0C0, transparent);
    }

    .podium-card.p3::before {
      background: linear-gradient(90deg, transparent, var(--amber), transparent);
    }

    .pd-medal {
      font-size: 44px;
      margin-bottom: 12px;
      display: block;
    }

    .pd-place {
      font-family: 'Orbitron', sans-serif;
      font-size: 9px;
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .p1 .pd-place {
      color: rgba(255, 215, 0, .7);
    }

    .p2 .pd-place {
      color: rgba(192, 192, 192, .6);
    }

    .p3 .pd-place {
      color: rgba(255, 184, 0, .6);
    }

    .pd-amt {
      font-family: 'Orbitron', sans-serif;
      font-weight: 900;
      font-size: clamp(26px, 4vw, 38px);
    }

    .p1 .pd-amt {
      color: #FFD700;
      text-shadow: 0 0 20px rgba(255, 215, 0, .4);
    }

    .p2 .pd-amt {
      color: #C0C0C0;
    }

    .p3 .pd-amt {
      color: var(--amber);
    }

    .pd-sub {
      font-size: 9px;
      letter-spacing: 2px;
      color: rgba(200, 210, 255, .75);
      margin-top: 6px;
    }

    .cert-note {
      text-align: center;
      margin-top: 28px;
      font-size: 10px;
      letter-spacing: 2px;
      color: rgba(200, 210, 255, .80);
    }

    .cert-note span {
      color: var(--green);
    }

    #resources {
      background: rgba(8, 12, 20, .4);
    }

    .res-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
    }

    .res-card {
      border: 1px solid rgba(31, 111, 255, .15);
      border-radius: 6px;
      padding: 22px 20px;
      background: rgba(5, 6, 10, .5);
      transition: border-color .3s;
    }

    .res-card:hover {
      border-color: rgba(0, 255, 255, .3);
    }

    .res-cat {
      font-size: 8px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 12px;
    }

    .res-items {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .res-item {
      font-size: 10px;
      color: rgba(200, 210, 255, .85);
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .res-item::before {
      content: '//';
      color: rgba(31, 111, 255, .5);
      font-size: 9px;
    }

    #register {
      padding: 80px 16px;
      text-align: center;
      background: linear-gradient(180deg, rgba(8, 12, 20, .5) 0%, var(--bg) 100%);
      position: relative;
      z-index: 10;
    }

    .cta-box {
      max-width: 620px;
      margin: 0 auto;
      border: 1px solid rgba(0, 255, 255, .2);
      border-radius: 8px;
      padding: 48px 32px;
      background: linear-gradient(135deg, rgba(8, 12, 20, .95), rgba(5, 6, 10, .98));
      position: relative;
      overflow: hidden;
    }

    .cta-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    }

    .cta-title {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(22px, 4vw, 36px);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 10px;
    }

    .cta-sub {
      font-size: 10px;
      letter-spacing: 2px;
      color: rgba(200, 210, 255, .82);
      margin-bottom: 10px;
    }

    .cta-note {
      font-size: 10px;
      color: rgba(200, 210, 255, .78);
      margin-bottom: 36px;
      line-height: 1.8;
    }

    .cta-note span {
      color: var(--cyan);
    }

    .qr-placeholder {
      width: 140px;
      height: 140px;
      border: 1px dashed rgba(0, 255, 255, .25);
      border-radius: 6px;
      margin: 0 auto 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      letter-spacing: 2px;
      color: rgba(0, 255, 255, .4);
      flex-direction: column;
      gap: 8px;
      background: rgba(0, 255, 255, .02);
    }

    .divider {
      max-width: 1080px;
      margin: 0 auto;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(31, 111, 255, .25), transparent);
    }

    footer {
      position: relative;
      z-index: 10;
      padding: 48px 24px 32px;
      border-top: 1px solid rgba(31, 111, 255, .1);
    }

    .footer-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      text-align: center;
    }

    .footer-logo {
      font-family: 'Orbitron', sans-serif;
      font-size: 20px;
      font-weight: 900;
      letter-spacing: 5px;
      color: var(--cyan);
      text-shadow: 0 0 18px rgba(0, 255, 255, .35);
    }

    .footer-org {
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(200, 210, 255, .3);
    }

    .footer-links {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .footer-links a {
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(200, 210, 255, .3);
      text-decoration: none;
      transition: color .2s;
    }

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

    .footer-copy {
      font-size: 9px;
      letter-spacing: 2px;
      color: rgba(200, 210, 255, .18);
    }

    @keyframes fsd {
      from {
        opacity: 0;
        transform: translateY(-18px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes fsu {
      from {
        opacity: 0;
        transform: translateY(28px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes fi {
      from {
        opacity: 0
      }

      to {
        opacity: .35
      }
    }

    /* ── Touch / Mobile overrides ── */
    @media(hover:none), (pointer:coarse) {

      .cur,
      .cur-r {
        display: none !important;
      }

      body {
        cursor: auto;
      }

      a,
      button,
      .arena-card,
      .about-card,
      .podium-card,
      .rule-block,
      .res-card {
        cursor: pointer;
      }
    }

    @media(max-width:480px) {
      nav {
        padding: 12px 16px;
      }

      .nav-brand {
        font-size: 13px;
        letter-spacing: 3px;
      }

      #hero {
        padding: 90px 16px 48px;
      }

      .hero-title {
        letter-spacing: 2px;
      }

      .hero-tag {
        letter-spacing: 4px;
      }

      .hero-date {
        font-size: clamp(9px, 3vw, 12px);
      }

      .prize-chip {
        font-size: clamp(12px, 4vw, 18px);
        padding: 8px 16px;
      }

      .btn-prim,
      .btn-sec {
        padding: 14px 24px;
        font-size: 10px;
        letter-spacing: 3px;
      }

      .sec-pad {
        padding: 56px 0;
      }

      .container {
        padding: 0 16px;
      }

      .about-grid {
        grid-template-columns: 1fr !important;
      }

      .rules-grid {
        grid-template-columns: 1fr !important;
      }

      .prize-podium {
        flex-direction: column;
        align-items: center;
      }

      .podium-card.p1 {
        transform: none !important;
        min-width: 220px;
      }

      .podium-card.p2,
      .podium-card.p3 {
        min-width: 220px;
      }

      .cta-box {
        padding: 32px 20px;
      }

      .cta-title {
        font-size: clamp(18px, 6vw, 28px);
      }

      .hc {
        display: none;
      }

      .qr-placeholder {
        width: 120px;
        height: 120px;
      }

      .flow-timeline::before {
        left: 18px;
      }

      .flow-dot {
        width: 36px;
        height: 36px;
        font-size: 11px;
      }

      .flow-item {
        gap: 16px;
      }

      .ac-num {
        font-size: clamp(28px, 8vw, 44px) !important;
      }

      .footer-links {
        gap: 16px;
      }
    }

    @media(min-width:481px) and (max-width:768px) {
      .prize-podium {
        flex-direction: column;
        align-items: center;
      }

      .podium-card.p1 {
        transform: none !important;
        min-width: 240px;
      }

      .podium-card.p2,
      .podium-card.p3 {
        min-width: 240px;
      }

      .cta-box {
        padding: 40px 28px;
      }

      .about-grid {
        grid-template-columns: 1fr !important;
      }
    }

    .team-card {
  border:1px solid rgba(31,111,255,.2);
  border-radius:6px;
  padding:28px 24px;
  background:linear-gradient(135deg,rgba(31,111,255,.05),rgba(138,43,226,.03));
  position:relative;
  overflow:hidden;
  text-align:center;
  transition:all .3s ease;
}

.team-card:hover {
  border-color:rgba(0,255,255,.4);
  box-shadow:0 0 24px rgba(31,111,255,.15);
  transform:translateY(-4px);
}

.team-img {
  width:90px;
  height:90px;
  object-fit:cover;
  border-radius:50%;
  margin-bottom:16px;
  border:2px solid #00FFFF;
}

.team-name {
  font-family:'Orbitron',sans-serif;
  font-size:16px;
  font-weight:700;
  color:#E8EEFF;
  margin-bottom:6px;
}

.team-role {
  font-size:9px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(200,210,255,.4);
  font-family:'Space Mono',monospace;
}

/* ===== HERO MOBILE CENTER FIX ===== */
@media (max-width: 768px) {

  #hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    min-height: 100vh;
    padding-left: 20px;
    padding-right: 20px;
  }

  .orbit-wrap {
    left: 50%;
    transform: translate(-50%, -50%);
  }

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

  .prize-row {
    justify-content: center;
  }

}

/* ===== Make CYBERSIEGE slightly smaller on mobile ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(36px, 10vw, 64px);
  }
}

/* Prevent horizontal scroll globally */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Ensure sections don't overflow */
section {
  max-width: 100%;
  overflow-x: hidden;
}

/* Fix orbit mobile overflow */
@media (max-width: 768px) {
  .orbit-wrap {
    width: 85vw;
    height: 85vw;
  }
}

.team-contact {
  margin-top: 12px;
  font-size: 0.85rem;
  opacity: 0.9;
}

.contact-item {
  margin: 4px 0;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-item a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.event-support-box {
  margin: 40px auto 0 auto;
  padding: 18px;
  max-width: 500px;
  text-align: center;

  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.4);
  border-radius: 6px;

  backdrop-filter: blur(4px);
}

.support-title {
  font-family: 'Orbitron', sans-serif;
  color: #00FFFF;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 8px;
}

.support-text {
  font-size: 0.85rem;
  margin-bottom: 6px;
  opacity: 0.85;
}

.support-email a {
  color: #00FFFF;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.support-email a:hover {
  opacity: 0.7;
}