:root {
  --bg: #05060a;
  --neon-cyan: #00f0ff;
  --neon-violet: #8a2cff;
  --text-main: #f5f7ff;
  --text-muted: #a9b3d9;
}

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

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Roboto", "Segoe UI", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at 50% 0, #061425 0, #020309 55%, #000000 100%);
}

body {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

body,
.slide {
  background-image: url("slide-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tron-particles {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
}

.tron-particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(0, 255, 255, 0.4);
  border-radius: 50%;
  opacity: 0.3;
}

.holo-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAIAAABLbSncAAAAGUlEQVQYV2NkQANHcODAgQ3GgJGBgeEGAEATWQJi3il2kQAAAABJRU5ErkJggg==");
  opacity: 0.12;
  mix-blend-mode: screen;
  z-index: 1;
}

.holo-pulse {
  animation: holoPulse 3s ease-in-out infinite;
}

@keyframes holoPulse {
  0% {
    filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(0, 255, 255, 0.9));
  }
  100% {
    filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.4));
  }
}

.hud-panel {
  position: fixed;
  top: 18px;
  right: 26px;
  z-index: 10;
  background: rgba(0, 15, 25, 0.7);
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  font-size: 11px;
  color: #00eaff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deck {
  width: 100%;
  max-width: 1440px;
  height: 100vh;
  padding: 22px clamp(16px, 3vw, 32px);
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.deck-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.7);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.8), 0 0 26px rgba(138, 44, 255, 0.9);
  background: radial-gradient(circle at 30% 0, #ffffff 0, #00f0ff 22%, transparent 55%);
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text-main {
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 14px;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.9), 0 0 16px rgba(138, 44, 255, 0.8);
}

.brand-text-sub {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  opacity: 0.9;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 240, 255, 0.7);
  background: rgba(4, 6, 16, 0.96);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.65);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #00ff99;
  box-shadow: 0 0 12px rgba(0, 255, 153, 0.9);
  animation: pulseDot 1.4s ease-out infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.slides-shell {
  flex: 1;
  position: relative;
  margin-top: 8px;
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.slides-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  padding: clamp(22px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(40px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  border-radius: 20px;
  border: 2px solid rgba(0, 255, 255, 0.15);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.1) inset,
    0 0 60px rgba(138, 44, 255, 0.12) inset;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.slide-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.slide-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--neon-cyan);
  opacity: 0.9;
}

.slide-title {
  margin-top: 4px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.14;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.7),
    0 0 20px rgba(138, 44, 255, 0.75);
}

.slide:first-of-type .slide-title {
  animation: titleStrobe 3.5s infinite ease-in-out;
}

@keyframes titleStrobe {
  0% {
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
  }
  50% {
    text-shadow: 0 0 26px rgba(138, 44, 255, 0.9);
  }
  100% {
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
  }
}

.slide-tag {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(138, 44, 255, 0.7);
  background: radial-gradient(circle at 0 0, rgba(138, 44, 255, 0.9), transparent 70%);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f1e9ff;
  white-space: nowrap;
}

.slide-body {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  flex: 1;
  min-height: 0;
}

.text-block {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 720px;
}

.text-block p + p {
  margin-top: 10px;
}

.bullet-list {
  list-style: none;
  margin-top: 10px;
}

.bullet-list li {
  position: relative;
  padding-left: 18px;
  margin-top: 6px;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #ffffff 0, var(--neon-cyan) 45%, transparent 80%);
  box-shadow: 0 0 13px rgba(0, 240, 255, 1);
}

.highlight {
  color: var(--neon-cyan);
  font-weight: 600;
}

.visual-panel {
  position: relative;
  border-radius: 22px;
  padding: 14px 16px;
  background: radial-gradient(circle at top left, rgba(0, 240, 255, 0.16), transparent 60%),
    radial-gradient(circle at bottom right, rgba(138, 44, 255, 0.2), transparent 60%),
    linear-gradient(135deg, rgba(4, 7, 16, 0.96), rgba(7, 9, 24, 0.98));
  border: 1px solid rgba(161, 178, 255, 0.5);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.85), 0 0 40px rgba(0, 240, 255, 0.65),
    0 0 56px rgba(138, 44, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  min-height: 260px;
}

.visual-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  opacity: 0.92;
}

.visual-title {
  font-size: 15px;
  font-weight: 600;
}

.image-frame {
  margin-top: 6px;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.6);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.7),
    0 0 26px rgba(138, 44, 255, 0.6);
}

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

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.pill {
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(0, 240, 255, 0.5);
  background: rgba(4, 8, 16, 0.98);
  font-size: 11px;
  color: var(--text-muted);
}

.metrics-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 12px;
}

.metric-card {
  position: relative;
  padding: 12px 13px;
  border-radius: 16px;
  background: radial-gradient(circle at top, rgba(0, 240, 255, 0.17), transparent 60%),
    rgba(4, 7, 18, 0.94);
  border: 1px solid rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.45),
    0 0 26px rgba(138, 44, 255, 0.45);
  overflow: hidden;
}

.metric-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.metric-value {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
}

.metric-note {
  margin-top: 2px;
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.9;
}

.use-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.use-card {
  position: relative;
  padding: 12px 13px;
  border-radius: 18px;
  background: radial-gradient(circle at 0 0, rgba(0, 240, 255, 0.4), transparent 70%),
    linear-gradient(145deg, rgba(5, 7, 16, 0.98), rgba(7, 9, 24, 0.98));
  border: 1px solid rgba(0, 240, 255, 0.45);
  box-shadow: 0 0 22px rgba(0, 240, 255, 0.55);
  font-size: 13px;
}

.use-card span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(229, 245, 255, 0.9);
  margin-bottom: 4px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.price-card {
  border-radius: 18px;
  padding: 12px 13px;
  background: radial-gradient(circle at 10% 0, rgba(0, 240, 255, 0.25), transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(138, 44, 255, 0.3), transparent 65%),
    linear-gradient(135deg, rgba(4, 7, 16, 0.98), rgba(8, 9, 26, 0.98));
  border: 1px solid rgba(161, 178, 255, 0.6);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.7),
    0 0 30px rgba(138, 44, 255, 0.5);
}

.price-engine {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.price-value {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
}

.price-note {
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-muted);
}

.price-disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.contact-main {
  font-size: 14px;
  color: var(--text-muted);
}

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

.social-pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 240, 255, 0.7);
  font-size: 12px;
  color: #e9f7ff;
  background: rgba(5, 8, 16, 0.98);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.qr-box {
  border-radius: 18px;
  padding: 12px;
  border: 1px dashed rgba(161, 178, 255, 0.8);
  background: radial-gradient(circle at 0 0, rgba(0, 240, 255, 0.3), transparent 60%),
    rgba(5, 7, 16, 0.96);
  font-size: 12px;
  color: var(--text-muted);
}

.deck-footer {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
}

.controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn {
  border-radius: 999px;
  border: 1px solid rgba(0, 240, 255, 0.7);
  background: radial-gradient(circle at 0 0, rgba(0, 240, 255, 0.4), transparent 70%),
    rgba(5, 8, 16, 0.97);
  color: #e9f7ff;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.6),
    0 0 22px rgba(138, 44, 255, 0.55);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(0, 240, 255, 0.9),
    0 0 34px rgba(138, 44, 255, 0.75);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.8),
    0 0 18px rgba(138, 44, 255, 0.65);
}

.dots {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: 1px solid rgba(0, 240, 255, 0.7);
  background: rgba(4, 7, 18, 0.97);
  opacity: 0.55;
}

.dot.active {
  background: var(--neon-cyan);
  box-shadow: 0 0 8px rgba(0, 240, 255, 1);
  opacity: 1;
}

.team-intro {
  width: 100%;
  padding: 20px 24px;
  background: rgba(10, 20, 35, 0.55);
  border-radius: 14px;
  border: 1px solid rgba(0, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.team-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
  align-items: start;
}

.team-card {
  position: relative;
  background: rgba(10, 14, 25, 0.92);
  border-radius: 18px;
  border: 1px solid rgba(138, 44, 255, 0.35);
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.team-photo-wrapper {
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-bottom: 1px solid rgba(138, 44, 255, 0.35);
}

.team-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: 0.4s ease;
}

.team-card:hover .team-photo-wrapper img {
  transform: scale(1.08) translateY(-4px);
}

.team-card-info {
  padding: 12px 14px 14px;
}

.team-name {
  position: relative;
  font-size: 16px;
  font-weight: 600;
}

.team-name::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  clip-path: inset(0 0 50% 0);
  color: rgba(138, 44, 255, 0.7);
  opacity: 0.3;
}

.team-role {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 4px;
  position: relative;
}

.team-role::after {
  content: "";
  display: block;
  margin-top: 6px;
  height: 3px;
  width: 60%;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(138, 44, 255, 0.8), rgba(0, 240, 255, 0.6));
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

.neon-text:hover {
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.9),
    0 0 30px rgba(138, 44, 255, 0.9),
    0 0 60px rgba(0, 255, 255, 0.6);
  transition: 0.3s ease;
}

.contacts-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.contact-subtitle {
  margin-top: 25px;
  font-size: 18px;
}

.contact-address {
  margin-top: 25px;
  font-size: 16px;
}

.tron-btn {
  padding: 10px 20px;
  border: 1px solid #00eaff;
  color: #00eaff;
  border-radius: 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  transition: 0.25s;
  background: rgba(0, 20, 40, 0.4);
  box-shadow: 0 0 8px #00eaff70;
}

.tron-btn:hover {
  color: #fff;
  background: #00eaff33;
  transform: translateY(-3px);
  box-shadow: 0 0 18px #00eaff, 0 0 30px #00aaff inset;
}

.tron-glass {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0, 10, 30, 0.6);
  border: 1px solid rgba(0, 170, 255, 0.5);
  box-shadow: inset 0 0 12px #00caff70, 0 0 25px #0050ff99;
}

.map-iframe {
  width: 100%;
  height: 380px;
  filter: brightness(0.9) contrast(1.1);
}

.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: #00eaff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px #00eaff;
}

.map-marker::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #00eaff;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

.holo-label {
  position: absolute;
  bottom: 12px;
  right: 20px;
  font-size: 18px;
  color: #00eaff;
  letter-spacing: 1px;
  text-shadow: 0 0 12px #00eaff, 0 0 22px #0088ff;
  opacity: 0.85;
  pointer-events: none;
}

.tron-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid #00aaff55;
  box-shadow: 0 0 25px #00eaff55;
  animation: tronBorder 6s linear infinite;
}

@keyframes tronBorder {
  0% {
    box-shadow: 0 0 20px #00f0ff55;
  }
  50% {
    box-shadow: 0 0 40px #0088ffbb;
  }
  100% {
    box-shadow: 0 0 20px #00f0ff55;
  }
}

.corner-logo {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: auto;
  opacity: 0.95;
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.6))
    drop-shadow(0 0 14px rgba(0, 140, 255, 0.4));
}

/* TABLET */
@media (min-width: 769px) and (max-width: 1180px) {
  html,
  body {
    height: auto;
    overflow-y: auto;
  }

  .deck {
    height: auto;
    padding: 20px clamp(12px, 2vw, 28px);
  }

  .slides-shell {
    height: auto;
    overflow: visible;
  }

  .slides-inner {
    height: auto;
  }

  .slide {
    position: relative;
    inset: unset;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin-bottom: 40px;
    padding: 26px 24px;
  }

  .slide::before,
  .slide::after {
    opacity: 0.45;
  }

  .slide-body {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .team-cards-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .team-photo-wrapper {
    height: 200px;
  }

  .use-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .price-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .contacts-body {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .map-iframe {
    height: 340px;
  }

  .corner-logo {
left: auto;
right: 20px;
bottom: 20px;
width: 80px;    
}

  .hud-panel {
    font-size: 10px;
    padding: 8px 13px;
    top: 16px;
    right: 20px;
  }

  .deck-footer {
    display: none;
  }

  .team-logo {
    display: none;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  html,
  body {
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
  }

  body {
    display: block;
  }

  .deck {
    height: auto;
    padding: 12px;
  }

  .slides-shell {
    height: auto;
    overflow: visible;
  }

  .slides-inner {
    height: auto;
  }

  .slide {
    position: relative;
    inset: unset;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin-bottom: 28px;
    padding: 18px 14px;
  }

  .slide-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .slide-title {
    font-size: 22px;
    line-height: 1.25;
  }

  .slide-kicker {
    font-size: 10px;
  }

  .slide-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .text-block {
    font-size: 14px;
    max-width: 100%;
  }

  .visual-panel {
    width: 100%;
    padding: 12px;
    min-height: auto;
  }

  .image-frame {
    max-width: 100%;
    border-radius: 14px;
  }

  .image-frame img {
    object-fit: contain;
  }

  .team-cards-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .team-card {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }

  .team-photo-wrapper {
    height: 180px;
  }

  .use-cards,
  .price-grid {
    grid-template-columns: 1fr;
  }

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

  .contacts-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .map-iframe {
    height: 260px;
  }

  .hud-panel {
    top: 10px;
    right: 10px;
    padding: 6px 10px;
    font-size: 9px;
  }

  .corner-logo {
    width: 90px;
    bottom: 12px;
    left: 12px;
  }

  .deck-footer {
    display: none;
  }

  .team-logo {
    display: none;
  }

  .tron-particles,
  .holo-noise {
    display: none;
  }
}
