:root{
  --bg-0:#0a0404;
  --bg-1:#120606;
  --panel-0:rgba(18,6,6,.66);
  --panel-1:rgba(24,10,10,.86);
  --line:rgba(255,77,77,.20);
  --line-strong:rgba(255,77,77,.36);
  --text:#fff2f2;
  --muted:rgba(255,242,242,.72);
  --accent-0:#ff8c8c;
  --accent-1:#ff4d4d;
  --accent-2:#b82121;
  --gold-0:#ffdc7a;
  --gold-1:#ffb84a;
  --red-0:#ff4d68;
  --red-1:#b3122c;
  --glow:rgba(255,77,77,.18);
  --glow-strong:rgba(255,77,77,.28);
  --shadow:0 22px 85px rgba(0,0,0,.62);
  --radius:18px;
}

html, body{ height:100% }
body{
  background: var(--bg-0);
  color: var(--text);
  font-family: "Orbitron", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  text-rendering: geometricPrecision;
}

.main-blur-zone{
  position: relative;
  isolation: isolate;
}

.main-blur-zone::before{
  content:"";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(0,0,0,.12);
  backdrop-filter: blur(18px);
}

.main-blur-zone > *{
  position: relative;
  z-index: 1;
}

::selection{ background: rgba(255,140,140,.24); color: var(--text) }

header{
  position: relative;
  background:
    radial-gradient(900px 260px at 50% 0%, rgba(255,140,140,.14), rgba(0,0,0,0) 70%),
    linear-gradient(180deg, rgba(18,6,6,.92), rgba(18,6,6,.34));
  border-bottom: 1px solid rgba(255,77,77,.14);
}

header::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(255,140,140,.38), rgba(0,0,0,0));
  box-shadow: 0 0 34px rgba(255,77,77,.16);
  pointer-events:none;
}

.topbar-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 14px;
}

.topbar-logo{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.topbar-logo img{
  height: 34px;
  width: auto;
  filter: drop-shadow(0 0 14px rgba(255,140,140,.18));
}

.topbar-nav{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.topbar-right{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.topbar-center-logo{
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 18px 18px;
  display: flex;
  justify-content: center;
}

.topbar-center-logo a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.center-logo-live{
  position: relative;
  isolation: isolate;
}

.center-logo-live::before{
  content:"";
  position:absolute;
  left: 50%;
  top: 54%;
  width: min(720px, 90vw);
  height: min(240px, 34vw);
  transform: translate(-50%, -50%);
  background:
    radial-gradient(closest-side, rgba(255,77,77,.24), rgba(0,0,0,0) 68%),
    radial-gradient(closest-side, rgba(255,205,117,.14), rgba(0,0,0,0) 72%);
  filter: blur(18px);
  opacity: .75;
  mix-blend-mode: screen;
  z-index: -1;
  animation: logoGlow 2.6s ease-in-out infinite;
}

.site-logo-live{
  filter:
    drop-shadow(0 0 10px rgba(255,140,140,.26))
    drop-shadow(0 0 22px rgba(255,77,77,.16))
    drop-shadow(0 0 34px rgba(255,205,117,.12));
  animation: logoFloat 3.8s ease-in-out infinite;
  will-change: transform, filter;
}

.site-logo-live:hover{
  filter:
    drop-shadow(0 0 12px rgba(255,140,140,.30))
    drop-shadow(0 0 26px rgba(255,77,77,.20))
    drop-shadow(0 0 40px rgba(255,205,117,.16));
}

@keyframes logoGlow{
  0%{ transform: translate(-50%, -50%) scale(.96); opacity: .62; }
  55%{ transform: translate(-50%, -50%) scale(1.03); opacity: .92; }
  100%{ transform: translate(-50%, -50%) scale(.96); opacity: .62; }
}

@keyframes logoFloat{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
  100%{ transform: translateY(0); }
}

.site-logo-live.logo-sway{
  animation: logoSway 6.2s ease-in-out infinite, logoFloat 3.8s ease-in-out infinite;
}

.topbar-center-logo .site-logo{
  width: clamp(280px, 42vw, 560px);
}

.topbar-clock{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,77,77,.18);
  background: linear-gradient(180deg, rgba(24,10,10,.80), rgba(18,6,6,.40));
  box-shadow: 0 18px 55px rgba(0,0,0,.55), 0 0 0 1px rgba(0,0,0,.26) inset;
  color: rgba(255,242,242,.82);
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 12px;
  text-transform: uppercase;
}

.topbar-clock-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,220,122,.92);
  box-shadow: 0 0 18px rgba(255,220,122,.22);
}

.page-bg{
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 20% 14%, rgba(255,140,140,.18), rgba(0,0,0,0) 60%),
    radial-gradient(860px 520px at 86% 10%, rgba(255,77,104,.10), rgba(0,0,0,0) 62%),
    linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.88) 62%, rgba(0,0,0,1) 100%),
    url('/assets/bg.png') center/cover no-repeat fixed;
  filter: saturate(1.08) contrast(1.08) brightness(.95) hue-rotate(-10deg);
  opacity: 0;
  animation: bgFade .55s ease forwards;
}

.page-bg-video{
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .62;
  filter: saturate(1.05) contrast(1.05) brightness(.90);
  transition: filter .25s ease, opacity .25s ease;
  will-change: filter, opacity;
}


.page-bg-video iframe{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
}


.page-bg::before{
  content:"";
  position:absolute;
  inset:0;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(184,33,33,.12), rgba(0,0,0,0) 44%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.03), rgba(255,255,255,.03) 1px, rgba(0,0,0,0) 8px, rgba(0,0,0,0) 14px);
  mix-blend-mode: overlay;
  opacity: .55;
  pointer-events:none;
}

.page-bg::after{
  content:"";
  position:absolute;
  inset:-2px;
  z-index: 2;
  background: radial-gradient(closest-side at 50% 0%, rgba(255,140,140,.16), rgba(0,0,0,0) 72%);
  opacity:.45;
  pointer-events:none;
}

@keyframes bgFade{ to{ opacity:1 } }

.site-logo{
  width: clamp(220px, 26vw, 440px);
  height: auto;
  filter:
    drop-shadow(0 0 10px rgba(255,140,140,.22))
    drop-shadow(0 0 26px rgba(255,77,77,.12));
}

#logoSway{
  position: relative;
  padding: 10px 18px;
  border-radius: 999px;
  background:
    radial-gradient(closest-side at 50% 20%, rgba(255,140,140,.14), rgba(0,0,0,0)),
    linear-gradient(180deg, rgba(24,10,10,.70), rgba(18,6,6,.24));
  border: 1px solid rgba(255,77,77,.18);
  box-shadow:
    0 18px 55px rgba(0,0,0,.55),
    0 0 0 1px rgba(0,0,0,.28) inset,
    0 0 28px rgba(255,77,77,.12);
}

#logoSway::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(255,140,140,.18), rgba(0,0,0,0));
  opacity: .9;
  pointer-events:none;
  filter: blur(6px);
}

@keyframes logoSway {
  0%   { transform: translateX(-6px) rotate(-0.25deg); }
  50%  { transform: translateX( 6px) rotate( 0.25deg); }
  100% { transform: translateX(-6px) rotate(-0.25deg); }
}

.logo-sway{
  animation: logoSway 6.2s ease-in-out infinite;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce){ .logo-sway{ animation:none; } }

.hr-red{
  height:1px;
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(255,77,77,.56), rgba(0,0,0,0));
  box-shadow: 0 0 30px rgba(255,77,77,.14);
}

header nav{
  position: relative;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(255,205,117,.10), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(10,12,18,.72), rgba(10,12,18,.28));
  border: 1px solid rgba(193,154,75,.16);
  box-shadow:
    0 18px 55px rgba(0,0,0,.50),
    0 0 0 1px rgba(0,0,0,.28) inset;
  backdrop-filter: blur(10px);
}

header nav::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0), rgba(255,205,117,.18), rgba(0,0,0,0));
  opacity:.65;
  pointer-events:none;
  mask: linear-gradient(#000, transparent 70%);
}

.nav-link{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  border-radius: 0;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,242,242,.78);
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: color .16s ease, text-shadow .16s ease, transform .16s ease, opacity .16s ease;
  font-family: inherit;
}

.nav-link:hover{
  color: #fff;
  text-shadow: 0 0 24px rgba(255,140,140,.18);
  transform: translateY(-1px);
}

.nav-link::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(255,77,77,.70), rgba(0,0,0,0));
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.nav-link:hover::after{ opacity: 1 }

.card{
  position: relative;
  background: linear-gradient(180deg, var(--panel-1), var(--panel-0));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 0 1px rgba(0,0,0,.22) inset;
  backdrop-filter: blur(10px);
}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0), rgba(255,140,140,.10), rgba(0,0,0,0));
  opacity: .55;
  mask: linear-gradient(#000, transparent 65%);
}

.card:hover{
  border-color: var(--line-strong);
  box-shadow: 0 22px 70px rgba(0,0,0,.62), 0 0 0 1px rgba(255,140,140,.10) inset, 0 0 55px rgba(255,77,77,.08);
}

.home-hero{
  overflow: hidden;
}

.home-hero-inner{
  position: relative;
  padding: 22px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: center;
}

.home-hero-inner::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 320px at 14% 20%, rgba(255,140,140,.14), rgba(0,0,0,0) 60%),
    radial-gradient(520px 280px at 82% 38%, rgba(255,77,77,.12), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,0) 45%, rgba(0,0,0,.44));
  opacity: .95;
  pointer-events: none;
}

.home-hero-copy{
  position: relative;
  z-index: 1;
}

.home-hero-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,77,77,.20);
  background: linear-gradient(180deg, rgba(24,10,10,.78), rgba(18,6,6,.38));
  color: rgba(255,242,242,.82);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
}

.home-hero-title{
  margin-top: 14px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 22px 90px rgba(0,0,0,.62), 0 0 42px rgba(255,77,77,.12);
  animation-name: glow;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.hero-title-char{
  display: inline-block;
  color: rgba(255,242,242,.92);
  transition: color .12s ease;
}

.hero-title-char.is-red{
  color: rgb(221, 35, 35);
}

.hero-title-space{
  width: .35em;
}

@keyframes glow{
  from{ text-shadow: 0px 0px 5px #ff0000, 0px 0px 5px #614ad3; }
  to{ text-shadow: 0px 0px 20px #ff0000, 0px 0px 20px #614ad3; }
}

.home-hero-subtitle{
  margin-top: 10px;
  color: rgba(255,242,242,.74);
  font-size: 15px;
  line-height: 1.6;
  max-width: 54ch;
}

.home-hero-actions{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-hero-art{
  position: relative;
  z-index: 1;
  height: 220px;
  border-radius: 18px;
  border: 1px solid rgba(255,77,77,.18);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(24,10,10,.76), rgba(18,6,6,.40));
  box-shadow: 0 22px 75px rgba(0,0,0,.55), 0 0 0 1px rgba(0,0,0,.24) inset;
  filter: saturate(1.05) contrast(1.05);
}

.home-hero-art::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(closest-side at 50% 30%, rgba(255,140,140,.12), rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .55s ease, transform .9s ease;
  z-index: 0;
}

.hero-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.58));
  pointer-events:none;
}

.hero-slide.is-active{
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-dots{
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,242,242,.22);
  border: 1px solid rgba(255,242,242,.20);
  position: relative;
}

.hero-dot.is-active{
  background: rgba(0,0,0,.10);
}

.hero-dot.is-active::before{
  content:"";
  position:absolute;
  inset: -4px;
  border-radius: 999px;
  background: conic-gradient(rgba(255,140,140,.95) calc(var(--p, 0) * 1turn), rgba(255,242,242,.18) 0);
  -webkit-mask: radial-gradient(circle, transparent 58%, #000 59%);
  mask: radial-gradient(circle, transparent 58%, #000 59%);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce){
  .hero-slide{ transition: none }
}

.feature-bar{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.feature-item{
  position: relative;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,205,117,.26);
  background:
    radial-gradient(closest-side at 30% 20%, rgba(255,205,117,.14), rgba(0,0,0,0) 72%),
    linear-gradient(180deg, rgba(24,10,10,.72), rgba(18,6,6,.40));
  box-shadow:
    0 18px 55px rgba(0,0,0,.46),
    0 0 0 1px rgba(0,0,0,.22) inset,
    0 0 34px rgba(255,205,117,.08);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: default;
  outline: none;
  user-select: none;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease, filter .14s ease;
}

.feature-item::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  background:
    radial-gradient(closest-side at 25% 20%, rgba(255,220,122,.22), rgba(0,0,0,0) 72%),
    linear-gradient(90deg, rgba(0,0,0,0), rgba(255,205,117,.10), rgba(0,0,0,0));
  opacity: .9;
}

.feature-item:hover,
.feature-item:focus{
  border-color: rgba(255,205,117,.42);
  box-shadow:
    0 22px 70px rgba(0,0,0,.54),
    0 0 0 1px rgba(255,205,117,.14) inset,
    0 0 44px rgba(255,205,117,.12);
  transform: translateY(-2px);
  filter: saturate(1.02) brightness(1.02);
}

.feature-icon{
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255,205,117,.28);
  background: linear-gradient(180deg, rgba(255,205,117,.12), rgba(0,0,0,0) 55%), linear-gradient(180deg, rgba(24,10,10,.78), rgba(18,6,6,.40));
  box-shadow: 0 16px 40px rgba(0,0,0,.34), 0 0 0 1px rgba(0,0,0,.22) inset;
  color: rgba(255,220,122,.92);
}

.feature-icon svg{
  width: 20px;
  height: 20px;
}

.feature-content{
  position: relative;
  z-index: 1;
  min-width: 0;
}

.feature-title{
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,220,122,.96);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-desc{
  margin-top: 6px;
  font-weight: 950;
  letter-spacing: .03em;
  font-size: 14px;
  color: rgba(255,242,242,.74);
  line-height: 1.35;
}

@media (max-width: 1024px){
  .home-hero-inner{ grid-template-columns: 1fr; }
  .home-hero-art{ height: 200px; }
  .feature-bar{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px){
  .home-hero-inner{ padding: 16px; }
  .home-hero-art{ height: 170px; }
  .feature-bar{ grid-template-columns: 1fr; }
}

.home-video-embed{
  position: relative;
  overflow: hidden;
}

.home-video-embed .home-video-inner{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-video-embed > iframe,
.home-video-embed > video{
  width: 100%;
  height: 100%;
  display: block;
}

.news-strip{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.news-card{
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 14px;
  border: 1px solid rgba(255,77,77,.16);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(24,10,10,.76), rgba(18,6,6,.40));
  box-shadow: 0 18px 55px rgba(0,0,0,.45), 0 0 0 1px rgba(0,0,0,.22) inset;
  scroll-snap-align: start;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.news-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,77,77,.26);
  box-shadow: 0 22px 70px rgba(0,0,0,.54), 0 0 0 1px rgba(255,140,140,.08) inset;
}

.news-thumb{
  position: relative;
  height: 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.news-thumb::after{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.62));
  pointer-events: none;
}

.news-tag{
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(8px);
}

.news-tag.activity{
  background: rgba(34,197,94,.22);
  border-color: rgba(34,197,94,.26);
}

.news-tag.news{
  background: rgba(168,85,247,.22);
  border-color: rgba(168,85,247,.26);
}

.news-body{
  padding: 12px 14px 14px;
}

.news-date{
  font-size: 12px;
  color: rgba(255,242,242,.66);
  letter-spacing: .04em;
}

.news-title{
  margin-top: 6px;
  font-weight: 950;
  letter-spacing: .04em;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-excerpt{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,242,242,.66);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 1024px){
  .news-strip{
    grid-auto-flow: initial;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
  }
}

.status-list{
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.status-row{
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,77,77,.16);
  overflow: hidden;
  background:
    radial-gradient(closest-side at 30% 20%, rgba(255,140,140,.10), rgba(0,0,0,0) 72%),
    linear-gradient(180deg, rgba(24,10,10,.72), rgba(18,6,6,.40));
  box-shadow: 0 16px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(0,0,0,.22) inset;
  animation: statusIn .42s ease both;
  animation-delay: calc(var(--i, 0) * 70ms);
  transition: transform .12s ease, filter .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.status-row:hover,
.status-row:focus-within{
  border-color: rgba(255,77,77,.26);
  box-shadow: 0 20px 52px rgba(0,0,0,.42), 0 0 0 1px rgba(255,140,140,.08) inset;
  transform: translateY(-2px);
  filter: saturate(1.02) brightness(1.02);
}

.status-row::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;
  z-index: 0;
  background:
    radial-gradient(closest-side at 25% 15%, rgba(255,205,117,.10), rgba(0,0,0,0) 70%),
    linear-gradient(90deg, rgba(0,0,0,0), rgba(255,140,140,.08), rgba(0,0,0,0));
  opacity: .9;
  mask: linear-gradient(#000, transparent 72%);
}

.status-label{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  color: rgba(231,228,219,.90);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.15;
}

.status-label span:last-child{
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.status-icon{
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background:
    radial-gradient(closest-side at 40% 30%, rgba(255,140,140,.14), rgba(0,0,0,0)),
    linear-gradient(180deg, rgba(24,10,10,.78), rgba(18,6,6,.40));
  border: 1px solid rgba(255,77,77,.18);
  box-shadow: 0 14px 34px rgba(0,0,0,.35), 0 0 0 1px rgba(0,0,0,.22) inset;
  color: rgba(255,242,242,.92);
}

.status-icon svg{
  width: 18px;
  height: 18px;
}

.status-value{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  width: 100%;
  justify-content: flex-start;
  min-width: 0;
}

.status-number{
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  min-width: 44px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,77,77,.18);
  background: linear-gradient(180deg, rgba(24,10,10,.78), rgba(18,6,6,.40));
  box-shadow: 0 14px 34px rgba(0,0,0,.34), 0 0 0 1px rgba(0,0,0,.22) inset;
  color: #fff;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 18px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,77,77,.18);
  background: linear-gradient(180deg, rgba(24,10,10,.78), rgba(18,6,6,.40));
  box-shadow: 0 14px 34px rgba(0,0,0,.34), 0 0 0 1px rgba(0,0,0,.22) inset;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1024px){
  .status-list{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

.status-pill.online{
  border-color: rgba(74,222,128,.28);
  color: rgba(74,222,128,.92);
  box-shadow: 0 14px 34px rgba(0,0,0,.34), 0 0 0 1px rgba(74,222,128,.12) inset, 0 0 26px rgba(74,222,128,.10);
}

.status-pill.offline{
  border-color: rgba(248,113,113,.28);
  color: rgba(248,113,113,.92);
  box-shadow: 0 14px 34px rgba(0,0,0,.34), 0 0 0 1px rgba(248,113,113,.12) inset, 0 0 26px rgba(248,113,113,.08);
}

.status-dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  position: relative;
  background: rgba(231,228,219,.35);
  box-shadow: 0 0 0 1px rgba(0,0,0,.35) inset;
}

.status-dot.online{
  background: rgba(74,222,128,.95);
  box-shadow: 0 0 0 1px rgba(0,0,0,.35) inset, 0 0 18px rgba(74,222,128,.28);
}

.status-dot.offline{
  background: rgba(248,113,113,.95);
  box-shadow: 0 0 0 1px rgba(0,0,0,.35) inset, 0 0 18px rgba(248,113,113,.22);
}

.status-dot::after{
  content:"";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(255,255,255,.18), rgba(0,0,0,0) 70%);
  opacity: 0;
  transform: scale(.6);
}

.status-dot.online::after{
  background: radial-gradient(closest-side, rgba(74,222,128,.35), rgba(0,0,0,0) 70%);
  opacity: 1;
  animation: statusPulse 1.35s ease-in-out infinite;
}

.status-dot.offline::after{
  background: radial-gradient(closest-side, rgba(248,113,113,.30), rgba(0,0,0,0) 70%);
  opacity: 1;
  animation: statusPulse 1.65s ease-in-out infinite;
}

@keyframes statusPulse{
  0%   { transform: scale(.55); opacity: .18; }
  55%  { transform: scale(1.05); opacity: .58; }
  100% { transform: scale(1.35); opacity: 0; }
}

@keyframes statusIn{
  from{ opacity: 0; transform: translateY(6px); filter: blur(6px); }
  to{ opacity: 1; transform: translateY(0); filter: blur(0); }
}

.btn-red{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  background: linear-gradient(180deg, rgba(255,140,140,1), rgba(255,77,77,1) 55%, rgba(184,33,33,1));
  color: #1b0606;
  font-weight: 950;
  border-radius: 10px;
  padding: .72rem 1.2rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,242,242,.22);
  box-shadow:
    0 18px 48px rgba(0,0,0,.48),
    0 0 0 1px rgba(0,0,0,.18) inset,
    0 0 34px rgba(255,77,77,.16);
  transition: transform .08s ease, filter .12s ease, box-shadow .12s ease;
}

.btn-red:hover{
  filter: brightness(1.04) saturate(1.04);
  box-shadow:
    0 22px 60px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,242,242,.24) inset,
    0 0 44px rgba(255,77,77,.20);
}

.btn-red:active{ transform: translateY(1px) scale(.99) }

.btn-ghost{
  background: linear-gradient(180deg, rgba(24,10,10,.62), rgba(18,6,6,.22));
  color: rgba(255,242,242,.92);
  border-color: rgba(255,77,77,.22);
}

.btn-ghost:hover{
  filter: none;
  box-shadow:
    0 22px 60px rgba(0,0,0,.50),
    0 0 0 1px rgba(255,140,140,.12) inset,
    0 0 44px rgba(255,77,77,.14);
}

.input-dark{
  background: rgba(16,5,5,.82);
  color: var(--text);
  border: 1px solid rgba(255,77,77,.20);
  border-radius: 12px;
  padding: .68rem .85rem;
  outline: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,.18) inset;
  transition: border-color .12s ease, box-shadow .12s ease;
}

.input-dark::placeholder{ color: rgba(231,228,219,.45) }

.input-dark:focus{
  border-color: rgba(255,77,77,.62);
  box-shadow: 0 0 0 3px rgba(255,77,77,.14);
}

table{ border-collapse: collapse }
th, td{ vertical-align: top }

@media (max-width: 640px){
  header nav{ border-radius: 16px; padding: 10px }
  .nav-link{ letter-spacing: .10em; font-size: 11px; padding: 10px 12px }
}

@media (prefers-reduced-motion: reduce){
  .page-bg{ animation: none; opacity: 1 }
  .nav-link, .btn-red, .card{ transition: none }
  .center-logo-live::before, .site-logo-live, .site-logo-live.logo-sway{ animation: none }
}

.text-red-300{ color: rgba(255,140,140,.92); }
.text-red-300\/80{ color: rgba(255,140,140,.72); }
.text-red-200\/90{ color: rgba(255,242,242,.74); }
.text-red-200\/70{ color: rgba(255,242,242,.62); }
.border-red-800\/40{ border-color: rgba(255,77,77,.22); }
.border-red-800\/30{ border-color: rgba(255,77,77,.16); }
.bg-red-900\/40{ background-color: rgba(184,33,33,.26); }
.bg-red-600{ background-color: rgba(255,77,77,1); }

*{ scrollbar-color: rgba(255,140,140,.42) rgba(18,6,6,.85) }
*::-webkit-scrollbar{ height: 10px; width: 10px }
*::-webkit-scrollbar-track{ background: rgba(18,6,6,.85) }
*::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, rgba(255,140,140,.85), rgba(255,77,77,.85));
  border-radius: 999px;
  border: 2px solid rgba(18,6,6,.85);
}
