:root{
  --phone: 414px;
  --lime: #b6ff00;
  --paper: #f7f7f1;
  --black: #070707;
  --hero-h: 273px;
  --side: 14px;
}
*{box-sizing:border-box}
html{background:#202020;scroll-behavior:auto}
body{margin:0;background:#111111;color:#111;    font-family:'Outfit', sans-serif;
 -webkit-font-smoothing:antialiased}
.phone{width:min(100vw,var(--phone));margin:0 auto;background:var(--paper);min-height:100vh;position:relative;  overflow:visible;
}





/* ALWAYS FIXED */
.hamburger{

  position:fixed;
  top:18px;
  right:calc((100vw - min(100vw,var(--phone)))/2 + 13px);

  width:62px;
  height:62px;

  border:none;
  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:7px;

  border-radius:22px;

  background:
    radial-gradient(circle at top left,
      rgba(182,255,0,.18),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(255,255,255,.14),
      rgba(255,255,255,.05)
    );

  border:1px solid rgba(255,255,255,.15);

  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);

  box-shadow:
      inset 0 1px 0 rgba(255,255,255,.14),
      0 14px 35px rgba(0,0,0,.45),
      0 0 30px rgba(182,255,0,.12);

  transition:.28s cubic-bezier(.2,.8,.2,1);

  z-index:99999;

  overflow:hidden;
}

.hamburger::before{

    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(182,255,0,.10),
            transparent 40%,
            transparent 70%,
            rgba(255,255,255,.06)
        );

    pointer-events:none;
}

.hamburger:hover{

    transform:
        translateY(-2px)
        scale(1.05);

    border-color:rgba(182,255,0,.35);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18),
        0 18px 40px rgba(0,0,0,.52),
        0 0 40px rgba(182,255,0,.18);
}

.hamburger:active{

    transform:scale(.95);
}

.hamburger span{

    width:28px;
    height:5px;

    border-radius:999px;

    background:linear-gradient(
        90deg,
        #d6ff43,
        #b6ff00
    );

    box-shadow:
        0 0 12px rgba(182,255,0,.55);

    transition:.25s;
}

.hamburger:hover span:nth-child(1){

    transform:translateX(-3px);
}

.hamburger:hover span:nth-child(2){

    width:22px;
}

.hamburger:hover span:nth-child(3){

    transform:translateX(3px);
}



.menu-close{
  display:none !important;
}

.hamburger.is-open span:nth-child(1){
  transform:translateY(12px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2){
  opacity:0;
  transform:scaleX(0);
}

.hamburger.is-open span:nth-child(3){
  transform:translateY(-12px) rotate(-45deg);
}





/* HEADER FIXED UNTIL PLAYING HONORS */
.fixed-hero{position:fixed;top:0;left:50%;width:min(100vw,var(--phone));height:var(--hero-h);transform:translateX(-50%);z-index:2000;transition:opacity .2s ease, transform .2s ease}
.fixed-hero.is-hidden{opacity:0;transform:translateX(-50%) translateY(-18px)}
.hero-space{height:var(--hero-h);
 pointer-events:none;}

.hero-card{
  position:relative;
  height:100%;
  overflow:hidden;
  background:
    #6ec0ef
    url('/images/hero.jpg')
    center top / cover
    no-repeat;

  border-bottom-left-radius:31px;
  border-bottom-right-radius:31px;
  box-shadow:0 15px 24px rgba(0,0,0,.22);
}
 

.hero-card::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,0) 35%,rgba(0,0,0,.18) 58%,rgba(0,0,0,.68) 100%)}

.hero-socials{position:absolute;top:8px;left:10px;z-index:3;color:#fff;font-size:18px;display:flex;gap:5px;line-height:1;text-shadow:0 2px 8px rgba(0,0,0,.3)}
.hero-copy{position:absolute;left:17px;bottom:84px;z-index:4;color:#fff;text-shadow:0 2px 10px rgba(0,0,0,.45)}
.hero-copy h1{margin:0;font-size:29px;line-height:.86;font-weight:900;letter-spacing:0px}
.hero-copy p{margin:3px 0 0;color:rgba(255,255,255,.78);font-size:15px;font-weight:100;letter-spacing:-.2px}



.honors-hero h1{margin:0;font-size:29px;line-height:.86;font-weight:900;letter-spacing:0px}
.honors-hero p{margin:3px 0 0;color:rgba(255,255,255,.78);font-size:15px;font-weight:100;letter-spacing:-.2px}


.chip-icon{
     width:17px;
    height:17px;
    object-fit:contain;
    padding-right:4px;
    flex-shrink:0;
} 


/* HEADER INFO BOXES ARE CODED HERE */
.hero-chips{
    position:absolute;
    left:17px;
    right:10px;
    bottom:20px;
    z-index:5;
    display:flex;
    flex-wrap:wrap;
    justify-content:start;
    gap:4px;
    align-items:center;
}

.break{
    flex-basis:100%;
    height:0;
}

.chip{

  display:flex;
align-items:center;
justify-content:center;


    height:25px;

    border-radius:999px;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    
    border:1px solid rgba(255,255,255,.22);

    box-shadow:none;

    color:#fff;

    font-size:12px;
    font-weight:600;

    padding:0 14px;
}

.chip-lime{
    background:rgba(255,255,255,.18);
    color:#fff;
}



.hero-socials{
    position:absolute;
    top:12px;
    left:17px;
    z-index:3;

    display:flex;
    gap:7px;
}

.hero-socials a{
  color:#fff;
    text-decoration:none;
    font-size:31px;
    line-height:1;

    transition:.2s ease;
}

.hero-socials a:hover{
    opacity:.8;
}



.chip:nth-child(5){grid-column:auto}

/* CONTENT */
.about-section{position:relative;z-index:5;background:var(--paper);padding:25px 17px 14px}
.section-title{margin:0 0 13px;font-size:22px;line-height:1;font-weight:950;letter-spacing:-.6px}
.about-copy{line-height:1.51;letter-spacing:-.13px;color:#161616}.about-copy p{margin:0 0 17px}


.caps-panel{
  position:relative;
  z-index:4;
  margin:0;
  padding:18px 17px 20px;
  border-radius:28px;

  background:
    url('/images/zackbw.jpg') center/cover no-repeat;

  color:#fff;
  box-shadow:0 18px 35px rgba(0,0,0,.35);
  overflow:hidden;
}

.caps-panel::before{
  content:"";
  position:absolute;
  inset:0;
  backdrop-filter:blur(0px);
  -webkit-backdrop-filter:blur(4px);
  z-index:0;
}

.cap-row{

display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:6px 8px;


  position:relative;
  z-index:1;

  grid-template-columns:26px 1fr auto;

  min-height:39px;
  margin-bottom:6px;
  padding:7px 11px;

  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(39, 39, 39, 0.34);

  font-size:11.8px;
  line-height:1.1;
}

.cap-row:last-child{
  margin-bottom:0;
}

.cap-logo{
  width:21px;
  height:21px;
  object-fit:contain;
  opacity:.95;
}

.cap-row span{
  color:rgba(255,255,255,.92);
  white-space:nowrap;

   flex:1 1 260px;
    min-width:0;
}

.cap-row b{
  font-weight:900;
  color:#fff;
}

.cap-row em{
  font-style:normal;
  color:white;
  font-weight:800;
  white-space:nowrap;
  font-size:12px;
}


.video-wrap{
    padding:23px 0 23px 0;
    margin:0;
    background:#ffffff;
}

.video-frame{
    width:100%;
    aspect-ratio:16/9;

    overflow:hidden;

    border-radius:23px;

    background:#ffffff;

    box-shadow:
      0 15px 40px rgba(0,0,0,.35);
}

.video-frame iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
}

/* HONORS STICKY REPLACES HEADER */
.honors-chapter{position:relative;background:#080808;color:#fff;}

.honors-hero{
  position:sticky;
  top:0;
  height:285px;
  z-index:3000;

  background-image:url('/images/honors_hero.jpg');
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
  background-color:#101010;

  border-bottom-left-radius:31px;
  border-bottom-right-radius:31px;
  box-shadow:0 15px 24px rgba(0,0,0,.22);
  overflow:hidden;
}


.honors-copy{
    position:absolute;
    left:17px;
    top:120px; /* bunu artırıp azaltabilirsin */
    z-index:10;
    color:#fff;
}

.honors-copy h1{
    margin:0;
    font-size:29px;
    line-height:.86;
    font-weight:900;
}

.honors-copy p{
    margin:6px 0 0;
    font-size:15px;
    color:rgba(255,255,255,.8);
}


.honors-badge{
    position:absolute;
left:50%;
transform:translateX(-50%);
white-space:nowrap;
width:max-content;
    bottom:18px;

    display:inline-flex;
    align-items:center;
    gap:8px;

    height:50px;
    padding:0 40px;

    border-radius:999px;

    background:rgba(0, 132, 255, 0.45);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.12);

    color:#fff;
    font-size:23px;
    font-weight:800;
    letter-spacing:.8px;

    z-index:20;
}



.honors-list{
  margin-top:-2px;
  padding:22px 14px 42px;
  background:linear-gradient(45deg,#000000 0%,#131313 100%);
}


.honor-card{

    
  position:relative;
  overflow:hidden;

  display:flex;
  align-items:center;
  gap:14px;

  min-height:72px;
  margin:0 0 12px;
  padding:13px 18px;

  border-radius:18px;

  background:
    linear-gradient(135deg,
      rgba(255,255,255,.16) 0%,
      rgba(255,255,255,.05) 45%,
      rgba(0,132,255,.18) 100%
    );

  border:1px solid rgba(255,255,255,.16);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 12px 28px rgba(0,0,0,.42);

  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  font-size:14px;
  line-height:1.18;
}

.honor-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    rgba(255,255,255,.18),
    transparent 35%,
    transparent 70%,
    rgba(255,255,255,.08)
  );
  opacity:.55;
  pointer-events:none;
}

.honor-card::after{
  content:"";
  position:absolute;
  right:12px;
  top:16px;
  bottom:16px;
  width:3px;
  border-radius:99px;
  background:rgb(102, 224, 255);
  box-shadow:0 0 12px rgb(200, 200, 255);
}


.honor-content{
  position:relative;
  z-index:1;
  padding-right:24px;

  display:flex;
  flex-direction:column;
  justify-content:center;
}


.honor-card b{
  display:block;
  margin-bottom:4px;
  font-size:17px;
  line-height:1;
  font-weight:900;
  color:white;
}

.honor-title{
  font-size:15px;
  color:#fff;
}

.honor-location{
  margin-top:4px;
  font-size:12px;
  color:rgba(255,255,255,.55);
}


.honor-logo-wrap{
  width:64px;
  height:64px;
  flex:0 0 64px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;
  background:rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.14);

  margin:0;
  padding:0;
  position:relative;
  z-index:2;
}

.honor-logo{
  width:36px;
  height:36px;
  object-fit:contain;
  display:block;
  margin:0;
  padding:0;
}





.hero3-chapter{
  position:relative;
  background:#000;
  color:#fff;
}

.hero3-hero{
  position:sticky;
  top:0;
  height:285px;
  z-index:3000;

  background-image:url('/images/hero3.jpg');
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
  background-color:#101010;

  border-bottom-left-radius:31px;
  border-bottom-right-radius:31px;
  box-shadow:0 15px 24px rgba(0,0,0,.22);
  overflow:hidden;
}

.hero3-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.05) 20%,
    rgba(0,0,0,.35) 60%,
    rgba(0,0,0,.78) 100%
  );
  z-index:1;
}

.hero3-copy{
position:absolute;
    left:0;
    right:0;
    display:flex;
    flex-direction:column;
    align-items:center;
  position:absolute;
padding: 0 10px 0 10px;
    text-align:center;
  bottom:86px;
  z-index:2;
  color:#fff;
}

.hero3-copy h1{
  margin:0;
  font-size:29px;
  line-height:.86;
  font-weight:900;
}

.hero3-copy p{
  margin:6px 0 0;
  font-size:15px;
  color:rgba(255,255,255,.8);
}

.hero3-badge{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:18px;
  z-index:3;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:50px;
  padding:0 34px;
  white-space:nowrap;

  border-radius:999px;

  background:rgba(0, 255, 0, 0.124);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,.12);

  color:#fff;
  font-size:20px;
  font-weight:800;
  letter-spacing:.8px;
}



.hero4-badge{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:18px;
  z-index:3;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:50px;
  padding:0 31px;
  white-space:nowrap;

  border-radius:999px;

  background:rgba(0, 255, 247, 0.226);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,.12);

  color:#fff;
  font-size:17px;
  font-weight:800;
  letter-spacing:.6px;
}



.hero3-content{
  min-height:800px;
  padding:22px 14px 42px;
  background:linear-gradient(45deg,#000 0%,#131313 100%);
}

.hero3-card{
  position:relative;
  overflow:hidden;

  margin:0 0 12px;
  padding:18px;

  border-radius:18px;

  background:linear-gradient(
    135deg,
    rgba(255,255,255,.16) 0%,
    rgba(255,255,255,.05) 45%,
    rgba(0,132,255,.18) 100%
  );

  border:1px solid rgba(255,255,255,.16);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 12px 28px rgba(0,0,0,.42);

  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.hero3-card b{
  display:block;
  margin-bottom:6px;
  font-size:18px;
  font-weight:900;
}

.hero3-card p{
  margin:0;
  font-size:14px;
  line-height:1.35;
  color:rgba(255,255,255,.72);
}










.hero5-chapter{
  position:relative;
  background:#000;
  color:#fff;
}

.hero5-hero{
  position:sticky;
  top:0;
  height:285px;
  z-index:3000;

  background-image:url('/images/hero5.jpg');
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
  background-color:#101010;

  border-bottom-left-radius:31px;
  border-bottom-right-radius:31px;
  box-shadow:0 15px 24px rgba(0,0,0,.22);
  overflow:hidden;
}

.hero5-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.08) 20%,
    rgba(0,0,0,.38) 58%,
    rgba(0,0,0,.82) 100%
  );
  z-index:1;
}

.hero5-copy{
  position:absolute;
  left:0;
  right:0;
  bottom:82px;
  z-index:2;
  text-align:center;
  padding:0 16px;
  color:#fff;
}

.hero5-copy h1{
  margin:0;
  font-size:34px;
  line-height:.9;
  font-weight:900;
  letter-spacing:-1px;
  font-style:italic;
}

.hero5-badge{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:18px;
  z-index:3;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:50px;
  padding:0 30px;
  white-space:nowrap;

  border-radius:999px;

  background:rgba(255, 0, 0, 0.32);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,.14);

  color:#fff;
  font-size:23px;
  font-weight:800;
  letter-spacing:.6px;
}

.worldcup-text-section{
  position:relative;
  z-index:2;
  background:var(--paper);
  padding:25px 17px 18px;
}

.worldcup-copy{
  line-height:1.51;
  letter-spacing:-.13px;
  color:#161616;
}

.worldcup-copy p{
  margin:0 0 17px;
}

.worldcup-gallery{
  padding-top:28px;
}















.media-section{
  background:#020202;
  color:#fff;
  overflow:visible;
}

.media-top-label{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  color:var(--lime);
  font-size:11px;
  font-weight:900;
  letter-spacing:2px;
}

.media-top-label span{
  width:42px;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--lime),transparent);
}

.media-title{
  margin:14px 0 12px;
  text-align:center;
  font-size:43px;
  line-height:.9;
  font-weight:900;
  letter-spacing:-2px;
  font-style:italic;
}

.media-title strong{
  color:#fff;
}

.media-title em{
  color:transparent;
  -webkit-text-stroke:1px rgba(255,255,255,.9);
  font-style:italic;
}

.media-subtitle{
  margin:0 0 26px;
  text-align:center;
  color:rgba(255,255,255,.68);
  font-size:14px;
  line-height:1.35;
}

.media-feature{
  position:relative;
  margin:0 14px;
  height:360px;

  border-radius:26px;
  overflow:hidden;

  background:#111;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 24px 50px rgba(0,0,0,.55);
}

.media-feature::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(0,0,0,.02) 40%,rgba(0,0,0,.78) 100%),
    linear-gradient(90deg,rgba(0,0,0,.35),transparent 55%);
  pointer-events:none;
}

.media-feature img,
.worldcup-feature img,
.extra-feature img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

}

.media-feature-badge{
  position:absolute;
  top:18px;
  left:18px;
  z-index:2;

  display:flex;
  align-items:center;
  gap:9px;

  height:34px;
  padding:0 16px;

  border-radius:999px;
  background:rgba(0,0,0,.62);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);

  color:#fff;
  font-size:11px;
  font-weight:900;
  letter-spacing:.6px;
}

.media-feature-badge i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--lime);
  box-shadow:0 0 14px var(--lime);
}

.media-info{
  position:absolute;
  left:18px;
  bottom:28px;
  z-index:2;
}

.media-info span{
  display:block;
  margin-bottom:5px;
  color:var(--lime);
  font-size:12px;
  font-weight:900;
}

.media-info strong{
  display:block;
  font-size:27px;
  line-height:1;
  font-weight:900;
}

.media-info small{
  display:block;
  margin-top:7px;
  color:rgba(255,255,255,.68);
  font-size:14px;
}

.media-count{
  position:absolute;
  right:18px;
  bottom:34px;
  z-index:2;

  font-size:18px;
  font-weight:800;
}

.media-count b{
  color:var(--lime);
}

.media-count span{
  color:rgba(255,255,255,.55);
}

.media-thumbs{
  display:flex;
  gap:12px;
  overflow-x:auto;
  overflow-y:hidden;
  padding:22px 14px 18px;
  scroll-snap-type:x proximity;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}

.media-thumbs::-webkit-scrollbar{
  display:none;
}

.media-thumb{
  flex:0 0 82px;
  width:82px;
  min-width:82px;
  height:118px;

  padding:0;
  border:1px solid rgba(255,255,255,.14);
  border-radius:15px;
  overflow:hidden;

  background:#111;
  scroll-snap-align:start;
  cursor:pointer;

  opacity:.72;
  transition:.22s ease;

  appearance:none;
  -webkit-appearance:none;
}

.media-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;

  pointer-events:none;
  user-select:none;
  -webkit-user-drag:none;
}

.media-thumb.active{
  opacity:1;
  border-color:var(--lime);
  box-shadow:
    0 0 0 1px var(--lime),
    0 0 22px rgba(182,255,0,.38);
  transform:translateY(-3px);
}


.media-slider{
  position:relative;
}

.media-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);

  width:42px;
  height:42px;

  border:1px solid rgba(255,255,255,.16);
  border-radius:50%;

  background:rgba(0,0,0,.45);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  color:var(--lime);
  font-size:17px;

  z-index:20;

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:
    0 12px 25px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.12);

  cursor:pointer;
}

.media-nav-left{
  left:8px;
}

.media-nav-right{
  right:8px;
}

.media-nav:active{
  transform:translateY(-50%) scale(.94);
}

.media-progress{
  margin:0 14px;
  height:2px;
  background:rgba(255,255,255,.14);
  overflow:hidden;
}

.media-progress span{
  display:block;
  width:16.66%;
  height:100%;
  background:var(--lime);
  box-shadow:0 0 12px var(--lime);
  transition:.25s ease;
}






.hero4-chapter{
  position:relative;
  background:#000;
  color:#fff;
}

.hero4-hero{
  position:sticky;
  top:0;
  height:285px;
  z-index:3000;

  background-image:url('/images/hero4.jpg');
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
  background-color:#101010;

  border-bottom-left-radius:31px;
  border-bottom-right-radius:31px;
  box-shadow:0 15px 24px rgba(0,0,0,.22);
  overflow:hidden;
}

.hero4-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.18),rgba(0,0,0,.78));
  z-index:1;
}

.hero4-copy{
  position:absolute;
  left:0;
  right:0;
  bottom:77px;
  z-index:2;
  text-align:center;
  padding:0 18px;
}

.hero4-copy span{
  color:var(--lime);
  font-size:11px;
  font-weight:900;
  letter-spacing:1px;
}

.hero4-copy h1{
  margin:14px 0 10px;
  font-size:48px;
  line-height:.82;
  font-weight:900;
  font-style:italic;
  letter-spacing:-2px;
}

.hero4-copy p{
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:14px;
  line-height:1.35;
}

.highlights-section{
  position:relative;
  z-index:2;
  padding:22px 14px 42px;
  background:linear-gradient(45deg,#000 0%,#101010 100%);
}

.highlights-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  margin-bottom:22px;
  padding:16px 8px;
  border-radius:24px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.highlights-stats div{
  text-align:center;
  border-right:1px solid rgba(255,255,255,.13);
}

.highlights-stats div:last-child{
  border-right:0;
}

.highlights-stats i{
  display:block;
  color:var(--lime);
  font-size:18px;
  margin-bottom:7px;
}

.highlights-stats b{
  display:block;
  font-size:18px;
  line-height:1;
}

.highlights-stats span{
  display:block;
  margin-top:4px;
  font-size:10px;
  color:rgba(255,255,255,.65);
  letter-spacing:.8px;
}

.highlight-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin:0 0 14px;
}

.highlight-header h2{
  margin:0;
  font-size:15px;
  letter-spacing:1px;
}

.highlight-header span{
  color:var(--lime);
  font-size:12px;
  font-weight:900;
  letter-spacing:2px;
}

.highlight-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.highlight-card{
  display:grid;
  grid-template-columns:44% 1fr;
  min-height:118px;
  overflow:hidden;

  text-decoration:none;
  color:#fff;

  border-radius:18px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.13);
  box-shadow:0 14px 30px rgba(0,0,0,.38);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}



.highlight-thumb{
  position:relative;
  overflow:hidden;
}

.highlight-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:brightness(.78);
}

.play-btn{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(0,0,0,.48);
  border:1px solid rgba(255,255,255,.28);
  backdrop-filter:blur(10px);
}

.highlight-info{
  position:relative;
  padding:14px 14px 14px 16px;
}

.highlight-info small{
  color:var(--lime);
  font-size:15px;
  font-weight:900;
}

.highlight-info h3{
  margin:12px 0 5px;
  font-size:17px;
  line-height:1.05;
}

.highlight-info p{
  margin:0;
  color:rgba(255,255,255,.66);
  font-size:12px;
}

.highlight-info em{
  position:absolute;
  right:12px;
  bottom:12px;
  font-style:normal;
  font-size:12px;
  padding:4px 8px;
  border-radius:8px;
  background:rgba(0,0,0,.58);
}


.video-modal{
  position:fixed;
  inset:0;
  z-index:50000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
}

.video-modal.show{
  display:flex;
}

.video-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.video-modal-card{
  position:relative;
  z-index:2;
  width:min(100%, 414px);
  border-radius:26px;
  overflow:hidden;
  background:rgba(15,15,15,.86);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 30px 80px rgba(0,0,0,.75);
}

.video-modal-close{
  position:absolute;
  top:10px;
  right:10px;
  z-index:5;
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid rgba(182,255,0,.55);
  background:rgba(0,0,0,.62);
  color:#fff;
  font-size:24px;
  display:grid;
  place-items:center;
  box-shadow:0 0 20px rgba(182,255,0,.35);
}

.video-modal-frame{
  width:100%;
  aspect-ratio:16/9;
  background:#000;
}

.video-modal-frame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.video-modal-info{
  padding:17px 18px 20px;
}

.video-modal-info h3{
  margin:0 0 6px;
  color:#fff;
  font-size:22px;
  font-weight:900;
}

.video-modal-info p{
  margin:0;
  color:rgba(255,255,255,.68);
  font-size:14px;
}

body.video-open{
  overflow:hidden;
}





.highlight-card{
  border:1px solid rgba(255,255,255,.13);
  font-family:inherit;
  text-align:left;
  cursor:pointer;
}




.instagram-section{
  background:#020202;
  color:#fff;
  padding:34px 14px 44px;
}


.instagram-head span{
  color:var(--lime);
  font-size:11px;
  font-weight:900;
  letter-spacing:2px;
}

.instagram-head h2{
  margin:10px 0 8px;
  font-size:34px;
  line-height:.9;
  font-weight:900;
  letter-spacing:-1px;
  font-style:italic;
}

.instagram-head{
  text-align:center;
  margin-bottom:22px;
}

.instagram-title-img{
  width:220px;
  max-width:85%;
  display:block;
  margin:0 auto 12px;
  object-fit:contain;

  filter:
    drop-shadow(0 0 18px rgba(255,255,255,.12))
    drop-shadow(0 0 40px rgba(182,255,0,.12));
}


.instagram-head p{
  margin:0;
  color:rgba(255,255,255,.64);
  font-size:14px;
  line-height:1.35;
}
.instagram-card{
  overflow:hidden;
  border-radius:24px;
  padding:10px;

  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.14);

  box-shadow:0 18px 45px rgba(0,0,0,.45);

  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.instagram-card iframe,
.instagram-card .instagram-media{
  max-width:100% !important;
  min-width:0 !important;
  width:100% !important;
  margin:0 auto !important;
}



.x-section{
  background:
    radial-gradient(circle at top left, rgba(182,255,0,.12), transparent 34%),
    linear-gradient(180deg,#020202 0%,#080808 100%);
  color:#fff;
  padding:36px 31px 48px;
}

.x-head{
  display:flex;
  gap:14px;
  align-items:center;
  margin-bottom:22px;
}

.x-icon{
  width:56px;
  height:56px;
  flex:0 0 56px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 18px 35px rgba(0,0,0,.38);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.x-icon i{
  font-size:28px;
  color:#fff;
}

.x-head span{
  display:block;
  margin-bottom:5px;
  color:var(--lime);
  font-size:10px;
  font-weight:900;
  letter-spacing:2px;
}

.x-head h2{
  margin:0;
  font-size:31px;
  line-height:.95;
  font-weight:900;
  letter-spacing:-1px;
  font-style:italic;
}

.x-head p{
  margin:7px 0 0;
  color:rgba(255,255,255,.62);
  font-size:13px;
  line-height:1.3;
}

.x-feed-card{
  overflow:hidden;
  border-radius:28px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 24px 55px rgba(0,0,0,.55);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}

.x-feed-top{
  height:48px;
  display:flex;
  align-items:center;
  gap:9px;
  padding:0 16px;
  background:rgba(0,0,0,.42);
  border-bottom:1px solid rgba(255,255,255,.1);
}

.x-feed-top span{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--lime);
  box-shadow:0 0 16px var(--lime);
}

.x-feed-top b{
  color:#fff;
  font-size:14px;
  font-weight:900;
}

.x-feed-top em{
  margin-left:auto;
  font-style:normal;
  color:rgba(255,255,255,.5);
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
}

.x-feed-frame{
  height:680px;
  overflow:hidden;
  background:#111;
}

.x-feed-frame iframe{
  width:100%;
  height:100%;
  display:block;
  border:0;
}














.hero6-chapter{
  position:relative;
  background:#000;
  color:#fff;
}

.hero6-hero{
  position:sticky;
  top:0;
  height:285px;
  z-index:3000;

  background-image:url('/images/hero6.jpg');
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
  background-color:#101010;

  border-bottom-left-radius:31px;
  border-bottom-right-radius:31px;
  box-shadow:0 15px 24px rgba(0,0,0,.22);
  overflow:hidden;
}

.hero6-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.1) 15%,
    rgba(0,0,0,.42) 55%,
    rgba(0,0,0,.84) 100%
  );
  z-index:1;
}

.hero6-copy{
  position:absolute;
  left:0;
  right:0;
  bottom:82px;
  z-index:2;
  text-align:center;
  padding:0 16px;
  color:#fff;
}

.hero6-copy h1{
  margin:0;
  font-size:36px;
  line-height:.86;
  font-weight:900;
  letter-spacing:-1px;
  font-style:italic;
}

.hero6-badge{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:18px;
  z-index:3;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:50px;
  padding:0 34px;
  white-space:nowrap;

  border-radius:999px;
  background:rgba(182,255,0,.16);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,.14);

  color:#fff;
  font-size:18px;
  font-weight:800;
  letter-spacing:.8px;
}

.articles-section{
  position:relative;
  z-index:2;
  padding:24px 14px 46px;
  background:
    radial-gradient(circle at top left, rgba(182,255,0,.12), transparent 35%),
    linear-gradient(45deg,#000 0%,#101010 100%);
}

.article-card{
  position:relative;
  display:grid;
  grid-template-columns:96px 1fr 42px;
  gap:13px;
  align-items:center;

  min-height:124px;
  margin-bottom:14px;
  padding:12px;

  text-decoration:none;
  color:#fff;

  border-radius:22px;
  border:1px dashed rgba(182,255,0,.62);

  background:
    linear-gradient(135deg,
      rgba(255,255,255,.12) 0%,
      rgba(255,255,255,.045) 46%,
      rgba(182,255,0,.11) 100%
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 16px 36px rgba(0,0,0,.45);

  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);

  overflow:hidden;
}

.article-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    rgba(255,255,255,.14),
    transparent 34%,
    transparent 74%,
    rgba(182,255,0,.08)
  );
  pointer-events:none;
}

.article-img{
  position:relative;
  z-index:2;
  width:96px;
  height:96px;
  border-radius:17px;
  overflow:hidden;
  background:#111;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 12px 25px rgba(0,0,0,.38);
}

.article-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.article-content{
  position:relative;
  z-index:2;
  min-width:0;
}

.article-content span{
  display:flex;
  align-items:center;
  gap:6px;

  margin-bottom:6px;
  color:var(--lime);
  font-size:10px;
  font-weight:900;
  letter-spacing:1px;
}

.article-content h3{
  margin:0;
  font-size:17px;
  line-height:1.04;
  font-weight:900;
  letter-spacing:-.3px;
}

.article-content p{
  margin:7px 0 0;
  color:rgba(255,255,255,.62);
  font-size:12.5px;
  line-height:1.25;
}

.article-arrow{
  position:relative;
  z-index:2;

  width:42px;
  height:42px;

  display:grid;
  place-items:center;

  border-radius:50%;
  border:1px solid rgba(182,255,0,.42);

  background:rgba(0,0,0,.36);
  color:var(--lime);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 0 24px rgba(182,255,0,.14);

  transition:.2s ease;
}

.article-card:active{
  transform:scale(.985);
}

.article-card:active .article-arrow{
  transform:translateX(3px);
}









.media-info{
    display:none !important;
}


.load-more-wrap{
  display:flex;
  justify-content:center;
  margin:22px 0 4px;
}

.load-more-btn{
  position:relative;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  height:54px;
  padding:0 28px;

  border:2px solid transparent;
  border-radius:18px;

  background:
    linear-gradient(#0d0d0d,#0d0d0d) padding-box,
    linear-gradient(90deg,#7cff00,#b6ff00,#dfff65,#b6ff00,#7cff00) border-box;

  color:#fff;

  font-family:'Outfit',sans-serif;
  font-size:16px;
  font-weight:700;
  letter-spacing:.2px;

  cursor:pointer;
  overflow:hidden;

  box-shadow:
    0 0 20px rgba(182,255,0,.18),
    inset 0 1px 0 rgba(255,255,255,.12);

  transition:.35s ease;
}

.load-more-btn:hover{
  transform:translateY(-2px);
  box-shadow:
    0 0 24px rgba(182,255,0,.28),
    0 0 45px rgba(182,255,0,.14);
}

.load-more-btn:active{
  transform:scale(.96);
}

.load-more-btn i{
  color:#b6ff00;
  font-size:17px;
  transition:.3s;
}

.load-more-btn:hover i{
  transform:translateY(4px);
}

.is-load-hidden{
  display:none !important;
}


.contact-section{
  background:
    radial-gradient(circle at top left, rgba(182,255,0,.13), transparent 34%),
    linear-gradient(180deg,#020202 0%,#090909 100%);
  color:#fff;
  padding:42px 14px 54px;
}

.contact-head{
  margin-bottom:22px;
}

.contact-head span{
  color:var(--lime);
  font-size:11px;
  font-weight:900;
  letter-spacing:2px;
}

.contact-head h2{
  margin:8px 0 8px;
  font-size:42px;
  line-height:.9;
  font-weight:900;
  letter-spacing:-1.5px;
  font-style:italic;
}

.contact-head p{
  margin:0;
  color:rgba(255,255,255,.62);
  font-size:14px;
  line-height:1.35;
}

.contact-info-card{
  margin-bottom:18px;
  padding:18px;
  border-radius:26px;
  background:
    linear-gradient(135deg,
      rgba(255,255,255,.12),
      rgba(255,255,255,.045),
      rgba(182,255,0,.08)
    );
  border:1px solid rgba(255,255,255,.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.13),
    0 20px 45px rgba(0,0,0,.45);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}

.contact-person{
  padding:0 0 15px;
  margin-bottom:15px;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.contact-person:last-child{
  padding-bottom:0;
  margin-bottom:0;
  border-bottom:0;
}

.contact-person b{
  display:block;
  margin-bottom:7px;
  color:#fff;
  font-size:16px;
  font-weight:900;
}

.contact-person p{
  margin:3px 0;
  color:rgba(255,255,255,.68);
  font-size:13px;
  line-height:1.25;
}

.contact-form{
  padding:18px;
  border-radius:28px;
  background:
    linear-gradient(135deg,
      rgba(255,255,255,.14),
      rgba(255,255,255,.04),
      rgba(0,132,255,.12)
    );
  border:1px solid rgba(255,255,255,.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 24px 55px rgba(0,0,0,.55);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.contact-form label{
  display:block;
  margin-bottom:14px;
}

.contact-form label span{
  display:block;
  margin-bottom:7px;
  color:rgba(255,255,255,.78);
  font-size:13px;
  font-weight:700;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.16);
  outline:none;
  border-radius:15px;
  background:rgba(0,0,0,.38);
  color:#fff;
  font-family:'Outfit',sans-serif;
  font-size:14px;
  padding:14px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:rgba(255,255,255,.35);
}

.contact-form textarea{
  height:132px;
  resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:rgba(182,255,0,.72);
  box-shadow:
    0 0 0 1px rgba(182,255,0,.28),
    0 0 20px rgba(182,255,0,.12);
}

.contact-submit{
  width:100%;
  height:52px;
  border-radius:16px;
  border:1px solid transparent;
  background:
    linear-gradient(#0b0b0b,#0b0b0b) padding-box,
    linear-gradient(135deg,#18ff3e9c,#b6ff00,#aaff00,#00ffbf) border-box;
  color:#fff;
  font-family:'Outfit',sans-serif;
  font-size:16px;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  box-shadow:
    0 0 24px rgba(9, 255, 0, 0.22),
    0 0 30px rgba(182,255,0,.13);
}

.contact-submit i{
  color:#fff;
}









.contact-socials{
    display:flex;
    gap:14px;
    margin:22px 0 30px;
}

.contact-social{
    flex:1;
    display:flex;
    align-items:center;
    gap:14px;

    padding:15px;
    border-radius:20px;

    text-decoration:none;
    color:#fff;

    position:relative;
    overflow:hidden;

    background:
        linear-gradient(145deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.03));

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.10);

    transition:.35s;
}

.contact-social::before{

    content:"";

    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at top left,
    rgba(182,255,0,.18),
    transparent 65%);

    opacity:.8;
}

.contact-social:hover{

    transform:translateY(-4px);

    border-color:#b6ff00;

    box-shadow:
    0 0 28px rgba(182,255,0,.18);
}

.contact-social-icon{

    width:52px;
    height:52px;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(145deg,
    rgba(182,255,0,.20),
    rgba(182,255,0,.05));

    border:1px solid rgba(182,255,0,.35);

    font-size:23px;

    color:#b6ff00;

    flex-shrink:0;
}

.contact-social-text{

    display:flex;
    flex-direction:column;
}

.contact-social-text span{

    font-size:18px;
    font-weight:700;
    line-height:1;
}

.contact-social-text small{

    margin-top:7px;

    color:#b8b8b8;

    font-size:9px;
}







/*=========================
        FOOTER
=========================*/

.site-footer{

    position:relative;

    display:flex;
    align-items:center;

    height:84px;

    padding:0 22px;

    background:#b6ff00;

    border-top:1px solid rgba(0,0,0,.08);
}

.footer-copy{

    color:#050505;

    font-size:13px;

    font-weight:600;

    z-index:2;
}

.footer-copy strong{

    font-weight:800;
}

.footer-logo{

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    display:flex;
    align-items:center;
    justify-content:center;
}

.footer-logo img{

    height:34px;

    width:auto;

    filter:brightness(0);

    opacity:.92;

    transition:.35s;
}

.footer-logo:hover img{

    transform:scale(1.08);

    opacity:1;
}

.mobile-menu{
  position:fixed;
  inset:0;
  z-index:60000;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:22px;

  opacity:0;
  visibility:hidden;
  pointer-events:none;

  background:rgba(0,0,0,.58);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);

  transition:.25s ease;
}

.mobile-menu.show{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.menu-glass-panel{
  position:relative;

  width:min(100%, 360px);
  max-height:calc(100vh - 44px);
  overflow-y:auto;

  padding:54px 18px 20px;

  border-radius:34px;

  background:
    radial-gradient(circle at top left, rgba(182,255,0,.22), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.045));

  border:1px solid rgba(255,255,255,.18);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 34px 90px rgba(0,0,0,.72);

  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);

  transform:scale(.92) translateY(18px);
  opacity:0;

  transition:.35s cubic-bezier(.2,.8,.2,1);
}

.menu-glass-panel::-webkit-scrollbar{
  display:none;
}

.mobile-menu.show .menu-glass-panel{
  transform:scale(1) translateY(0);
  opacity:1;
}

.menu-glass-panel::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;

  background:
    linear-gradient(120deg, rgba(255,255,255,.16), transparent 36%, transparent 70%, rgba(182,255,0,.09));
}

.menu-close{
  position:absolute;
  top:16px;
  right:16px;
  z-index:4;

  width:44px;
  height:44px;

  border-radius:50%;
  border:1px solid rgba(182,255,0,.42);

  background:rgba(0,0,0,.42);
  color:#fff;

  display:grid;
  place-items:center;

  font-size:21px;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 0 26px rgba(182,255,0,.12);
}

.menu-kicker{
  position:relative;
  z-index:3;

  margin:0 0 14px 4px;

  color:var(--lime);
  font-size:11px;
  font-weight:900;
  letter-spacing:2.2px;
}

.menu-big-link{
  position:relative;
  z-index:3;

  min-height:54px;
  margin-bottom:9px;
  padding:0 17px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  text-decoration:none;
  color:#fff;

  border-radius:18px;

  background:
    linear-gradient(135deg,
      rgba(255,255,255,.11),
      rgba(255,255,255,.035),
      rgba(182,255,0,.07)
    );

  border:1px solid rgba(255,255,255,.11);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 13px 25px rgba(0,0,0,.22);

  font-size:28px;
  line-height:1;
  font-weight:900;
  letter-spacing:-1px;
  text-transform:uppercase;

  transition:.22s ease;
}

.menu-big-link::after{
  content:"→";
  color:var(--lime);
  font-size:22px;
  font-weight:900;
  transform:translateY(-1px);
}

.menu-big-link:hover,
.menu-big-link:active{
  transform:scale(1.035);
  border-color:rgba(182,255,0,.48);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 0 28px rgba(182,255,0,.12),
    0 16px 30px rgba(0,0,0,.34);
}

/* CV + GAME */
.menu-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;

    margin:0 0 18px;
}

.menu-action{

    height:64px;

    display:flex;
    align-items:center;
    justify-content:flex-start;

    gap:14px;

    padding:0 18px;

    border-radius:18px;

    text-decoration:none;

    position:relative;

    overflow:hidden;

    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);

    transition:.22s;
}

.menu-action::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.12), transparent 55%);
  pointer-events:none;
}

.menu-action::after{

    content:"↗";

    position:absolute;

    right:16px;

    top:50%;

    transform:translateY(-50%);

    font-size:16px;

    font-weight:900;

}

.menu-action span{

    font-size:18px;

    font-weight:800;

    letter-spacing:.3px;

}

.menu-action i{

    font-size:24px;

    width:24px;

    text-align:center;

}

.menu-action span{
  font-size:18px;
  font-weight:900;
  letter-spacing:.4px;
}

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

.menu-cv-link{
  color:var(--lime);

  border:1px dashed rgba(182,255,0,.75);

  background:
    linear-gradient(
      135deg,
      rgba(182,255,0,.20),
      rgba(255,255,255,.04),
      rgba(182,255,0,.08)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 0 24px rgba(182,255,0,.12);
}

.menu-cv-link::after{
  color:var(--lime);
}

.menu-game-link{
  color:#43b7ff;

  border:1px dashed rgba(67,183,255,.75);

  background:
    linear-gradient(
      135deg,
      rgba(67,183,255,.18),
      rgba(255,255,255,.04),
      rgba(182,255,0,.08)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 0 24px rgba(67,183,255,.14);
}

.menu-game-link::after{
  color:#43b7ff;
}

.menu-cv-link:hover{
  box-shadow:
    0 0 30px rgba(182,255,0,.25);
}

.menu-game-link:hover{
  box-shadow:
    0 0 30px rgba(67,183,255,.25);
}





.section-actions{
    display:flex;
    gap:14px;
    margin:22px 18px 28px;
}

.section-actions .menu-action{

    flex:1;
    height:74px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 18px;

    text-decoration:none;

    border-radius:22px;

    position:relative;
    overflow:hidden;

    background:
        radial-gradient(circle at top left,
            rgba(182,255,0,.12),
            transparent 45%),
        linear-gradient(145deg,
            rgba(28,28,28,.98),
            rgba(14,14,14,.98));

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.10);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 14px 30px rgba(0,0,0,.35);

    transition:.28s;
}

.section-actions .menu-action:hover{

    transform:translateY(-3px);

}

.section-actions .menu-cv-link{

    border:1px solid rgba(182,255,0,.35);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.10),
        0 0 24px rgba(182,255,0,.10),
        0 14px 30px rgba(0,0,0,.40);

}

.section-actions .menu-cv-link i,
.section-actions .menu-cv-link span,
.section-actions .menu-cv-link::after{

    color:var(--lime);

}

.section-actions .menu-game-link{

    border:1px solid rgba(80,185,255,.35);

    background:
        radial-gradient(circle at top left,
            rgba(80,185,255,.12),
            transparent 45%),
        linear-gradient(145deg,
            rgba(28,28,28,.98),
            rgba(14,14,14,.98));

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.10),
        0 0 24px rgba(80,185,255,.10),
        0 14px 30px rgba(0,0,0,.40);

}

.section-actions .menu-game-link i,
.section-actions .menu-game-link span,
.section-actions .menu-game-link::after{

    color:#57b7ff;

}

.section-actions .menu-action i{

    font-size:23px;

}

.section-actions .menu-action span{

    flex:1;

    margin-left:16px;

    font-size:20px;
    font-weight:900;
    letter-spacing:-.5px;

}

.section-actions .menu-action::after{

    content:"↗";

    font-size:20px;
    font-weight:800;

    opacity:.9;

}













.back-top{
  position:fixed;
  right:calc((100vw - min(100vw,var(--phone)))/2 + 18px);
  bottom:22px;
  z-index:9999;

  width:31px;
  height:31px;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid rgba(255,255,255,.22);
  border-radius:50%;

  background:
    radial-gradient(circle at 35% 22%, rgba(255,255,255,.24), transparent 34%),
    radial-gradient(circle at center, rgba(182,255,0,.14), transparent 48%),
    linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.06));

  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 16px 40px rgba(0,0,0,.42),
    0 0 26px rgba(182,255,0,.16);

  opacity:0;
  visibility:hidden;
  pointer-events:none;

  transition:.28s cubic-bezier(.2,.8,.2,1);
}

.back-top.show{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.back-top::before{
  content:"";
  position:absolute;
  inset:-7px;
  border-radius:50%;

  border:2px solid rgba(182,255,0,.28);

  box-shadow:
    0 0 0 1px rgba(182,255,0,.14),
    0 0 18px rgba(182,255,0,.25),
    inset 0 0 18px rgba(182,255,0,.10);

  animation:backTopWave 2.8s ease-in-out infinite;
}

.back-top::after{
  content:"";
  width:7px;
  height:7px;

  border-left:7px solid var(--lime);
  border-top:7px solid var(--lime);

  transform:rotate(45deg) translate(3px,3px);

  border-radius:3px;

  filter:
    drop-shadow(0 0 8px rgba(182,255,0,.9))
    drop-shadow(0 0 18px rgba(182,255,0,.55));

  animation:backTopArrow 1.8s ease-in-out infinite;
}

.back-top:hover{
  transform:translateY(-3px) scale(1.06);
}

.back-top:hover::before{
  border-color:rgba(182,255,0,.55);
  box-shadow:
    0 0 0 1px rgba(182,255,0,.28),
    0 0 28px rgba(182,255,0,.38),
    inset 0 0 22px rgba(182,255,0,.16);
}

@keyframes backTopWave{
  0%,100%{
    transform:scale(1) rotate(0deg);
    border-color:rgba(182,255,0,.24);
  }

  50%{
    transform:scale(1.08) rotate(8deg);
    border-color:rgba(213,255,80,.58);
  }
}

@keyframes backTopArrow{
  0%,100%{
    transform:rotate(45deg) translate(3px,3px);
  }

  50%{
    transform:rotate(45deg) translate(-1px,-1px);
  }
}












.usmnt-stats-strip{
  display:grid;
  grid-template-columns:1fr .82fr .82fr 1.25fr;
  gap:7px;

  padding:13px 10px 15px;
  background:
    radial-gradient(circle at top left, rgba(0,80,180,.14), transparent 42%),
    linear-gradient(180deg,#f7f7f1 0%,#eeeeea 100%);

  align-items:stretch;
}

.usmnt-stat-box,
.usmnt-logo-box{
  min-width:0;
  height:96px;

  border-radius:20px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
    radial-gradient(circle at top left, rgba(255,255,255,.92), rgba(255,255,255,.34) 42%, rgba(255,255,255,.18)),
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.22));

  border:1px solid rgba(255,255,255,.72);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 12px 28px rgba(0,0,0,.10),
    0 0 22px rgba(0,70,180,.08);

  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);

  overflow:hidden;
}

.usmnt-stat-box{
  flex-direction:column;
  text-align:center;
  gap:2px;
}

.usmnt-stat-box strong{
  display:block;

  font-size:38px;
  line-height:.9;
  font-weight:900;
  letter-spacing:-2px;

  color:#104ba0;

  text-shadow:
    0 2px 0 rgba(255,255,255,.65),
    0 10px 24px rgba(0,58,150,.18);
}

.usmnt-stat-box span{
  display:block;

  color:#104ba0;

  font-size:11px;
  line-height:1.03;
  font-weight:900;
  letter-spacing:.4px;
  text-transform:uppercase;
}

.usmnt-logo-box{
  padding:13px;
}

.usmnt-logo-box img{
  max-width:100%;
  max-height:72px;
  object-fit:contain;
  display:block;

  filter:
    drop-shadow(0 8px 14px rgba(0,0,0,.13));
}

.usmnt-stats-strip .usmnt-logo-box:nth-child(2) img{
  max-height:78px;
}

.usmnt-stats-strip .usmnt-logo-box:nth-child(3) img{
  max-height:80px;
}























@media (min-width:415px){.phone{
box-shadow:0 0 0 1px rgba(255,255,255,.06),0 20px 80px rgba(0,0,0,.5)}}
@media (max-width:360px){:root{--hero-h:285px}.hero-copy{bottom:76px}.hero-copy h1{font-size:25px}.chip{font-size:7.4px;height:20px;padding:0 5px}.about-copy{font-size:12.4px}.honors-hero{height:315px}}








.desktop-layout{
  width:100%;
  min-height:100vh;
}

.desktop-leftbar,
.desktop-rightbar{
  display:none;
}





.live-label{

    display:flex;
    align-items:center;
    gap:8px;

    color:var(--lime);
    font-size:10px;
    font-weight:900;
    letter-spacing:1.8px;
    text-transform:uppercase;
}

.live-dot{

    position:relative;

    width:8px;
    height:8px;

    flex:0 0 8px;

    border-radius:50%;

    background:#b6ff00;

    box-shadow:
        0 0 8px rgba(182,255,0,.9),
        0 0 18px rgba(182,255,0,.55);

    animation:livePulse 1.8s ease-in-out infinite;
}

.live-dot::after{

    content:"";

    position:absolute;

    left:50%;
    top:50%;

    width:8px;
    height:8px;

    border-radius:50%;

    border:2px solid rgba(182,255,0,.45);

    transform:translate(-50%,-50%);

    animation:liveRipple 1.8s ease-out infinite;
}

@keyframes livePulse{

    0%,100%{
        transform:scale(1);
        opacity:1;
    }

    50%{
        transform:scale(.78);
        opacity:.72;
    }
}

@keyframes liveRipple{

    0%{
        transform:translate(-50%,-50%) scale(.5);
        opacity:.9;
    }

    100%{
        transform:translate(-50%,-50%) scale(2.3);
        opacity:0;
    }
}





@media (min-width:750px){

  html,
  body{
    background:#050505;
  }

  :root{
    --phone:clamp(414px, 48vw, 560px);
    --hero-h:clamp(273px, 31vw, 330px);
  }

  .desktop-layout{
    display:grid;
    grid-template-columns:
      minmax(190px, 300px)
      var(--phone)
      minmax(190px, 300px);

    justify-content:center;
    min-height:100vh;

  
  }

  .phone{
    width:var(--phone);
    max-width:var(--phone);
    margin:0;
    background:var(--paper);
    position:relative;
    overflow:visible;
  }

  .fixed-hero{
    width:var(--phone);
    height:var(--hero-h);
    left:50%;
    transform:translateX(-50%);
  }

  .fixed-hero.is-hidden{
    transform:translateX(-50%) translateY(-18px);
  }

  .hero-space{
    height:var(--hero-h);
  }

  .hero-card{
    background:
      #6ec0ef
      url('/images/hero.jpg')
      center top / cover
      no-repeat;
  }

  .honors-hero,
  .hero3-hero,
  .hero4-hero,
  .hero5-hero,
  .hero6-hero{
    height:clamp(285px, 32vw, 350px);
    background-size:cover;
    background-position:center top;
  }

  .desktop-leftbar,
  .desktop-rightbar{
    display:flex;
    position:sticky;
    top:0;
    height:100vh;
    color:#fff;

    background:
      radial-gradient(circle at top left, rgba(182,255,0,.08), transparent 36%),
      linear-gradient(180deg, rgba(0,0,0,.96), rgba(0,0,0,.88));

    border-left:1px solid rgba(255,255,255,.07);
    border-right:1px solid rgba(255,255,255,.07);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.04),
      0 0 45px rgba(0,0,0,.35);

      
  }

  .desktop-leftbar{
    flex-direction:column;
    gap:26px;
    padding:34px clamp(14px, 1.6vw, 24px);
  }

  .desktop-rightbar{
    flex-direction:column;
    gap:16px;
    padding:34px clamp(14px, 1.6vw, 24px);
  }

  .hamburger,
  .mobile-menu{
    display:none !important;
  }

.desktop-brand{

    width:72px;
    height:72px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:22px;

    background:
        radial-gradient(circle at top left,
            rgba(182,255,0,.10),
            transparent 42%),
        linear-gradient(
            145deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.035)
        );

    border:1px solid rgba(255,255,255,.12);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.10),
        0 18px 36px rgba(0,0,0,.35),
        0 0 22px rgba(182,255,0,.08);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    overflow:hidden;
}

.desktop-brand img{

    width:50%;
    height:50%;

    object-fit:contain;
    display:block;

    filter:
        brightness(0)
        invert(1)
        drop-shadow(0 0 8px rgba(255,255,255,.18));

    transition:.25s ease;
}

.desktop-brand:hover img{

    transform:scale(1.05);

    filter:
        brightness(0)
        invert(1)
        drop-shadow(0 0 10px rgba(182,255,0,.28));
}

 .desktop-nav{

    display:flex;
    flex-direction:column;

    gap:0;

    margin-top:8px;
}

.desktop-nav a{

    position:relative;

    min-height:64px;

    padding:0 clamp(10px,1.2vw,18px);

    display:flex;
    align-items:center;
    gap:14px;

    color:rgba(255,255,255,.82);
    text-decoration:none;

    border-radius:18px;

    font-size:clamp(14px,1.35vw,18px);
    font-weight:800;

    transition:.28s ease;
}

.desktop-nav a i{

    width:22px;
    flex:0 0 22px;

    color:var(--lime);

    font-size:18px;

    text-align:center;

    filter:
        drop-shadow(0 0 6px rgba(182,255,0,.35));

    transition:.25s;
}

  .desktop-nav a span{
    display:inline;
    white-space:nowrap;
  }

  .desktop-nav a:hover{

    background:
        linear-gradient(
            90deg,
            rgba(182,255,0,.09),
            rgba(255,255,255,.03)
        );

    transform:translateX(6px);

    color:#fff;

    box-shadow:
        inset 3px 0 0 var(--lime),
        0 0 22px rgba(182,255,0,.08);
}


  .desktop-nav a::after{

    content:"";

    position:absolute;

    left:54px;
    right:12px;
    bottom:0;

    height:1px;

    background:linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.151),
        rgba(255, 255, 255, 0.137),
        transparent
    );

    transition:.25s ease;
}


.desktop-nav a:last-child::after{

    display:none;
}



  .desktop-cv-btn{

    position:relative;
    overflow:hidden;

    margin-top:auto;
    min-height:58px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    border-radius:22px;

    text-decoration:none;

    color:#fff;
    font-size:16px;
    font-weight:900;
    letter-spacing:.2px;

    background:
        radial-gradient(circle at top left,
            rgba(182,255,0,.12),
            transparent 42%),
        linear-gradient(
            145deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.035)
        );

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.10),
        0 18px 36px rgba(0,0,0,.34),
        0 0 24px rgba(182,255,0,.08);

    transition:.25s ease;
}

.desktop-cv-btn::before{

    content:"";

    position:absolute;

    left:12px;
    right:12px;

    top:-22px;

    height:1px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(182,255,0,.20),
        rgba(255,255,255,.12),
        rgba(182,255,0,.20),
        transparent
    );
}



.desktop-cv-btn:hover{

    transform:translateY(-3px);

    border-color:rgba(182,255,0,.28);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.14),
        0 24px 42px rgba(0,0,0,.42),
        0 0 30px rgba(182,255,0,.14);
}



.desktop-cv-btn i{
    color:var(--lime);
    font-size:18px;
    filter:drop-shadow(0 0 8px rgba(182,255,0,.45));
}

.desktop-cv-btn span{
    position:relative;
    z-index:2;
}



  .desktop-side-card{
    position:relative;
    overflow:hidden;

    padding:clamp(16px, 1.5vw, 22px);
    border-radius:24px;

    background:
      radial-gradient(circle at top left, rgba(182,255,0,.15), transparent 42%),
      linear-gradient(145deg, rgba(255,255,255,.115), rgba(255,255,255,.035));

    border:1px solid rgba(255,255,255,.13);

    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.10),
      0 18px 40px rgba(0,0,0,.36);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
  }

  .desktop-side-card::before{
    content:"";
    position:absolute;
    inset:0;

    background:
      linear-gradient(
        120deg,
        rgba(255,255,255,.12),
        transparent 34%,
        transparent 70%,
        rgba(182,255,0,.06)
      );

    pointer-events:none;
  }

  .desktop-side-card span{
    position:relative;
    z-index:2;

    color:var(--lime);
    font-size:clamp(9px, .9vw, 11px);
    font-weight:900;
    letter-spacing:1.8px;
  }

  .desktop-side-card h3{
    position:relative;
    z-index:2;

    margin:9px 0 8px;
    font-size:clamp(18px, 1.8vw, 24px);
    line-height:1;
    font-weight:950;
  }

  .desktop-side-card p{
    position:relative;
    z-index:2;

    margin:0;
    color:rgba(255,255,255,.68);
    font-size:clamp(12px, 1.1vw, 14px);
    line-height:1.45;
  }

  .media-feature,
  .worldcup-feature,
  .extra-feature{
    max-width:414px;
    width:100%;
    margin:0 auto;
  }

  .media-slider,
  .worldcup-slider,
  .extra-slider{
    max-width:414px;
    width:100%;
    margin:0 auto;
  }


  .desktop-rightbar{
    padding:34px clamp(14px, 1.6vw, 24px);
    overflow:hidden;
  }

  .desktop-x-live{
    width:100%;
    height:calc(100vh - 68px);

    display:flex;
    flex-direction:column;

    border-radius:28px;
    overflow:hidden;

    background:
      radial-gradient(circle at top left, rgba(182,255,0,.14), transparent 42%),
      linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.035));

    border:1px solid rgba(255,255,255,.13);

    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.12),
      0 18px 45px rgba(0,0,0,.38);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
  }

  .desktop-x-live-head{
    flex:0 0 auto;

    display:flex;
    align-items:center;
    gap:13px;

    padding:18px 18px 14px;

    border-bottom:1px solid rgba(255,255,255,.10);

    background:
      linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  }

  .desktop-x-live-icon{
    width:44px;
    height:44px;

    display:grid;
    place-items:center;

    border-radius:16px;

    background:rgba(0,0,0,.34);
    border:1px solid rgba(255,255,255,.12);

    color:#fff;
    font-size:22px;

    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.10),
      0 0 18px rgba(182,255,0,.08);
  }

  .desktop-x-live-head span{
    color:var(--lime);
    font-size:10px;
    font-weight:900;
    letter-spacing:1.5px;
  }

  .desktop-x-live-head h3{
    margin:4px 0 2px;
    color:#fff;
    font-size:22px;
    line-height:1;
    font-weight:950;
  }

  .desktop-x-live-head p{
    margin:0;
    color:rgba(255,255,255,.58);
    font-size:13px;
    font-weight:600;
  }

  .desktop-x-live-frame{
    flex:1;
    min-height:0;

    background:#050505;
    overflow:hidden;
  }

  .desktop-x-live-frame iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
  }

  .phone .x-section{
    display:none;
  }




  

  
}





