/* ==========================================================================
   Variables
   ========================================================================== */

:root {
  --color-main: #052c88;
  --color-accent: #285cd4;
  --color-accent-light: #1744ae;
  --color-text: #fff;
  --color-text-muted: rgba(255, 255, 255, 0.88);
  --color-text-subtitle: #c1d9ff;
  --color-border: #596f93;
  --color-badge: #e21439;
  --color-highlight: rgba(66, 104, 255, 0.18);
  --color-footer-link: #666;
  --color-black: #000;

  --font-family: "Gilroy", Arial, sans-serif;

  --container-max: 1300px;
  --container-padding: max(16px, calc((100vw - var(--container-max)) / 2));

  --space-title-list: 40px;
  --space-hero-rating: 50px;
  --space-section: 80px;
  --space-comparison-footer: 100px;

  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-table: 15px;

  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.25);
  --shadow-card-sm: 0 10px 15px rgba(0, 0, 0, 0.25);

  --gradient-primary: radial-gradient(ellipse at 75% 0%, #285cd4 0%, #1744ae 50%, #052c88 100%);
  --gradient-secondary: radial-gradient(ellipse at 65% 50%, #dee8ff 0%, #a5bef9 100%);
  --gradient-featured-card: linear-gradient(194.95deg, #010b22 10.01%, #052c88 81.28%);
  --gradient-card: linear-gradient(253.74deg, rgba(5, 44, 136, 0.2) 14.54%, rgba(40, 92, 212, 0.2) 52.51%);
  --gradient-icon: linear-gradient(138.98deg, #285cd4 12.11%, #00174e 106.05%);
  --gradient-advantage: radial-gradient(ellipse 150% 200% at 81% 0%, rgba(255, 255, 255, 0.04) 0%, rgba(119, 119, 119, 0.04) 100%);
  --shadow-advantage: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   Base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 500;
  font-synthesis: none;
  color: var(--color-text);
  background: var(--color-black);
  line-height: 1.1;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
  min-height: 100vh;
  background-color: #010717;
}

.page__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.page__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-width: none;
  will-change: transform;
}

.page > :not(.page__bg) {
  position: relative;
  z-index: 1;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
p {
  margin: 0;
}

h1,
.hero__title {
  font-family: var(--font-family);
  font-weight: 800;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: calc(var(--container-max) + var(--container-padding) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section-title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
}

/* ==========================================================================
   Button
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.btn--primary {
  min-height: 50px;
  padding: 20px 40px;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  color: var(--color-text);
  font-size: 14px;
}

.btn--secondary {
  min-height: 50px;
  padding: 20px 32px;
  border-radius: var(--radius-lg);
  background: var(--gradient-secondary);
  color: var(--color-main);
  font-size: 14px;
}

.btn--link {
  flex-direction: column;
  gap: 6px;
  padding: 20px 32px;
  background: transparent;
  color: var(--color-text);
  font-size: 14px;
}

.btn--link::after {
  content: "";
  display: block;
  width: 109px;
  height: 1px;
  background: url("../assets/images/icons/line-underline.svg") center / contain no-repeat;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: relative;
  z-index: 20;
  width: 100%;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-height: 58px;
  position: relative;
  z-index: 2;
}

.header__nav {
  display: none;
}

.header__menu {
  display: flex;
  gap: 60px;
}

.header__link {
  font-size: 20px;
  line-height: 1;
  transition: opacity 0.2s;
}

.header__link:hover {
  opacity: 0.8;
}

.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.header__burger-line {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 1000px;
  background: var(--color-text);
}

.header__cta {
  display: none;
}

.header__mobile-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: calc(-1 * var(--container-padding));
  right: calc(-1 * var(--container-padding));
  width: auto;
  padding: 24px var(--container-padding);
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: 1;
}

.header__mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.header__mobile-menu .btn--primary {
  width: 100%;
}

.header__mobile-menu[hidden] {
  display: none;
}

.header__mobile-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
}

.header__mobile-list .header__link {
  font-size: 18px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  overflow: visible;
  padding-bottom: 32px;
}

.hero__container {
  position: relative;
  z-index: 4;
  padding-top: 30px;
}

.hero__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__content {
  order: 2;
  margin-top: 24px;
}

.hero__title {
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}

.hero__subtitle {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-subtitle);
  line-height: 1.04;
}

.hero__media {
  order: 1;
  width: min(310px, 100%);
  overflow: hidden;
}

.hero__image {
  display: block;
  width: 139.76%;
  max-width: none;
  height: auto;
  margin-left: -15.01%;
}

.hero__features {
  display: flex;
  gap: 4px;
  width: 100%;
  margin-top: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.hero__features::-webkit-scrollbar {
  display: none;
}

.hero__feature {
  flex: 0 0 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 10px;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-lg);
  background-color: rgba(255, 255, 255, 0.04);
  background-image: var(--gradient-advantage);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow-advantage);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1;
}

.hero__cta {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 24px;
  margin-inline: auto;
}

.hero__scroll {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  opacity: 0.8;
}

.hero__scroll img {
  width: 32px;
  height: 32px;
}

/* ==========================================================================
   Rating / Card
   ========================================================================== */

.rating {
  padding-block: 40px 60px;
}

.rating__title {
  margin-bottom: var(--space-title-list);
}

.rating__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-md);
  background: var(--gradient-card);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow-card);
}

.card--featured {
  background: var(--gradient-featured-card);
  box-shadow: var(--shadow-card-sm);
}

.card__badge {
  position: absolute;
  top: -1px;
  right: -1px;
  z-index: 2;
  padding: 18px 30px;
  border-radius: 0 var(--radius-md) 0 var(--radius-md);
  background: var(--color-badge);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 32px 28px;
}

.card--featured .card__body {
  padding-top: 56px;
}

.card__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 141px;
  height: 34px;
  padding: 12px 23px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 1px 1px 2px rgba(0, 1, 17, 0.16);
}

.card__logo img {
  max-width: 164px;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.card__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.card__name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.card__score {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.card__score img {
  width: 24px;
  height: 24px;
}

.card__offers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.card__offer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.card__offer-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 7.5px;
  background: rgba(255, 255, 255, 0.06);
}

.card__offer-icon img {
  width: 21px;
  height: 21px;
}

.card__offer p {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1;
}

.card__btn {
  width: 100%;
  max-width: 191px;
}

/* ==========================================================================
   Promo
   ========================================================================== */

.promo {
  padding-block: 40px 60px;
}

.promo__title {
  margin-bottom: var(--space-title-list);
}

.promo__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
}

.promo__banner,
.promo__feature {
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-xl);
  background-color: rgba(255, 255, 255, 0.04);
  background-image: var(--gradient-advantage);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: var(--shadow-advantage);
}

.promo__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 24px 10px;
}

.promo__banner-media {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.promo__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: bottom center;
}

.promo__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promo__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 81px;
  padding: 18px 10px;
}

.promo__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: var(--gradient-icon);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.promo__feature-icon img {
  display: block;
  width: 20px;
  height: auto;
}

.promo__feature--odds .promo__feature-icon img {
  width: 20px;
}

.promo__feature--bonus .promo__feature-icon img {
  width: 18px;
}

.promo__feature--payout .promo__feature-icon img {
  width: 19px;
}

.promo__feature--support .promo__feature-icon img {
  width: 17px;
}

.promo__feature-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 100px;
}

/* ==========================================================================
   Comparison
   ========================================================================== */

.comparison {
  padding-block: 40px 80px;
}

.comparison__title {
  margin-bottom: var(--space-title-list);
}

.comparison__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-inline: calc(var(--container-padding) * -1);
  padding-inline: var(--container-padding);
}

.comparison__wrap {
  overflow: hidden;
  border-radius: var(--radius-table);
  min-width: 680px;
}

.comparison__table {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font-size: 14px;
  line-height: 1.1;
  background: transparent;
}

.comparison__cell {
  padding: 15px;
  height: 66px;
  border: 0;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  vertical-align: middle;
  font-weight: 500;
  background-clip: padding-box;
}

.comparison__table tr:first-child > .comparison__cell {
  border-top: 1px solid var(--color-border);
}

.comparison__table tr > .comparison__cell:first-child {
  border-left: 1px solid var(--color-border);
}

.comparison__cell--label {
  width: 28%;
  font-weight: 500;
}

.comparison__cell--highlight {
  background: var(--color-highlight);
}

.comparison__table thead tr:first-child > .comparison__cell:first-child {
  border-top-left-radius: var(--radius-table);
}

.comparison__table thead tr:first-child > .comparison__cell:last-child {
  border-top-right-radius: var(--radius-table);
}

.comparison__table tbody tr:last-child > .comparison__cell:first-child {
  border-bottom-left-radius: var(--radius-table);
}

.comparison__table tbody tr:last-child > .comparison__cell:last-child {
  border-bottom-right-radius: var(--radius-table);
}

.comparison__cell--icon img {
  width: 33px;
  height: 33px;
  margin-inline: auto;
}

.comparison__rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.comparison__rating img {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
}

.comparison__cta {
  display: flex;
  margin: 44px auto 0;
  width: fit-content;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  padding: 50px var(--container-padding);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: var(--container-max);
  margin-inline: auto;
  text-align: center;
}

.footer__cookies {
  width: 100%;
}

.footer__text {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-text);
}

.footer__text--cookies {
  max-width: 659px;
  line-height: 1.3;
}

.footer__link {
  font-size: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-footer-link);
  text-decoration: underline;
  white-space: nowrap;
}

.footer__warning-line {
  display: block;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.footer__warning {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer__age {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.footer__seal {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  object-fit: cover;
}

/* ==========================================================================
   Main
   ========================================================================== */

.page__main {
  position: relative;
}

/* ==========================================================================
   Desktop (768px+)
   ========================================================================== */

@media (min-width: 768px) {
  .section-title {
    font-size: 40px;
  }

  .btn--primary {
    min-height: 58px;
    padding: 22px 32px;
    border-radius: var(--radius-lg);
    font-size: 20px;
  }

  .btn--secondary {
    min-height: 58px;
    font-size: 20px;
  }

  .btn--link {
    font-size: 20px;
  }

  .btn--link::after {
    width: 156px;
  }

  .header__inner {
    justify-content: space-between;
  }

  .header__nav {
    display: block;
  }

  .header__burger {
    display: none;
  }

  .header__cta {
    display: inline-flex;
    width: 270px;
    min-width: 270px;
  }

  .header__mobile-menu {
    display: none !important;
  }

  .hero {
    padding-bottom: 0;
  }

  .hero__container {
    padding-top: 60px;
  }

  .hero__main {
    display: grid;
    grid-template-columns: minmax(0, 621px) minmax(320px, 1fr);
    align-items: end;
    gap: 0;
    min-height: 487px;
    text-align: left;
  }

  .hero__content {
    order: unset;
    margin-top: 0;
    padding-bottom: 0;
    max-width: 621px;
  }

  .hero__title {
    font-size: 70px;
    max-width: 621px;
    margin-inline: 0;
  }

  .hero__subtitle {
    margin-top: 40px;
    margin-bottom: 70px;
    font-size: 32px;
    max-width: 529px;
    margin-inline: 0;
  }

  .hero__media {
    order: unset;
    justify-self: end;
    align-self: start;
    width: min(558px, 100%);
    max-height: 551px;
    margin-top: 1px;
    overflow: hidden;
  }

  .hero__image {
    width: 139.76%;
    max-width: none;
    margin-left: -15.01%;
  }

  .hero__features {
    position: relative;
    z-index: 2;
    margin-top: 0;
    gap: 20px;
    overflow: visible;
    width: 100%;
    max-width: 1080px;
  }

  .hero__feature {
    flex: 1 1 0;
    min-width: 0;
    max-width: 200px;
    min-height: 121px;
    padding: 40px 10px;
    border-radius: var(--radius-lg);
    font-size: 20px;
  }

  .hero__cta {
    display: none;
  }

  .hero__scroll {
    margin-top: 40px;
  }

  .hero__scroll img {
    width: 50px;
    height: 50px;
  }

  .rating {
    padding-top: var(--space-hero-rating);
    padding-bottom: var(--space-section);
  }

  .rating__title {
    margin-bottom: var(--space-title-list);
  }

  .rating__list {
    gap: 16px;
  }

  .card {
    min-height: 250px;
    border-radius: var(--radius-lg);
  }

  .card__body {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 56px;
    padding: 40px;
    min-height: 250px;
    box-sizing: border-box;
  }

  .card--featured .card__body {
    padding-top: 40px;
  }

  .card__brand {
    display: contents;
  }

  .card__logo {
    width: 244px;
    height: 59px;
    padding: 20px 40px;
    box-sizing: border-box;
    flex-shrink: 0;
  }

  .card__logo img {
    max-width: 164px;
    max-height: 33px;
  }

  .card--featured .card__logo img {
    max-height: 19px;
  }

  .card__meta {
    width: 96px;
    flex-shrink: 0;
    align-items: flex-start;
    gap: 12px;
  }

  .card__name {
    font-size: 20px;
  }

  .card__score {
    font-size: 20px;
  }

  .card__offers {
    flex: 1 1 auto;
    min-width: 0;
    gap: 24px;
  }

  .card__offer {
    gap: 24px;
    align-items: flex-start;
  }

  .card__offer-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    box-sizing: border-box;
  }

  .card__offer-icon img {
    width: 28px;
    height: 28px;
  }

  .card__offer p {
    flex: 1 1 auto;
    max-width: 321px;
    font-size: 20px;
    line-height: 1;
  }

  .card__btn {
    flex-shrink: 0;
    width: 270px;
    min-width: 270px;
    max-width: none;
    min-height: 58px;
    padding: 22px 32px;
    border-radius: var(--radius-lg);
    font-size: 20px;
    line-height: 1;
  }

  .btn--link.card__btn {
    gap: 8px;
  }

  .btn--link.card__btn::after {
    width: 156px;
  }

  .card__badge {
    font-size: 15px;
    border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
  }

  .promo {
    padding-block: var(--space-section);
  }

  .comparison {
    padding-top: var(--space-section);
    padding-bottom: var(--space-comparison-footer);
  }

  .comparison__title {
    margin-bottom: var(--space-title-list);
  }

  .comparison__cta {
    width: 270px;
    min-width: 270px;
    margin-top: 44px;
  }

  .promo__content {
    gap: 16px;
  }

  .promo__banner {
    height: 500px;
    padding: 40px 10px;
  }

  .promo__banner-media {
    max-width: 1279px;
    height: 480px;
  }

  .promo__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
  }

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

  .promo__feature {
    width: auto;
    max-width: none;
    min-height: 200px;
    gap: 20px;
    padding: 40px 10px;
  }

  .promo__feature-icon {
    width: 73px;
    height: 73px;
    border-radius: 36.5px;
  }

  .promo__feature--odds .promo__feature-icon img {
    width: 38px;
  }

  .promo__feature--bonus .promo__feature-icon img {
    width: 35px;
  }

  .promo__feature--payout .promo__feature-icon img {
    width: 37px;
  }

  .promo__feature--support .promo__feature-icon img {
    width: 33px;
  }

  .promo__feature-text {
    font-size: 24px;
    max-width: 170px;
  }

  .comparison__scroll {
    margin-inline: 0;
    padding-inline: 0;
    overflow-x: visible;
  }

  .comparison__wrap {
    min-width: 0;
  }

  .comparison__table {
    width: 100%;
    min-width: 0;
    font-size: 22px;
  }

  .comparison__cell {
    height: 101px;
    padding: 15px;
  }

  .comparison__cell--label {
    width: 17%;
  }
}

@media (min-width: 1024px) {
  .promo__features {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer {
    min-height: 234px;
    padding-block: 87px;
    padding-inline: var(--container-padding);
  }

  .footer__inner {
    flex-direction: row;
    align-items: center;
    gap: 107px;
    width: 100%;
    text-align: left;
  }

  .footer__cookies {
    flex: 0 0 659px;
    max-width: 659px;
  }

  .footer__text {
    font-size: 16px;
  }

  .footer__link {
    margin-left: 0.35em;
  }

  .footer__legal {
    flex: 0 0 534px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 534px;
  }

  .footer__warning {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
  }

  .footer__text--warning {
    padding-top: 4px;
  }

  .footer__age {
    width: 50px;
    height: 50px;
  }

  .footer__seal {
    width: 60px;
    height: 60px;
  }
}
