:root {
  --ink: #eefbff;
  --muted: #a9c6cf;
  --line: rgba(142, 224, 216, 0.24);
  --panel: rgba(17, 32, 40, 0.7);
  --panel-strong: rgba(12, 25, 32, 0.86);
  --cyan: #7de4d7;
  --blue: #86b8ff;
  --rose: #ff8fa1;
  --gold: #ffd36e;
  --green: #80e0ad;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow-x: hidden;
  background:
    linear-gradient(115deg, rgba(8, 18, 24, 0.86) 0%, rgba(16, 34, 43, 0.82) 48%, rgba(7, 16, 23, 0.9) 100%),
    url("assets/examplebg.jpg") center / cover no-repeat,
    #0d1f28;
  color: var(--ink);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 14%, rgba(125, 228, 215, 0.24), transparent 24%),
    radial-gradient(circle at 84% 76%, rgba(255, 211, 110, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%);
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100vw - 28px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  align-items: stretch;
}

.hero,
.panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 36%, rgba(0, 0, 0, 0.18) 100%),
    var(--panel);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.08);
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  border-radius: 16px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 68px 14px auto auto;
  z-index: 2;
  width: 218px;
  height: 218px;
  border: 1px solid rgba(125, 228, 215, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(125, 228, 215, 0.26), transparent 58%),
    radial-gradient(circle at 70% 34%, rgba(255, 211, 110, 0.22), transparent 38%);
  box-shadow:
    0 0 34px rgba(125, 228, 215, 0.18),
    inset 0 0 28px rgba(255, 255, 255, 0.06);
  filter: blur(0.2px);
  animation: floatSignal 5.8s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 56px;
  top: 168px;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(13, 31, 40, 0.58);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: rotate(9deg);
  pointer-events: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 76px;
  border-bottom: 1px solid rgba(142, 224, 216, 0.16);
  background: linear-gradient(105deg, rgba(255, 143, 161, 0.16) 0%, rgba(125, 228, 215, 0.13) 42%, rgba(255, 211, 110, 0.14) 100%);
  padding: 14px 18px;
}

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

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.brand-copy > span {
  display: block;
}

.brand-copy > span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  border: 1px solid rgba(128, 224, 173, 0.48);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(128, 224, 173, 0.16), rgba(125, 228, 215, 0.05)),
    rgba(10, 22, 29, 0.58);
  color: #dfffee;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow:
    0 0 0 1px rgba(128, 224, 173, 0.08),
    0 0 16px rgba(128, 224, 173, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  text-shadow:
    0 0 8px rgba(128, 224, 173, 0.72),
    0 0 18px rgba(125, 228, 215, 0.28);
  animation: liveStatusFlash 1.8s ease-in-out infinite;
}

.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow:
    0 0 10px rgba(128, 224, 173, 0.95),
    0 0 22px rgba(128, 224, 173, 0.52);
  animation: liveDotFlash 900ms ease-in-out infinite;
}

.brand-logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  width: fit-content;
  color: #ffffff;
  font-size: 36px;
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22),
    0 9px 20px rgba(0, 0, 0, 0.34);
}

.brand-domain-row {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  width: fit-content;
  margin: 0 0 0 1px;
}

.logo-main {
  display: block;
  color: transparent;
  background: linear-gradient(105deg, #ffffff 0%, #9be1d8 36%, #86b8ff 72%, #ffd36e 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  filter:
    drop-shadow(0 0 10px rgba(155, 225, 216, 0.52))
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.34));
  animation: logoShine 5.5s ease-in-out infinite;
}

.logo-dot {
  display: inline-block;
  color: #ffd36e;
  padding: 0 1px;
  font-size: 0.82em;
  font-weight: 950;
  text-shadow:
    0 0 12px rgba(255, 211, 110, 0.72),
    0 0 22px rgba(255, 143, 161, 0.3),
    0 6px 14px rgba(0, 0, 0, 0.24);
}

.logo-tld {
  display: inline-block;
  color: #8fd8ff;
  font-size: 0.54em;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow:
    0 0 12px rgba(134, 184, 255, 0.66),
    0 0 22px rgba(125, 228, 215, 0.22),
    0 6px 14px rgba(0, 0, 0, 0.24);
}

.brand .brand-logo-text span {
  margin-top: 0;
}

.brand .brand-logo-text .logo-main {
  display: block;
  color: transparent;
  background:
    linear-gradient(105deg, #ffffff 0%, #79ffea 30%, #7ab7ff 62%, #ffe08a 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 27px;
  font-weight: 1000;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.32))
    drop-shadow(0 0 18px rgba(121, 255, 234, 0.48))
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.34));
  animation: logoPulse 3.8s ease-in-out infinite;
}

.brand .brand-logo-text .brand-domain-row {
  display: flex;
  align-items: baseline;
  margin-top: -2px;
  margin-left: 28px;
}

.brand .brand-logo-text .logo-dot {
  color: #ffd36e;
  font-size: 22px;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.22),
    0 0 14px rgba(255, 211, 110, 0.78),
    0 0 26px rgba(255, 143, 161, 0.28),
    0 6px 14px rgba(0, 0, 0, 0.24);
}

.brand .brand-logo-text .logo-tld {
  color: #8fd8ff;
  font-size: 15px;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.18),
    0 0 14px rgba(134, 184, 255, 0.74),
    0 0 26px rgba(125, 228, 215, 0.24),
    0 6px 14px rgba(0, 0, 0, 0.24);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(142, 224, 216, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(8, 19, 25, 0.42);
  padding: 9px 14px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.nav-item {
  position: relative;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.nav a,
.nav-trigger {
  display: inline-grid;
  place-items: center;
  min-height: 32px;
  border: 1px solid rgba(190, 246, 240, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.065) 48%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(105deg, rgba(125, 228, 215, 0.12), rgba(134, 184, 255, 0.08) 52%, rgba(255, 211, 110, 0.08)),
    rgba(12, 29, 37, 0.38);
  color: #d7edf2;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(12px) saturate(1.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.18);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.26);
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.nav a:hover,
.nav a.active,
.nav-trigger:hover,
.nav-item:hover > .nav-trigger,
.nav-item:focus-within > .nav-trigger {
  border-color: rgba(155, 225, 216, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.09) 42%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(105deg, rgba(125, 228, 215, 0.23), rgba(134, 184, 255, 0.16) 52%, rgba(255, 211, 110, 0.12)),
    rgba(12, 29, 37, 0.48);
  color: #f1fbfd;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.22),
    0 0 16px rgba(125, 228, 215, 0.14);
  transform: translateY(-1px);
}

.nav-trigger::after {
  content: "›";
  display: inline-block;
  margin-left: 7px;
  color: #9be1d8;
  transform: rotate(90deg);
}

.games-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 20;
  display: grid;
  gap: 4px;
  width: 236px;
  border: 1px solid rgba(142, 224, 216, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(8, 19, 25, 0.92);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 8px;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  pointer-events: none;
  transition: opacity 150ms ease, transform 150ms ease;
  backdrop-filter: blur(14px) saturate(1.05);
}

.nav-item:hover .games-menu,
.nav-item:focus-within .games-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.games-menu a {
  grid-template-columns: 22px minmax(0, 1fr);
  justify-content: start;
  min-height: 34px;
  border-color: transparent;
  border-radius: 9px;
  background: transparent;
  color: #d7edf2;
  padding: 0 8px;
  text-align: left;
}

.games-menu a:hover {
  border-color: rgba(155, 225, 216, 0.22);
  background: rgba(125, 228, 215, 0.1);
  transform: none;
}

.game-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  line-height: 1;
}

.games-help {
  margin-top: 5px;
  border-top: 1px solid rgba(142, 224, 216, 0.16);
  padding-top: 7px;
}

.games-help a {
  color: #ffd36e;
}

.nav-note {
  color: #90acb5;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.content {
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 28px 42px 42px;
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 590px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(29px, 5.1vw, 54px);
  line-height: 1;
  letter-spacing: 0;
  text-shadow:
    0 16px 38px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(125, 228, 215, 0.16);
}

.headline-word {
  display: inline-block;
  margin-right: 8px;
  filter:
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 14px rgba(155, 225, 216, 0.12));
  transform: translateZ(0);
}

.headline-voice {
  color: #9be1d8;
  text-shadow: 0 0 18px rgba(155, 225, 216, 0.28);
}

.headline-video {
  color: #86b8ff;
  text-shadow: 0 0 18px rgba(134, 184, 255, 0.28);
}

.headline-chat {
  color: #ffd36e;
  text-shadow: 0 0 18px rgba(255, 211, 110, 0.24);
}

.headline-mic {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-left: 6px;
  border: 1px solid rgba(155, 225, 216, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(255, 92, 29, 0.2), rgba(34, 141, 248, 0.2), rgba(56, 204, 72, 0.16));
  color: #ffffff;
  font-size: 31px;
  line-height: 1;
  vertical-align: middle;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(125, 228, 215, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  filter:
    drop-shadow(0 0 8px rgba(134, 184, 255, 0.32))
    drop-shadow(0 0 14px rgba(255, 211, 110, 0.18));
}

.headline-action {
  display: block;
  margin-top: 12px;
  width: fit-content;
  border: 1px solid rgba(155, 225, 216, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(11, 25, 32, 0.48);
  color: #ffffff;
  padding: 8px 16px 10px;
  font-size: 0.52em;
  font-weight: 950;
  line-height: 1.12;
  text-decoration: none;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(255, 143, 161, 0.14),
    inset 3px 0 0 rgba(125, 228, 215, 0.64);
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.28),
    0 0 16px rgba(255, 255, 255, 0.18);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.headline-action:hover {
  border-color: rgba(155, 225, 216, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
    linear-gradient(105deg, rgba(30, 86, 92, 0.78), rgba(38, 54, 89, 0.72), rgba(91, 57, 41, 0.62));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.42),
    0 0 0 3px rgba(125, 228, 215, 0.12),
    0 0 28px rgba(134, 184, 255, 0.2),
    inset 3px 0 0 rgba(255, 211, 110, 0.78);
  transform: translateY(-2px);
}

.headline-action::after {
  content: "›";
  display: inline-block;
  margin-left: 9px;
  color: #9be1d8;
  font-size: 1.12em;
  transition: transform 160ms ease;
}

.headline-action:hover::after {
  transform: translateX(3px);
}

.headline-action .action-warm,
.headline-action .action-blue,
.headline-action .action-green {
  display: inline;
  font-weight: 1000;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.14))
    drop-shadow(0 5px 10px rgba(0, 0, 0, 0.24));
}

.headline-action .action-warm {
  color: #ff9652;
  text-shadow: 0 0 10px rgba(255, 92, 29, 0.28);
}

.headline-action .action-blue {
  color: #8fd8ff;
  text-shadow: 0 0 10px rgba(34, 141, 248, 0.3);
}

.headline-action .action-green {
  color: #92ef68;
  text-shadow: 0 0 10px rgba(56, 204, 72, 0.28);
}

.lead {
  max-width: 560px;
  margin: 0;
  color: #c4dbe2;
  font-size: 16px;
  line-height: 1.65;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid rgba(142, 224, 216, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  color: #d7edf2;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.chip img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.live-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(500px, 100%);
  border: 1px solid rgba(142, 224, 216, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(8, 19, 25, 0.48);
  padding: 12px 14px;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.wave-bars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 34px;
}

.wave-bars span {
  width: 5px;
  min-height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #9be1d8, #86b8ff);
  box-shadow: 0 0 14px rgba(125, 228, 215, 0.38);
  animation: soundWave 900ms ease-in-out infinite;
}

.wave-bars span:nth-child(2) {
  animation-delay: 120ms;
}

.wave-bars span:nth-child(3) {
  animation-delay: 240ms;
}

.wave-bars span:nth-child(4) {
  animation-delay: 90ms;
}

.wave-bars span:nth-child(5) {
  animation-delay: 210ms;
}

.live-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.live-copy b {
  color: #ffffff;
  font-size: 13px;
}

.live-copy span {
  color: #a9c6cf;
  font-size: 11px;
  line-height: 1.35;
}

.preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid rgba(142, 224, 216, 0.16);
  background: rgba(7, 17, 23, 0.28);
  padding: 14px;
}

.preview-card {
  min-height: 82px;
  border: 1px solid rgba(142, 224, 216, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(12, 25, 32, 0.64);
  padding: 13px;
}

.preview-card b,
.preview-card span {
  display: block;
}

.preview-card b {
  color: #ffffff;
  font-size: 13px;
}

.preview-card span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.panel {
  display: grid;
  grid-template-rows: auto auto auto auto;
  align-content: start;
  border-radius: 16px;
  padding: 18px;
}

.panel-head {
  display: grid;
  gap: 7px;
  border-bottom: 1px solid rgba(142, 224, 216, 0.16);
  padding-bottom: 16px;
}

.panel-head span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel-head strong {
  color: #ffffff;
  font-size: 21px;
  line-height: 1.25;
  filter:
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 14px rgba(125, 228, 215, 0.14));
}

.panel-head strong .panel-warm,
.panel-head strong .panel-blue,
.panel-head strong .panel-green {
  display: inline;
  font-weight: 1000;
  filter:
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.16))
    drop-shadow(0 8px 12px rgba(0, 0, 0, 0.28));
}

.panel-head strong .panel-warm {
  color: transparent;
  background: linear-gradient(180deg, #ffb36a 0%, #ff7a59 46%, #e84f78 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.panel-head strong .panel-blue {
  color: transparent;
  background: linear-gradient(180deg, #6fd2ff 0%, #228df8 58%, #0b63c9 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.panel-head strong .panel-green {
  color: transparent;
  background: linear-gradient(180deg, #c7f46a 0%, #8bdc57 50%, #42b883 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.panel-head strong::after {
  content: "";
  display: block;
  width: 74px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #9be1d8, #86b8ff, #ffd36e);
  box-shadow: 0 0 18px rgba(125, 228, 215, 0.28);
}

.entry-list {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 14px 0 18px;
}

.entry-button {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  border: 1px solid rgba(125, 228, 215, 0.34);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.05) 44%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(135deg, rgba(25, 89, 96, 0.86), rgba(21, 49, 64, 0.92));
  color: #ffffff;
  padding: 10px 12px;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.entry-button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -46%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  transition: left 420ms ease;
  pointer-events: none;
}

.entry-button:hover {
  border-color: rgba(155, 225, 216, 0.62);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28), 0 0 0 3px rgba(125, 228, 215, 0.1);
  transform: translateY(-2px);
}

.entry-button:hover::before {
  left: 108%;
}

.entry-button.secondary {
  border-color: rgba(255, 211, 110, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.04) 44%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(135deg, rgba(97, 67, 28, 0.88), rgba(47, 41, 35, 0.94));
}

.entry-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.11);
}

.entry-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.entry-text b,
.entry-text span {
  display: block;
}

.entry-text b {
  font-size: 15px;
  font-weight: 950;
}

.entry-text span {
  margin-top: 5px;
  color: #b7d0d8;
  font-size: 11px;
  line-height: 1.35;
}

.entry-arrow {
  color: #c9fff6;
  font-size: 22px;
  font-weight: 900;
}

.android-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(146, 239, 104, 0.32);
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 18%, rgba(146, 239, 104, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(24, 94, 74, 0.78), rgba(11, 42, 52, 0.9) 58%, rgba(24, 31, 45, 0.94));
  margin: -3px 0 17px;
  padding: 14px;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(146, 239, 104, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.android-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -42px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(125, 228, 215, 0.12);
  pointer-events: none;
}

.android-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.android-copy span {
  width: fit-content;
  border: 1px solid rgba(146, 239, 104, 0.34);
  border-radius: 999px;
  background: rgba(146, 239, 104, 0.11);
  color: #bdfc9a;
  padding: 4px 9px;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.android-copy strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.25;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.android-copy p {
  margin: 0;
  color: #c7dde4;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

.android-download {
  position: relative;
  z-index: 1;
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    linear-gradient(135deg, #65d36d, #139c84);
  color: #ffffff;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 1000;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.22),
    0 0 18px rgba(146, 239, 104, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.android-download:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.3),
    0 0 22px rgba(146, 239, 104, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.android-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 13px;
}

.screen-showcase {
  display: grid;
  gap: 8px;
  align-content: start;
  border-top: 1px solid rgba(142, 224, 216, 0.16);
  margin-top: -4px;
  padding: 10px 0 0;
}

.showcase-copy {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 9px;
  border: 1px solid rgba(255, 211, 110, 0.26);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 143, 161, 0.12), rgba(143, 216, 255, 0.13) 42%, rgba(125, 228, 215, 0.1)),
    rgba(7, 17, 23, 0.34);
  padding: 14px;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(255, 211, 110, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.showcase-copy::before {
  content: "MOBİL";
  width: fit-content;
  border: 1px solid rgba(143, 216, 255, 0.28);
  border-radius: 999px;
  background: rgba(143, 216, 255, 0.1);
  color: #8fd8ff;
  padding: 4px 9px;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 0 12px rgba(143, 216, 255, 0.34);
}

.showcase-copy b {
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 1000;
  line-height: 1.25;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.showcase-copy .showcase-warm,
.showcase-copy .showcase-blue,
.showcase-copy .showcase-green {
  font-weight: 1000;
}

.showcase-copy .showcase-warm {
  color: #ffb36a;
  text-shadow: 0 0 12px rgba(255, 122, 89, 0.26);
}

.showcase-copy .showcase-blue {
  color: #8fd8ff;
  text-shadow: 0 0 12px rgba(143, 216, 255, 0.28);
}

.showcase-copy .showcase-green {
  color: #92ef68;
  text-shadow: 0 0 12px rgba(146, 239, 104, 0.24);
}

.showcase-copy span {
  color: #c7dde4;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0;
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.shot-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 9px;
  align-items: start;
}

.shot-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(142, 224, 216, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(8, 19, 25, 0.54);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform-origin: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.shot-card:hover {
  z-index: 6;
  border-color: rgba(155, 225, 216, 0.5);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.38),
    0 0 0 3px rgba(125, 228, 215, 0.1);
  transform: translateY(-3px) scale(1.08);
}

.shot-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.shot-card:hover img {
  transform: scale(1.04);
}

.shot-card.featured {
  aspect-ratio: 9 / 13;
  max-height: 420px;
  margin-top: 15px;
}

.share-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(134, 184, 255, 0.22);
  border-radius: 11px;
  background:
    linear-gradient(90deg, rgba(134, 184, 255, 0.11), rgba(155, 225, 216, 0.05)),
    rgba(7, 17, 23, 0.22);
  color: #dcefff;
  padding: 9px 10px;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.35;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.16),
    0 0 18px rgba(134, 184, 255, 0.08);
  text-shadow:
    0 0 10px rgba(134, 184, 255, 0.22),
    0 6px 14px rgba(0, 0, 0, 0.26);
}

.share-feature img {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(134, 184, 255, 0.34));
}

.share-feature b {
  color: #ffffff;
}

.promo-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 211, 110, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 143, 161, 0.16), rgba(255, 211, 110, 0.11) 42%, rgba(125, 228, 215, 0.1)),
    rgba(7, 17, 23, 0.34);
  padding: 14px;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.26),
    0 0 24px rgba(255, 211, 110, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.promo-card::before {
  content: "REKLAM";
  width: fit-content;
  border: 1px solid rgba(255, 211, 110, 0.26);
  border-radius: 999px;
  background: rgba(255, 211, 110, 0.1);
  color: #ffd36e;
  padding: 4px 9px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 0 12px rgba(255, 211, 110, 0.34);
}

.promo-card strong {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.25;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

.promo-card .promo-warm,
.promo-card .promo-blue,
.promo-card .promo-green {
  font-weight: 1000;
}

.promo-card .promo-warm {
  color: #ffb36a;
  text-shadow: 0 0 12px rgba(255, 122, 89, 0.28);
}

.promo-card .promo-blue {
  color: #8fd8ff;
  text-shadow: 0 0 12px rgba(143, 216, 255, 0.28);
}

.promo-card .promo-green {
  color: #92ef68;
  text-shadow: 0 0 12px rgba(146, 239, 104, 0.26);
}

.promo-card span {
  color: #c7dde4;
  font-size: 11px;
  line-height: 1.5;
}

.promo-card a {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-height: 34px;
  border: 1px solid rgba(155, 225, 216, 0.34);
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(25, 89, 96, 0.86), rgba(91, 57, 41, 0.72));
  color: #ffffff;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.shot-stack {
  display: grid;
  gap: 9px;
}

.shot-stack .shot-card {
  aspect-ratio: 16 / 10;
}

.shot-label {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 17, 23, 0.74);
  color: #e8fbff;
  padding: 0 9px;
  font-size: 10px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.shot-label em {
  color: #9be1d8;
  font-style: normal;
}

.hero-main-shot,
.inline-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(142, 224, 216, 0.22);
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(8, 19, 25, 0.62);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.hero-main-shot {
  width: min(560px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  transform: rotate(-1.4deg);
}

.hero-main-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.18), transparent 28%, transparent 72%, rgba(155, 225, 216, 0.1)),
    linear-gradient(180deg, transparent 55%, rgba(5, 13, 18, 0.34));
  pointer-events: none;
}

.hero-main-shot::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 10px;
  z-index: 2;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 211, 110, 0.42) 0%, rgba(125, 228, 215, 0.24) 42%, rgba(125, 228, 215, 0) 72%);
  filter: blur(5px);
  opacity: 0.85;
  pointer-events: none;
}

.hero-main-shot:hover,
.inline-shot:hover {
  z-index: 8;
  border-color: rgba(155, 225, 216, 0.58);
  box-shadow:
    0 26px 58px rgba(0, 0, 0, 0.48),
    0 0 0 3px rgba(125, 228, 215, 0.12);
}

.hero-main-shot:hover {
  transform: translateY(-5px) rotate(0deg) scale(1.03);
}

.hero-main-shot img,
.inline-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-shot .shot-label {
  z-index: 2;
}

.inline-shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(500px, 100%);
}

.inline-shot {
  aspect-ratio: 16 / 10;
  transform: translateY(0);
}

.inline-shot:hover {
  transform: translateY(-4px) scale(1.06);
}

.inline-shot.mobile-preview img {
  object-position: center 18%;
}

.note {
  border-top: 1px solid rgba(142, 224, 216, 0.16);
  color: #90acb5;
  padding-top: 14px;
  font-size: 11px;
  line-height: 1.5;
}

.route-message {
  min-height: 20px;
  margin: -6px 0 0;
  color: #ffd36e;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.image-preview {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  padding: 22px;
  backdrop-filter: blur(5px);
}

.image-preview[hidden] {
  display: none;
}

.image-preview-frame {
  position: relative;
  width: min(980px, 100%);
  max-height: calc(100svh - 44px);
  border: 1px solid rgba(155, 225, 216, 0.34);
  border-radius: 16px;
  background: rgba(8, 19, 25, 0.88);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.image-preview img {
  display: block;
  width: 100%;
  max-height: calc(100svh - 92px);
  object-fit: contain;
  background: #071117;
}

.image-preview-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 143, 161, 0.42);
  border-radius: 9px;
  background: linear-gradient(180deg, #5c2630 0%, #3f1f2a 100%);
  color: #ffd9de;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 820px) {
  body {
    place-items: start center;
    padding: 14px 0;
  }

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

  .hero {
    min-height: 0;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .content {
    padding: 30px 22px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-note {
    white-space: normal;
  }

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

@media (max-width: 460px) {
  .shell {
    width: min(100% - 16px, 1040px);
  }

  .brand-logo-text {
    font-size: 23px;
  }

  .brand-domain-row {
    margin-left: 22px;
  }

  .brand .brand-logo-text .logo-main {
    font-size: 28px;
  }

  .brand .brand-logo-text .brand-domain-row {
    margin-left: 1px;
  }

  .brand .brand-logo-text .logo-dot {
    font-size: 22px;
  }

  .brand .brand-logo-text .logo-tld {
    font-size: 20px;
  }

  .topbar .brand .brand-copy .brand-logo-text .logo-main {
    font-size: 30px !important;
  }

  .topbar .brand .brand-copy .brand-logo-text .logo-dot {
    font-size: 22px !important;
  }

  .topbar .brand .brand-copy .brand-logo-text .logo-tld {
    font-size: 20px !important;
  }

  .content {
    gap: 18px;
    padding: 24px 18px;
  }

  .lead {
    font-size: 14px;
  }

  .headline-word {
    margin-right: 5px;
  }

  .headline-action {
    width: auto;
    max-width: 100%;
    font-size: 0.5em;
    padding: 8px 13px 9px;
  }

  .live-strip {
    align-items: flex-start;
    gap: 10px;
    padding: 10px 11px;
  }

  .hero-main-shot {
    transform: none;
  }

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

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .nav a,
  .nav-trigger {
    padding: 0 10px;
  }

  .games-menu {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 7px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .entry-button {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .entry-arrow {
    display: none;
  }

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

  .android-download {
    justify-content: center;
    width: 100%;
  }

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

  .shot-card:hover {
    transform: translateY(-2px) scale(1.03);
  }

  .image-preview {
    padding: 10px;
  }

  .image-preview-frame {
    max-height: calc(100svh - 20px);
  }

  .image-preview img {
    max-height: calc(100svh - 48px);
  }
}

@keyframes headlineGlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes logoShine {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes logoPulse {
  0%,
  100% {
    background-position: 0% 50%;
    filter:
      drop-shadow(0 0 6px rgba(255, 255, 255, 0.18))
      drop-shadow(0 0 12px rgba(155, 225, 216, 0.34))
      drop-shadow(0 10px 20px rgba(0, 0, 0, 0.34));
  }

  50% {
    background-position: 100% 50%;
    filter:
      drop-shadow(0 0 9px rgba(255, 255, 255, 0.28))
      drop-shadow(0 0 20px rgba(134, 184, 255, 0.46))
      drop-shadow(0 10px 20px rgba(0, 0, 0, 0.34));
  }
}

@keyframes liveStatusFlash {
  0%,
  100% {
    border-color: rgba(128, 224, 173, 0.42);
    box-shadow:
      0 0 0 1px rgba(128, 224, 173, 0.08),
      0 0 13px rgba(128, 224, 173, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  50% {
    border-color: rgba(155, 255, 214, 0.78);
    box-shadow:
      0 0 0 1px rgba(128, 224, 173, 0.16),
      0 0 24px rgba(128, 224, 173, 0.48),
      0 0 38px rgba(125, 228, 215, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
}

@keyframes liveDotFlash {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.82;
  }

  50% {
    transform: scale(1.22);
    opacity: 1;
  }
}

@keyframes soundWave {
  0%,
  100% {
    height: 9px;
  }

  45% {
    height: 30px;
  }
}

@keyframes floatSignal {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-12px, 10px, 0) scale(1.04);
  }
}

.topbar .brand .brand-copy .brand-logo-text {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 1px !important;
  width: fit-content !important;
  line-height: 0.9 !important;
}

.topbar .brand .brand-copy .brand-logo-text .logo-main {
  display: inline-block !important;
  margin: 0 !important;
  font-size: 38px !important;
  font-weight: 1000 !important;
  letter-spacing: 0 !important;
  animation: none !important;
}

.topbar .brand .brand-copy .brand-logo-text .logo-warm,
.topbar .brand .brand-copy .brand-logo-text .logo-blue {
  display: inline !important;
  margin: 0 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.12))
    drop-shadow(0 5px 6px rgba(0, 0, 0, 0.2)) !important;
}

.topbar .brand .brand-copy .brand-logo-text .logo-warm {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  background: linear-gradient(180deg, #ff8a1f 0%, #ff5c1d 42%, #ff1965 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}

.topbar .brand .brand-copy .brand-logo-text .logo-blue {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  background: linear-gradient(180deg, #35b8ff 0%, #1686f2 55%, #0b63c9 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}

.topbar .brand .brand-copy .brand-logo-text .brand-domain-row {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 2px !important;
  margin: 0 0 0 1px !important;
}

.topbar .brand .brand-copy .brand-logo-text .logo-dot {
  display: inline-block !important;
  margin: 0 !important;
  color: #25cf70 !important;
  font-size: 28px !important;
  font-weight: 1000 !important;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12),
    0 3px 4px rgba(37, 207, 112, 0.16),
    0 5px 6px rgba(0, 0, 0, 0.18) !important;
}

.topbar .brand .brand-copy .brand-logo-text .logo-tld {
  display: inline-block !important;
  margin: 0 !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  background: linear-gradient(180deg, #75df53 0%, #33c93e 52%, #16a934 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  font-size: 25px !important;
  font-weight: 950 !important;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12),
    0 3px 4px rgba(51, 201, 62, 0.16),
    0 5px 6px rgba(0, 0, 0, 0.18) !important;
}
