* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  min-height: 100%;
}

body {
  min-width: 320px;
  color: #14213d;
  font-family: "Montserrat Alternates", sans-serif;
  background: linear-gradient(145deg, #f4f7ff 0%, #e8f9f4 50%, #fff3dc 100%);
}

.container-wrapper {
  height: 100%;
  min-height: 100%;
  padding-bottom: 30px;
  overflow-x: hidden;
}

.container {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 18px 12px 38px;
}

.start {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: min(100%, 430px);
  padding: 22px 20px 26px;
}

.start__badges {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.start__badge {
  padding: 7px 15px;
  border: 3px solid #17151e;
  border-radius: 40px;
  box-shadow: 3px 3px 0 #17151e;
  font-size: 14px;
  font-weight: 800;
}

.start__badge--lime {
  background: #b6f400;
}

.start__badge--cyan {
  background: #2ed2e6;
}

.start__bulb {
  font-size: 92px;
  filter: drop-shadow(5px 7px 0 rgba(23, 21, 30, .25));
}

.start__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.start__title {
  font-size: 46px;
  font-weight: 800;
  text-align: center;
  text-shadow: 3px 3px 0 #fff;
}

.start__highlight {
  padding: 7px 15px;
  border: 3px solid #17151e;
  border-radius: 40px;
  background: #b6f400;
  box-shadow: 3px 3px 0 #17151e;
  font-size: 30px;
  font-weight: 700;
  transform: rotate(-3deg);
}

.start__description {
  max-width: 330px;
  color: #39445c;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.start__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 18px;
  border: 3px solid #17151e;
  border-radius: 24px;
  background: #fff;
  box-shadow: 5px 5px 0 #17151e;
  list-style: none;
}

.start__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 800;
}

.start__feature-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 3px solid #17151e;
  border-radius: 13px;
  background: #ffd23f;
}

.start__btn-wrapper {
  width: 100%;
}

.answer-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease;
}

.answer-button:hover {
  transform: translateY(-3px);
}

.answer-button:focus-visible {
  outline: 3px solid #176b5b;
  outline-offset: 4px;
}

.start__next {
  width: 100%;
  min-height: 66px;
  border: 3px solid #17151e;
  border-radius: 20px;
  background: #ff4d8d;
  box-shadow: 7px 7px 0 #17151e;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.start__note {
  color: #39445c;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.footer {
  display: flex;
  flex-direction: column;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 0 16px;
  color: #39445c;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.footer a {
  color: inherit;
}

@media(max-width:520px) {
  .container {
    padding: 8px 0 30px
  }

  .start {
    padding-inline: 16px
  }

  .start__title {
    font-size: 38px
  }

  .start__highlight {
    font-size: 25px
  }

  .start__badge {
    padding-inline: 10px;
    font-size: 12px
  }
}

@media (max-width: 600px) {
  div#CybotCookiebotDialog {
    position: fixed !important;
    top: auto !important;
    right: 8px !important;
    bottom: 8px !important;
    left: 8px !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    max-height: 75dvh !important;
    margin: 0 !important;
    transform: none !important;
    scale: 1 !important;
    border-radius: 16px !important;
    overflow-y: auto !important;
  }
}