:root {
  --green: #54af3a;
  --green-dark: #409b25;
  --red: #d80708;
  --red-dark: #9f0000;
  --blue: #03115c;
  --body: #eeeeee;
  --text: #171717;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--body);
  font-size: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.age-strip {
  height: 49px;
  background: #f8f8f8;
  color: #c8c8c8;
  font-size: 12px;
  font-weight: 600;
}

.age-inner {
  height: 100%;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.age-icons {
  display: flex;
  gap: 16px;
  opacity: .28;
  align-items: center;
}

.age-icons img {
  width: 38px;
  height: 28px;
  object-fit: contain;
}

.age-strip p {
  margin: 0;
  flex: 1;
}

.quick-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-links a:not(.social) {
  height: 30px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  border-radius: 18px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.quick-links .social img {
  width: 30px;
  height: 30px;
}

.ticker {
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
}

.desktop-head {
  height: 104px;
  background: #fff;
  border-bottom: 1px solid #e3e3e3;
}

.brand-row {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
}

.logo img {
  width: 226px;
}

.auth,
.mobile-auth {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  height: 31px;
  min-width: 78px;
  padding: 0 17px;
  border-radius: 20px;
  border: 1.5px solid var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.btn.ghost {
  color: #262626;
  background: #fff;
}

.btn.solid {
  color: #fff;
  background: var(--green);
}

.main-nav {
  height: 38px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 25px;
  overflow: hidden;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 900;
}

.main-nav a {
  position: relative;
  line-height: 28px;
}

.main-nav .with-badge span {
  position: absolute;
  left: 50%;
  top: -13px;
  transform: translateX(-50%);
  padding: 1px 6px;
  border-radius: 7px;
  background: #f13737;
  color: #fff;
  font-size: 12px;
  line-height: 12px;
}

.mobile-head {
  display: none;
}

.hero-slider {
  position: relative;
  min-height: 742px;
  background: #e8e8e8;
  overflow: hidden;
}

.hero-frame {
  display: block;
  width: 100%;
  background: #d7e1d4;
}

.hero-frame picture {
  display: block;
}

.hero-frame img {
  width: 100%;
  height: auto;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 13px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}

.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bfbfbf;
}

.hero-dots .active {
  background: var(--green);
}

.promos {
  padding: 36px 0 46px;
  background: #f4f4f4;
}

.container {
  width: min(1535px, calc(100% - 40px));
  margin: 0 auto;
}

.section-title {
  margin: 0 0 28px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  color: var(--green);
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.section-title span,
.boost-shell h2 span {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #f23838;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.bonus-grid {
  width: min(1535px, 100%);
  margin: 0 auto 76px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.bonus-card {
  height: 254px;
  border-radius: 9px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 315px;
  align-items: stretch;
  color: #fff;
}

.bonus-card.red {
  background: linear-gradient(90deg, #960000 0%, #b20000 55%, #d40808 100%);
}

.bonus-card.blue {
  background: linear-gradient(90deg, #000729 0%, #03105c 60%, #04106f 100%);
}

.bonus-copy {
  padding: 43px 0 36px 42px;
  position: relative;
  z-index: 1;
}

.bonus-card h3 {
  width: fit-content;
  max-width: 340px;
  margin: 0 0 26px;
  padding: 11px 18px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  font-size: 17px;
  line-height: 1.16;
  font-weight: 900;
  text-transform: uppercase;
}

.bonus-card.blue h3 {
  width: 340px;
  text-align: center;
  background: var(--green);
}

.bonus-card p {
  max-width: 395px;
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 27px;
  border-radius: 22px;
  background: #ed180f;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
}

.blue .pill {
  background: var(--green);
}

.bonus-card img {
  align-self: end;
  justify-self: end;
  max-height: 254px;
  object-fit: contain;
}

.home-promos {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 45px;
  align-items: start;
}

.promo-column {
  min-width: 0;
  text-align: center;
}

.tile-row {
  display: flex;
  justify-content: center;
  gap: 35px;
}

.promo-tile {
  width: 245px;
  color: #111;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.tile-art {
  width: 245px;
  height: 206px;
  margin: 0 auto 17px;
  object-fit: contain;
}

.generated {
  position: relative;
  display: grid;
  place-items: end center;
  padding: 0 0 24px;
  overflow: hidden;
  border-radius: 50% 50% 3px 3px;
  border: 8px solid #c40c16;
  background:
    radial-gradient(circle at 50% 35%, rgba(65, 255, 55, .95), rgba(0, 70, 13, .95) 50%, #071806 70%),
    linear-gradient(145deg, #003d17, #111);
  color: #fff;
  text-shadow: 0 3px 0 #000;
}

.generated::before {
  content: "";
  position: absolute;
  width: 88px;
  height: 150px;
  left: 34px;
  bottom: 28px;
  background: linear-gradient(#f6d14b, #4eb33c);
  clip-path: polygon(45% 0, 65% 22%, 82% 50%, 72% 100%, 26% 100%, 18% 48%, 30% 22%);
  filter: drop-shadow(0 6px 8px #000);
}

.generated strong,
.generated span {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  background: #090909;
  font-size: 29px;
  line-height: .9;
  padding: 8px 4px 0;
}

.generated span {
  font-size: 18px;
  padding-bottom: 0;
}

.generated.art-power strong {
  font-size: 28px;
}

.view-all {
  margin-top: 31px;
  display: inline-flex;
  color: var(--green);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.divider {
  height: 210px;
  display: flex;
  justify-content: center;
  padding-top: 36px;
}

.divider img {
  height: 135px;
}

.betboost {
  padding: 0 0 14px;
  background: #f4f4f4;
}

.boost-shell {
  position: relative;
  width: min(1535px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 18px 22px;
  border-radius: 18px;
  background: #ddd;
}

.boost-shell h2 {
  margin: 0 0 14px;
  display: flex;
  gap: 7px;
  align-items: center;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 900;
}

.boost-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(230px, 1fr));
  gap: 12px;
  overflow: hidden;
}

.boost-card {
  min-height: 184px;
  padding: 13px 12px 11px;
  border-radius: 4px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #ececec;
  font-size: 12px;
}

.boost-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
}

.boost-head b {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.boost-head span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12px;
}

.boost-head strong {
  white-space: nowrap;
  font-size: 12px;
}

.boost-card small {
  display: block;
  margin: 4px 0 20px;
  color: #777;
}

.boost-card p {
  margin: 0 0 24px;
  min-height: 32px;
  font-weight: 800;
}

.odd {
  height: 45px;
  padding-top: 4px;
  text-align: center;
  border-radius: 3px;
  background: #f0f0f0;
}

.odd em {
  display: block;
  color: #777;
  font-size: 12px;
  font-style: normal;
}

.odd del {
  margin-right: 14px;
  color: #999;
}

.odd b {
  font-size: 19px;
}

.boost-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -10%);
  width: 52px;
  height: 58px;
  border: 0;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: 46px;
  line-height: 1;
}

.longread {
  padding: 64px 0 72px;
  background: #f1f1f1;
}

.longread-inner {
  width: min(1420px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
}

.longread h1,
.longread h2 {
  margin: 0;
  color: #737373;
  font-weight: 800;
  letter-spacing: 0;
}

.longread h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: 27px;
  line-height: 1.22;
}

.longread h2 {
  margin-top: 34px;
  margin-bottom: 13px;
  font-size: 23px;
  line-height: 1.25;
}

.longread p {
  margin: 0 0 15px;
  color: #777;
  font-size: 15px;
  line-height: 1.58;
  font-weight: 600;
}

.longread p:last-child {
  margin-bottom: 0;
}

.footer {
  background: #fff;
  border-top: 2px solid var(--green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 1.1fr 1.1fr 1.1fr 1.3fr 1.1fr;
  min-height: 342px;
}

.footer-grid section {
  padding: 32px 35px;
  border-right: 1px solid #eee;
}

.footer h3 {
  margin: 0 0 18px;
  color: var(--green);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.footer-grid a {
  display: block;
  margin: 0 0 13px;
  font-size: 12px;
  font-weight: 600;
}

.icon-links {
  padding-top: 53px !important;
}

.icon-links a {
  font-weight: 900;
  text-transform: uppercase;
}

.payments {
  min-height: 136px;
  padding: 24px 0;
  display: grid;
  place-items: center;
  background: #f3f3f3;
  text-align: center;
}

.payments h3 {
  color: #222;
  margin-bottom: 12px;
}

.payments div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.payments img {
  max-width: 105px;
  max-height: 42px;
}

.payments span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 130px;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
}

.payments span img {
  width: 36px;
}

.legal {
  min-height: 58px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ededed;
  color: #545454;
  font-size: 12px;
  font-weight: 600;
}

.legal img {
  width: 30px;
  height: 30px;
}

.legal a {
  font-weight: 900;
  text-decoration: underline;
}

.chat {
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 20;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
}

.chat::before,
.chat::after {
  content: "";
  position: absolute;
}

.chat::before {
  left: 17px;
  top: 17px;
  width: 25px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 12px;
}

.chat::after {
  left: 24px;
  top: 35px;
  width: 10px;
  height: 8px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: skew(-25deg);
}

.mobile-tabs {
  display: none;
}

@media (max-width: 900px) {
  body {
    padding-bottom: 72px;
    background: #f1f1f1;
  }

  .age-strip,
  .desktop-head,
  .footer,
  .betboost,
  .chat {
    display: none;
  }

  .ticker {
    min-height: 74px;
    height: auto;
    padding: 11px 32px 13px;
    text-align: center;
    font-size: 17px;
    line-height: 1.3;
  }

  .mobile-head {
    height: 73px;
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 0 17px;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
  }

  .hamburger {
    width: 31px;
    height: 28px;
    border: 0;
    padding: 0;
    display: grid;
    align-content: space-between;
    background: transparent;
  }

  .hamburger span {
    display: block;
    height: 2px;
    background: #111;
  }

  .mobile-logo img {
    width: 162px;
  }

  .mobile-auth {
    gap: 7px;
  }

  .btn {
    min-width: auto;
    height: 35px;
    padding: 0 13px;
    font-size: 12px;
  }

  .hero-slider {
    min-height: 241px;
    background: #e8e8e8;
  }

  .hero-frame {
    height: 241px;
    overflow: hidden;
  }

  .hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero-dots {
    bottom: 8px;
    gap: 7px;
  }

  .hero-dots span {
    width: 10px;
    height: 10px;
  }

  .promos {
    padding: 28px 0 10px;
  }

  .container {
    width: calc(100% - 34px);
  }

  .section-title {
    margin-bottom: 23px;
    gap: 8px;
    font-size: 25px;
    line-height: 1.12;
  }

  .section-title span {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }

  .bonus-grid {
    display: flex;
    overflow: hidden;
    margin-bottom: 68px;
  }

  .bonus-card {
    position: relative;
    flex: 0 0 100%;
    height: 260px;
    min-height: 260px;
    grid-template-columns: 1fr 170px;
    border-radius: 13px;
  }

  .bonus-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48%;
    height: 4px;
    background: var(--green);
  }

  .bonus-copy {
    padding: 24px 0 34px 18px;
  }

  .bonus-card h3 {
    max-width: 258px;
    margin-bottom: 15px;
    padding: 9px 12px;
    font-size: 18px;
    line-height: 1.24;
    text-align: center;
  }

  .bonus-card p {
    max-width: 250px;
    margin-bottom: 11px;
    font-size: 14px;
    line-height: 1.34;
  }

  .pill {
    height: 39px;
    padding: 0 24px;
    font-size: 15px;
  }

  .bonus-card img {
    position: absolute;
    right: 11px;
    bottom: 35px;
    width: 170px;
    max-height: 160px;
  }

  .bonus-card.blue {
    display: none;
  }

  .home-promos {
    display: block;
  }

  .promo-column {
    margin-bottom: 54px;
  }

  .promo-column.casino,
  .divider {
    display: none;
  }

  .tile-row {
    justify-content: flex-start;
    gap: 20px;
    overflow: hidden;
  }

  .promo-tile {
    width: 290px;
    flex: 0 0 290px;
  }

  .tile-art {
    width: 290px;
    height: 245px;
    margin-bottom: 14px;
  }

  .view-all {
    display: none;
  }

  .longread {
    padding: 38px 0 46px;
  }

  .longread-inner {
    width: calc(100% - 34px);
    padding: 0;
  }

  .longread h1 {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.16;
  }

  .longread h2 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.23;
  }

  .longread p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.58;
  }

  .mobile-tabs {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    height: 69px;
    padding: 6px 4px 5px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background: var(--green);
    color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .12);
  }

  .mobile-tabs a {
    position: relative;
    display: grid;
    place-items: center;
    gap: 2px;
    font-size: 12px;
    font-weight: 900;
  }

  .mobile-tabs i {
    height: 28px;
    font-size: 27px;
    font-style: normal;
    line-height: 1;
  }

  .mobile-tabs b {
    position: absolute;
    top: 0;
    right: 2px;
    padding: 1px 5px;
    border-radius: 6px;
    background: #ef2d2d;
    font-size: 12px;
    line-height: 10px;
  }
}

@media (max-width: 430px) {
  .mobile-head {
    gap: 8px;
    padding-inline: 16px 12px;
  }

  .mobile-logo img {
    width: 150px;
  }

  .btn {
    padding: 0 10px;
    font-size: 12px;
  }

  .hero-slider,
  .hero-frame {
    height: 241px;
    min-height: 241px;
  }
}
