:root {
  --color-bg: #5AC2E7;
  --color-white: #ffffff;
  --color-white-light: rgba(255, 255, 255, 0.9);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-white);
  /* text-align: center; */
  line-height: 1.5;
}

header {
  padding: 15px 55px;
  position: relative;
  z-index: 10;
}

nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

nav a {
  position: relative;
  color: var(--color-white);
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
@media only screen and (max-width: 720px) {
  nav a {
    font-size: 15px;
    white-space: nowrap;
  }
}
nav a.act::after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: -6px;
  left: 0;
  background-color: #fff;
}


.hero {
  position: relative;
  padding: 60px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 35vw;
  max-width: 380px;
  min-width: 254px;
  height: auto;
}

.subtitle {
  font-size: 24px;
  padding: 0 15px;
  margin-top: 20px;
  color: var(--color-white-light);
  text-align: center;
}

.hero .us-btn {
  background: var(--color-white);
  color: var(--color-bg);
  border: none;
  /* padding: 12px 24px; */
  padding: 1.2em 2em;
  margin-top: 25px;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  transition: background 0.2s;
  text-decoration: none;
}

.hero button:hover {
  background: #f2f2f2;
}

.game-block {
  padding: 80px 10vw 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-logo {
  width: 36vw;
  max-width: 480px;
  height: auto;
}

.game-title {

}
.game-desc {
  font-size: 17px;
  font-weight: 400;
  max-width: 600px;
}

.quote {
  font-size: 15px;
  /* font-style: italic; */
  margin: 25px 0 20px;
  color: var(--color-white);
}

.game-block ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px;
  display: inline-block;
  text-align: left;
  color: var(--color-white-light);
  font-size: 15px;
  line-height: 1.6;
}

.small {
  font-size: 13px;
  margin: 30px 0;
  color: var(--color-white-light);
}

.small a {
  color: var(--color-white);
  text-decoration: underline;
}

/* .game-block .down-btn {
  min-width: 255px;
} */

.store-btn {
  width: 22vw;
  min-width: 255px;
  max-width: 300px;
  height: auto;
  margin-top: 20px;
}

.desc {
  font-size: 15px;
  max-width: 520px;
  margin: 30px auto;
  color: var(--color-white-light);
  line-height: 1.6;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 25px;
}

.store-row img {
  width: 22vw;
  max-width: 180px;
  height: auto;
}

.cc-block {
  padding: 80px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cc-block .penguin {
  width: 14vw;
  max-width: 114px;
  height: auto;
}

.cc-block .squeak {
  font-size: 30px;
  margin: 30px 0;
  color: var(--color-white);
}

.cc-block .business {
  color: var(--color-white-light);
  text-align: center;
}

.cc-block .business .desc1 {
  font-size: 16px;
  font-weight: bold;
  max-width: 892px;
}

.cc-block .business .p {
  font-size: 13px;
}

.cc-block .business a {
  color: var(--color-white);
  text-decoration: underline;
}
