:root {
  --ink: #f6f8ff;
  --paper: #101421;
  --paper-soft: #1a2438;
  --blue: #29b6f6;
  --green: #57d46d;
  --pink: #ff5f9f;
  --yellow: #ffd84a;
  --orange: #ff8a3d;
  --violet: #8b5cf6;
  --line: #263247;
  --muted: #9eb1c7;
  --shadow: #000;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: #000;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(35, 86, 255, .18), transparent 20rem),
    radial-gradient(circle at 82% 18%, rgba(19, 215, 255, .14), transparent 24rem),
    radial-gradient(circle at 76% 72%, rgba(255, 95, 159, .08), transparent 22rem),
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    #000;
  background-size: auto, auto, auto, 28px 28px, 28px 28px, auto;
}

.hold-theme {
  --paper: #e7ecff;
  --paper-soft: #b8c9ff;
  --blue: #2356ff;
  --green: #74dc5f;
  --pink: #ff643d;
  --yellow: #f5f7ff;
  --line: #08112b;
  --muted: #6e789b;
  background:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    radial-gradient(circle at 18% 30%, rgba(130, 205, 255, .2), transparent 20rem),
    radial-gradient(circle at 82% 24%, rgba(255, 94, 45, .18), transparent 21rem),
    #060a18;
  background-size: 28px 28px, 28px 28px, auto, auto, auto;
}

.battery-theme {
  --paper: #e4fbff;
  --paper-soft: #9befff;
  --blue: #13d7ff;
  --green: #39ff8a;
  --pink: #e8398f;
  --yellow: #ffe93f;
  --line: #070914;
  --muted: #5e7990;
  background:
    radial-gradient(circle at 18% 18%, rgba(19, 215, 255, .18), transparent 18rem),
    radial-gradient(circle at 78% 36%, rgba(112, 70, 255, .16), transparent 20rem),
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    #000;
  background-size: auto, auto, 26px 26px, 26px 26px, auto;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 3px solid #1e2a44;
  background: rgba(0, 0, 0, .88);
  box-shadow: 0 8px 0 rgba(0, 0, 0, .45);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: 78px;
  height: 52px;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 10px rgba(19, 215, 255, .28));
}

.hero-logo {
  width: min(330px, 78vw);
  height: auto;
  margin: 0 0 18px;
  display: block;
  image-rendering: pixelated;
  filter: drop-shadow(8px 8px 0 var(--shadow));
}

.bot-mark {
  width: 42px;
  height: 42px;
  position: relative;
  image-rendering: pixelated;
  background: var(--green);
  border: 4px solid var(--line);
  box-shadow: 4px 4px 0 var(--shadow);
}

.bot-mark::before,
.bot-mark::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--ink);
}

.bot-mark::before {
  left: 8px;
}

.bot-mark::after {
  right: 8px;
}

.bot-antenna {
  width: 10px;
  height: 10px;
  margin-left: -8px;
  margin-top: -34px;
  border: 3px solid var(--line);
  background: var(--pink);
  box-shadow: 2px 2px 0 var(--shadow);
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-family: "Press Start 2P", "Courier New", monospace;
  font-size: 14px;
  letter-spacing: 0;
}

.brand-text span {
  margin-top: 6px;
  color: #13d7ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 12px;
  color: #f6f8ff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  border: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #13d7ff;
  background: #07101b;
  color: #13d7ff;
  box-shadow: 3px 3px 0 #00364c;
}

.hero {
  width: min(var(--max), calc(100% - 32px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: 48px;
  align-items: center;
}

.hero-panel {
  padding: 28px;
  position: relative;
  border: 5px solid #263247;
  background:
    linear-gradient(rgba(19, 215, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 215, 255, .045) 1px, transparent 1px),
    rgba(0, 0, 0, .78);
  background-size: 18px 18px;
  box-shadow: 10px 10px 0 #000;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  background: linear-gradient(135deg, #2356ff, #13d7ff 48%, #ff314f);
  transform: translate(8px, 8px);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 10px;
  border: 3px solid #13d7ff;
  background: #07101b;
  box-shadow: 4px 4px 0 var(--shadow);
  color: #13d7ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  color: var(--paper);
  font-family: "Press Start 2P", "Courier New", monospace;
  font-size: clamp(40px, 7vw, 88px);
  text-shadow: 6px 6px 0 var(--shadow);
}

.hero-panel h1 {
  color: #ff314f;
  text-shadow:
    4px 0 0 #ffd7df,
    0 4px 0 #7b0018,
    8px 8px 0 #000;
}

h2 {
  font-family: "Press Start 2P", "Courier New", monospace;
  font-size: clamp(24px, 4vw, 44px);
}

h3 {
  font-size: 24px;
  font-weight: 900;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: #f8ecc9;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button,
.store-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 4px solid #263247;
  background: #101421;
  box-shadow: 5px 5px 0 var(--shadow);
  color: #f6f8ff;
  text-decoration: none;
  font-weight: 900;
  transition: transform .12s ease, box-shadow .12s ease;
}

.button {
  padding: 0 18px;
}

.store-button {
  min-width: 164px;
  padding: 8px 14px;
  background: #05070d;
  color: white;
}

.button:hover,
.store-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--shadow);
}

.store-button small {
  display: block;
  color: #c8c8d4;
  font-size: 11px;
  line-height: 1;
}

.store-button strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.store-badge {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .12s ease, filter .12s ease;
}

.store-badge img {
  width: auto;
  height: 48px;
  display: block;
}

.google-play-badge img {
  height: 70px;
  margin: -11px -12px;
}

.store-badge:hover {
  transform: translateY(2px);
  filter: brightness(1.12);
}

.screenshot-showcase,
.hero-gallery {
  min-height: 560px;
  position: relative;
}

.phone-frame {
  overflow: hidden;
  border: 6px solid var(--blue);
  background: #0b0d18;
  box-shadow: 10px 10px 0 var(--shadow);
}

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

.phone-frame-front {
  position: absolute;
  left: 42px;
  top: 10px;
  z-index: 2;
  width: 250px;
  aspect-ratio: 333 / 592;
  transform: rotate(-4deg);
}

.phone-frame-back {
  position: absolute;
  right: 24px;
  bottom: 8px;
  width: 230px;
  aspect-ratio: 333 / 592;
  transform: rotate(5deg);
  opacity: .96;
}

.floating-icon {
  position: absolute;
  z-index: 4;
  width: 92px;
  height: 92px;
  border: 5px solid var(--line);
  background: #0d1422;
  box-shadow: 7px 7px 0 var(--shadow);
  image-rendering: pixelated;
}

.icon-hold {
  right: 34px;
  top: 36px;
}

.icon-battery {
  left: 2px;
  bottom: 64px;
}

.image-art {
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px),
    #171222;
  background-size: 18px 18px;
}

.hold-theme .phone-frame,
.hold-theme .image-art img {
  border-color: #2356ff;
}

.battery-theme .phone-frame,
.battery-theme .image-art img {
  border-color: #242632;
}

.battery-theme .single-game-gallery {
  min-height: 620px;
}

.battery-theme .single-game-gallery .phone-frame {
  aspect-ratio: 1240 / 2688;
}

.phone-frame--tall {
  aspect-ratio: 1240 / 2688;
}

.battery-theme h1,
.battery-theme h2,
.battery-theme .eyebrow {
  color: #f6f8ff;
  text-shadow: 5px 5px 0 #00364c;
}

.battery-theme .eyebrow {
  background: #080b16;
  border-color: #13d7ff;
}

.hold-theme .eyebrow {
  background: #2356ff;
  color: white;
}

.hold-theme .hero-copy,
.battery-theme .hero-copy {
  color: #f5f7ff;
}

.image-art img {
  width: min(128px, 72%);
  height: auto;
  border: 5px solid var(--line);
  box-shadow: 7px 7px 0 var(--shadow);
  image-rendering: pixelated;
}

.single-game-gallery {
  min-height: 600px;
}

.single-game-gallery .main-shot {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 3;
  width: 270px;
  aspect-ratio: 333 / 592;
  transform: translateX(-50%);
}

.single-game-gallery .side-shot {
  position: absolute;
  width: 190px;
  aspect-ratio: 333 / 592;
  opacity: .92;
}

.single-game-gallery .side-shot-top {
  left: 0;
  top: 52px;
  transform: rotate(-7deg);
}

.single-game-gallery .side-shot-bottom {
  right: 0;
  bottom: 20px;
  transform: rotate(7deg);
}

.pixel-stage {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border: 5px solid var(--line);
  background:
    linear-gradient(#21193a 0 0) 0 0 / 100% 100%,
    #21193a;
  box-shadow: 10px 10px 0 var(--shadow);
}

.pixel-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 88%, rgba(255, 255, 255, .06) 88%) 0 0 / 100% 8px,
    linear-gradient(90deg, transparent 88%, rgba(255, 255, 255, .04) 88%) 0 0 / 8px 100%;
  opacity: .9;
}

.pixel-ground {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 96px;
  background:
    linear-gradient(45deg, #3fb950 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(-45deg, #2f7f45 25%, transparent 25%) 0 0 / 24px 24px,
    #255d35;
  border-top: 5px solid var(--line);
}

.pixel-planet {
  position: absolute;
  right: 42px;
  top: 44px;
  width: 116px;
  height: 116px;
  background: var(--orange);
  border: 5px solid var(--line);
  box-shadow: inset -22px -18px 0 rgba(0, 0, 0, .18), 7px 7px 0 var(--shadow);
}

.pixel-star {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 216, 74, .2);
}

.star-a { left: 56px; top: 62px; }
.star-b { left: 198px; top: 126px; background: var(--blue); }
.star-c { right: 202px; top: 230px; }

.pixel-bot {
  position: absolute;
  left: 56px;
  bottom: 92px;
  width: 116px;
  height: 118px;
  border: 5px solid var(--line);
  background: var(--green);
  box-shadow: 9px 9px 0 var(--shadow);
}

.pixel-bot::before,
.pixel-bot::after {
  content: "";
  position: absolute;
  top: 34px;
  width: 18px;
  height: 18px;
  background: var(--ink);
}

.pixel-bot::before { left: 24px; }
.pixel-bot::after { right: 24px; }

.pixel-bot-mouth {
  position: absolute;
  left: 38px;
  bottom: 28px;
  width: 40px;
  height: 8px;
  background: var(--line);
}

.pixel-phone {
  position: absolute;
  right: 74px;
  bottom: 80px;
  width: 154px;
  height: 268px;
  border: 6px solid var(--line);
  background: #0e1020;
  box-shadow: 10px 10px 0 var(--shadow);
}

.pixel-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 42px;
  height: 6px;
  transform: translateX(-50%);
  background: #3d3a54;
}

.phone-screen {
  position: absolute;
  inset: 28px 14px 18px;
  overflow: hidden;
  background:
    linear-gradient(#252051, #0e1934);
  border: 3px solid #34314d;
}

.phone-screen .battery {
  position: absolute;
  left: 22px;
  top: 36px;
  width: 52px;
  height: 24px;
  border: 4px solid var(--paper);
  background: var(--green);
}

.phone-screen .battery::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 5px;
  width: 6px;
  height: 8px;
  background: var(--paper);
}

.phone-screen .line {
  position: absolute;
  right: 20px;
  bottom: 42px;
  width: 28px;
  height: 112px;
  background: var(--pink);
  border: 3px solid var(--paper);
}

.section {
  padding: 74px 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(19, 215, 255, .12), transparent 18rem),
    #070b14;
  border-top: 5px solid #1e2a44;
}

.section.alt {
  background:
    radial-gradient(circle at 80% 16%, rgba(35, 86, 255, .16), transparent 20rem),
    #000;
}

.hold-theme .section {
  background:
    radial-gradient(circle at 12% 30%, rgba(93, 185, 255, .25), transparent 18rem),
    radial-gradient(circle at 92% 20%, rgba(255, 98, 51, .2), transparent 18rem),
    #070b14;
}

.battery-theme .section {
  background:
    radial-gradient(circle at 16% 20%, rgba(19, 215, 255, .18), transparent 18rem),
    radial-gradient(circle at 86% 16%, rgba(232, 57, 143, .14), transparent 18rem),
    #07101b;
}

.battery-theme .section h2,
.battery-theme .section h3,
.battery-theme .lead,
.battery-theme .feature p,
.battery-theme .info-panel p {
  color: #dff8ff;
}

.battery-theme .feature,
.battery-theme .info-panel,
.battery-theme .game-card {
  background: #0d1422;
  border-color: #263247;
}

.battery-theme .feature strong,
.battery-theme .info-panel h3 {
  color: #13d7ff;
}

.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head p,
.lead {
  max-width: 680px;
  color: #d7e4f3;
  font-size: 18px;
  line-height: 1.6;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.game-card,
.feature,
.info-panel {
  border: 5px solid #263247;
  background: #0d1422;
  box-shadow: 8px 8px 0 rgba(10, 7, 16, .9);
}

.game-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  overflow: hidden;
}

.game-art {
  min-height: 260px;
  position: relative;
  border-right: 5px solid var(--line);
  background: #141527;
}

.game-art.balance {
  background:
    linear-gradient(90deg, transparent 48%, var(--pink) 48% 52%, transparent 52%),
    linear-gradient(#4dc7ff, #2453a5);
}

.game-art.balance::before {
  content: "";
  position: absolute;
  left: 44px;
  bottom: 38px;
  width: 92px;
  height: 92px;
  background: var(--yellow);
  border: 5px solid var(--line);
  box-shadow: 7px 7px 0 var(--shadow);
}

.game-art.battery {
  background:
    radial-gradient(circle at 30% 22%, var(--yellow) 0 8px, transparent 9px),
    radial-gradient(circle at 72% 34%, var(--blue) 0 6px, transparent 7px),
    linear-gradient(#17112f, #071827);
}

.game-art.battery::before {
  content: "";
  position: absolute;
  left: 42px;
  top: 72px;
  width: 92px;
  height: 92px;
  background: var(--green);
  border: 5px solid var(--line);
  box-shadow: 7px 7px 0 var(--shadow);
}

.game-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.game-body p {
  margin: 0;
  color: #d7e4f3;
  font-size: 16px;
  line-height: 1.55;
}

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

.tag {
  padding: 6px 8px;
  border: 3px solid #263247;
  background: #101421;
  color: #13d7ff;
  font-size: 12px;
  font-weight: 900;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature {
  padding: 22px;
}

.feature strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.feature p {
  margin: 0;
  color: #d7e4f3;
  line-height: 1.55;
}

.game-page .hero {
  min-height: auto;
  padding-top: 56px;
}

@media (min-width: 921px) {
  body.game-page.battery-theme .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
  }
}

.game-page h1 {
  font-size: clamp(34px, 5vw, 68px);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.stat {
  padding: 10px 12px;
  border: 4px solid #263247;
  background: #101421;
  color: #f6f8ff;
  box-shadow: 4px 4px 0 var(--shadow);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.info-panel {
  padding: 24px;
}

.info-panel ul {
  margin: 18px 0 0;
  padding-left: 22px;
  color: #d7e4f3;
  line-height: 1.7;
}

.footer {
  padding: 34px 0;
  border-top: 5px solid var(--line);
  background: #171222;
  color: var(--paper);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #cfc5e2;
  font-size: 14px;
}

.footer-inner-stacked {
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: baseline;
}

.footer-legal a {
  color: #cfc5e2;
  font-weight: 700;
}

.footer-legal a:hover {
  color: var(--paper);
}

.footer-legal-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: baseline;
}

.footer-legal-group strong {
  color: var(--paper);
  font-size: 13px;
  width: 100%;
}

@media (min-width: 640px) {
  .footer-legal-group strong {
    width: auto;
    margin-right: 4px;
  }
}

.footer a {
  color: var(--paper);
  font-weight: 800;
}

.legal-page .hero {
  min-height: auto;
  display: block;
  padding: 54px 0 28px;
}

.legal-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto 72px;
  padding: 34px;
  border: 5px solid #263247;
  background: rgba(7, 11, 20, .94);
  box-shadow: 10px 10px 0 #000;
}

.legal-shell h2 {
  margin-top: 34px;
  color: #f6f8ff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.legal-shell h2:first-child {
  margin-top: 0;
}

.legal-shell p,
.legal-shell li {
  color: #d7e4f3;
  font-size: 17px;
  line-height: 1.7;
}

.legal-shell ul {
  padding-left: 24px;
}

.legal-shell a {
  color: #13d7ff;
  font-weight: 800;
}

.legal-meta {
  color: #9eb1c7;
  font-size: 15px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.legal-nav a {
  padding: 8px 10px;
  border: 3px solid #263247;
  background: #101421;
  color: #f6f8ff;
  text-decoration: none;
  font-weight: 900;
}

@media (max-width: 920px) {
  .hero,
  .split,
  .games-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .pixel-stage {
    min-height: 360px;
  }

  .screenshot-showcase,
  .hero-gallery {
    min-height: 500px;
  }

  .phone-frame-front {
    left: max(18px, calc(50% - 210px));
    width: 220px;
  }

  .phone-frame-back {
    right: max(18px, calc(50% - 210px));
    width: 205px;
  }

  .single-game-gallery .main-shot {
    width: 245px;
  }

  .single-game-gallery .side-shot {
    width: 168px;
  }

  .battery-theme .single-game-gallery {
    min-height: 500px;
  }

  .section-head {
    display: block;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .brand-text strong {
    font-size: 12px;
  }

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

  .game-art {
    min-height: 210px;
    border-right: 0;
    border-bottom: 5px solid var(--line);
  }

  .pixel-phone {
    right: 26px;
    width: 132px;
    height: 232px;
  }

  .pixel-bot {
    left: 28px;
    width: 98px;
    height: 100px;
  }

  .screenshot-showcase,
  .hero-gallery,
  .single-game-gallery {
    min-height: 440px;
  }

  .phone-frame-front {
    left: 28px;
    top: 12px;
    width: 190px;
  }

  .phone-frame-back {
    right: 18px;
    width: 172px;
  }

  .floating-icon {
    width: 72px;
    height: 72px;
  }

  .single-game-gallery .main-shot {
    width: 210px;
  }

  .single-game-gallery .side-shot {
    width: 138px;
  }

  .single-game-gallery .side-shot-top {
    left: 8px;
  }

  .single-game-gallery .side-shot-bottom {
    right: 8px;
  }

  .battery-theme .single-game-gallery {
    min-height: 480px;
  }

  .footer-inner {
    display: block;
  }

  .footer-top {
    display: block;
    margin-bottom: 16px;
  }

  .footer-legal-group {
    margin-bottom: 12px;
  }
}
