* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  min-height: 100%;
}

body {
  min-width: 320px;
  color: #eef6ff;
  font-family: "Montserrat Alternates", sans-serif;
  background: radial-gradient(circle at 20% 10%, #173b70 0, transparent 35%), linear-gradient(155deg, #071322 0%, #0b2340 55%, #071322 100%);
}

.container-wrapper {
  height: 100%;
  padding-bottom: 30px;
  overflow-x: hidden;
}

.container {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0 auto;
  overflow-y: scroll;
  padding: 18px 12px 38px;
}

.container::-webkit-scrollbar {
  display: none;
}

.start {
  display: flex;
  flex-direction: column;
  width: min(100%, 430px);
  min-height: 680px;
  padding: 16px 18px 26px;
}

.start__header {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 60px;
  padding-bottom: 14px;
}

.start__logo {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(90deg, #c8ff00, #22d3ee);
  box-shadow: 0 0 22px rgba(200, 255, 0, .45);
  font-size: 23px;
}

.start__name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .04em;
}

.start__status {
  color: #c8ff00;
  font-size: 12px;
  font-weight: 700;
}

.start__divider {
  height: 1px;
  background: #2a2a38;
}

.start__chat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-top: auto;
  padding: 18px 0 8px;
}

.start__message {
  width: min(290px, 90%);
  padding: 13px 16px;
  border: 1px solid #2a2a38;
  border-radius: 20px 20px 20px 6px;
  background: #1b1b26;
  color: #f2f2f7;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.start__message--accent {
  width: min(330px, 100%);
  border-color: rgba(200, 255, 0, .35);
  background: linear-gradient(90deg, #2e3a0e, #2a1b3d);
  color: #c8ff00;
  font-size: 29px;
  font-weight: 800;
}

.start__typing {
  padding: 7px 18px;
  border-radius: 18px;
  background: #1b1b26;
  color: #8a8aa0;
  letter-spacing: .25em;
}

.start__stats {
  display: flex;
  gap: 8px;
  padding: 14px 0 6px;
  list-style: none;
}

.start__stats li {
  padding: 7px 10px;
  border: 1px solid #2a2a38;
  border-radius: 30px;
  background: #1b1b26;
  color: #b7b7c8;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.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 #61d9ff;
  outline-offset: 4px;
}

.start__next {
  width: 100%;
  min-height: 64px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(90deg, #c8ff00, #9eff3d);
  box-shadow: 0 6px 0 #7fa800, 0 0 30px rgba(200, 255, 0, .4);
  color: #0a0a0f;
  font-size: 24px;
  font-weight: 800;
}

.footer {
  display: flex;
  flex-direction: column;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 0 16px;
  color: #afc6dd;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.footer a {
  color: inherit;
}

@media(max-width:520px) {
  .container {
    padding: 0
  }

  .start__stats {
    overflow-x: auto
  }

  .start__message--accent {
    font-size: 25px
  }
}

@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;
  }
}