@font-face {
  font-family: 'TotlBody';
  src: url('./assets/fonts/roboto-italy-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TotlBody';
  src: url('./assets/fonts/roboto-italy-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TotlHeadline';
  src: url('./assets/fonts/bahnschrift-italy-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --totl-bg: #10153d;
  --totl-surface: #161d4e;
  --totl-surface-soft: #1f2865;
  --totl-ink: #eef1ff;
  --totl-muted: #bfc7ff;
  --totl-accent: #4f6fff;
  --totl-accent-2: #2ecf76;
  --totl-hot-start: #ff8a1c;
  --totl-hot-end: #733dff;
  --totl-border: #324098;
  --totl-shadow: 0 12px 30px rgba(4, 8, 35, 0.34);
  --totl-radius: 20px;
  --totl-gap: 10px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'TotlBody', Arial, sans-serif;
  color: var(--totl-ink);
  background: radial-gradient(circle at 18% -25%, #2533a9 0%, #10153d 42%, #0d1235 100%);
  line-height: 1.58;
  min-width: 220px;
  text-rendering: optimizeLegibility;
}

body.totl-scroll-locked {
  position: fixed;
  inset: 0;
  width: 100%;
  overflow: hidden;
}

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

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

.totl-shell {
  width: min(1200px, calc(100% - 36px));
  margin-inline: auto;
}

h1,
h2,
h3 {
  font-family: 'TotlHeadline', 'TotlBody', sans-serif;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.16;
}

h2 {
  font-size: clamp(1.45rem, 1.05rem + 1vw, 2rem);
  margin-block: 18px;
}

h3 {
  font-size: clamp(1.05rem, 0.92rem + 0.36vw, 1.3rem);
}

p {
  margin: 0;
}

.totl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
  white-space: nowrap;
}

.totl-btn:hover,
.totl-btn:focus-visible {
  transform: translateY(-1px);
}

.totl-btn--ghost {
  padding: 10px 20px;
  color: #ffd58b;
  border-color: #ff9a28;
  background: rgba(16, 21, 61, 0.8);
}

.totl-btn--hot {
  padding: 10px 20px;
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(92deg, var(--totl-hot-start), var(--totl-hot-end));
}

.totl-btn--hero {
  min-width: clamp(190px, 32vw, 338px);
  padding: 14px 30px;
  border: 1px solid rgba(255, 219, 118, 0.72);
  color: #fff9e5;
  background: linear-gradient(94deg, #ff9a2d 0%, #ff6e5e 42%, #8f54ff 100%);
  box-shadow: 0 12px 28px rgba(7, 10, 34, 0.52), 0 0 0 rgba(255, 176, 70, 0);
  text-shadow: 0 1px 10px rgba(24, 10, 35, 0.4);
  animation: totlHeroPulse 2.8s ease-in-out infinite;
}

@keyframes totlHeroPulse {
  0%,
  60%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(120, 165, 255, 0);
  }

  14% {
    transform: scale(1.03);
    box-shadow: 0 0 0 8px rgba(255, 166, 72, 0.26), 0 0 26px rgba(255, 119, 102, 0.34), 0 12px 30px rgba(7, 10, 34, 0.52);
  }

  32% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 166, 72, 0.04), 0 0 12px rgba(255, 119, 102, 0.2), 0 10px 24px rgba(7, 10, 34, 0.46);
  }
}

.totl-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #111744;
  box-shadow: 0 8px 26px rgba(6, 9, 31, 0.35);
}

.totl-header__row-one {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.totl-logo-link img {
  width: clamp(118px, 14vw, 170px);
  height: auto;
}

.totl-header__actions {
  display: flex;
  gap: 10px;
}

.totl-header__row-two {
  border-top: 1px solid rgba(80, 98, 194, 0.34);
  border-bottom: 1px solid rgba(80, 98, 194, 0.4);
  background: #1a2158;
}

.totl-nav-desktop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
}

.totl-nav-desktop a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #dce3ff;
  font-weight: 700;
  position: relative;
}

.totl-nav-desktop a::before {
  content: '';
  width: 14px;
  height: 14px;
  display: inline-block;
  flex: 0 0 auto;
  background-color: #ffcf6d;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.totl-nav-desktop a:nth-child(1)::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6zm4 2H5v3h2V8zm0 5H5v3h2v-3zm4-5H9v3h2V8zm0 5H9v3h2v-3zm4-5h-2v3h2V8zm4 0h-2v3h2V8zm-4 5h-2v3h2v-3zm4 0h-2v3h2v-3z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6zm4 2H5v3h2V8zm0 5H5v3h2v-3zm4-5H9v3h2V8zm0 5H9v3h2v-3zm4-5h-2v3h2V8zm4 0h-2v3h2V8zm-4 5h-2v3h2v-3zm4 0h-2v3h2v-3z'/%3E%3C/svg%3E");
}

.totl-nav-desktop a:nth-child(2)::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 19h16v2H4zm2-2V9h3v8H6zm5 0V5h3v12h-3zm5 0v-6h3v6h-3z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 19h16v2H4zm2-2V9h3v8H6zm5 0V5h3v12h-3zm5 0v-6h3v6h-3z'/%3E%3C/svg%3E");
}

.totl-nav-desktop a:nth-child(3)::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 9h16v11H4V9zm0-3h16v3H4V6zm7 3h2v11h-2V9zm-1-3c-2 0-3-1-3-2.3C7 2.5 7.8 2 8.6 2 10 2 10.8 3.2 12 6c1.2-2.8 2-4 3.4-4 .8 0 1.6.5 1.6 1.7C17 5 16 6 14 6h-4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 9h16v11H4V9zm0-3h16v3H4V6zm7 3h2v11h-2V9zm-1-3c-2 0-3-1-3-2.3C7 2.5 7.8 2 8.6 2 10 2 10.8 3.2 12 6c1.2-2.8 2-4 3.4-4 .8 0 1.6.5 1.6 1.7C17 5 16 6 14 6h-4z'/%3E%3C/svg%3E");
}

.totl-nav-desktop a:nth-child(4)::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6zm2 1v2h14V7H5zm0 6h6v2H5v-2zm9 0h5v2h-5v-2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6zm2 1v2h14V7H5zm0 6h6v2H5v-2zm9 0h5v2h-5v-2z'/%3E%3C/svg%3E");
}

.totl-nav-desktop a:nth-child(5)::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-8l-5 4v-4H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zm8.2 10.6a1.2 1.2 0 1 0 0-2.4 1.2 1.2 0 0 0 0 2.4zm1.8-4h-2v-.4c0-1 .4-1.6 1.2-2.1.7-.4 1-.7 1-1.3 0-.7-.5-1.1-1.4-1.1-.8 0-1.5.3-2.1.8l-1-1.3c.9-.8 2-1.2 3.3-1.2 2.1 0 3.5 1.2 3.5 2.9 0 1.3-.7 2.1-1.8 2.7-.5.3-.7.6-.7 1z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-8l-5 4v-4H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zm8.2 10.6a1.2 1.2 0 1 0 0-2.4 1.2 1.2 0 0 0 0 2.4zm1.8-4h-2v-.4c0-1 .4-1.6 1.2-2.1.7-.4 1-.7 1-1.3 0-.7-.5-1.1-1.4-1.1-.8 0-1.5.3-2.1.8l-1-1.3c.9-.8 2-1.2 3.3-1.2 2.1 0 3.5 1.2 3.5 2.9 0 1.3-.7 2.1-1.8 2.7-.5.3-.7.6-.7 1z'/%3E%3C/svg%3E");
}

.totl-nav-desktop a:nth-child(6)::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 2h8a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 3v12h8V5H8zm4 13.5a1.3 1.3 0 1 0 0 2.6 1.3 1.3 0 0 0 0-2.6z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 2h8a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 3v12h8V5H8zm4 13.5a1.3 1.3 0 1 0 0 2.6 1.3 1.3 0 0 0 0-2.6z'/%3E%3C/svg%3E");
}

.totl-nav-desktop a:nth-child(7)::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 5h16v5H4V5zm0 7h7v7H4v-7zm9 0h7v7h-7v-7zM7 7h2v1H7V7zm4 0h2v1h-2V7zm4 0h2v1h-2V7z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 5h16v5H4V5zm0 7h7v7H4v-7zm9 0h7v7h-7v-7zM7 7h2v1H7V7zm4 0h2v1h-2V7zm4 0h2v1h-2V7z'/%3E%3C/svg%3E");
}

.totl-nav-desktop a:nth-child(8)::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2l8 3.6V11c0 4.7-3 8.6-8 10-5-1.4-8-5.3-8-10V5.6L12 2zm-1.1 11.6L8.7 11.4 7.3 12.8l3.6 3.6 6-6-1.4-1.4-4.6 4.6z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2l8 3.6V11c0 4.7-3 8.6-8 10-5-1.4-8-5.3-8-10V5.6L12 2zm-1.1 11.6L8.7 11.4 7.3 12.8l3.6 3.6 6-6-1.4-1.4-4.6 4.6z'/%3E%3C/svg%3E");
}

.totl-nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #3b6cff, #64d2ff);
  transition: transform 0.2s ease;
}

.totl-nav-desktop a:hover::after,
.totl-nav-desktop a:focus-visible::after {
  transform: scaleX(1);
}

.totl-burger {
  width: 44px;
  height: 44px;
  border: 1px solid #3b4ca3;
  border-radius: 14px;
  background: #1e2968;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.totl-burger span {
  width: 20px;
  height: 2px;
  background: #d3dbff;
  border-radius: 8px;
}

.totl-header__mobile {
  display: none;
}

.totl-drawer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.totl-drawer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 24, 0.62);
}

.totl-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: min(340px, 90vw);
  background: linear-gradient(180deg, #1b255f, #121741);
  box-shadow: 16px 0 40px rgba(0, 0, 0, 0.42);
  transform: translateX(-104%);
  transition: transform 0.28s ease;
  padding: 18px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.totl-drawer__brand {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
}

.totl-drawer__brand img {
  width: min(150px, 72%);
  height: auto;
}

.totl-drawer__nav {
  display: grid;
  gap: 11px;
  padding: 6px 4px 0;
}

.totl-drawer__nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 13px;
  border-radius: 13px;
  border: 1px solid rgba(113, 134, 238, 0.42);
  background: linear-gradient(180deg, rgba(46, 62, 145, 0.52), rgba(30, 40, 103, 0.82));
  color: #eef3ff;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 16px rgba(8, 12, 37, 0.34);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.totl-drawer__nav a::after {
  content: none;
}

.totl-drawer__nav a:hover,
.totl-drawer__nav a:focus-visible {
  transform: translateX(2px);
  border-color: rgba(154, 175, 255, 0.72);
  background: linear-gradient(180deg, rgba(66, 86, 188, 0.68), rgba(37, 51, 126, 0.9));
  box-shadow: 0 12px 22px rgba(8, 13, 39, 0.42);
}

.totl-drawer__microcopy {
  margin: 4px 8px 0;
  font-size: 0.73rem;
  line-height: 1.42;
  text-align: center;
  color: rgba(218, 226, 255, 0.76);
}

body.totl-menu-open {
  overflow: hidden;
}

body.totl-menu-open .totl-drawer {
  pointer-events: auto;
  opacity: 1;
}

body.totl-menu-open .totl-drawer__panel {
  transform: translateX(0);
}

.totl-hero {
  position: relative;
  min-height: clamp(370px, 54vw, 560px);
  overflow: clip;
  background: linear-gradient(180deg, #141b50 0%, #121845 100%);
}

.totl-hero__media {
  position: absolute;
  inset: 0;
}

.totl-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.03) contrast(1.04);
}

.totl-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 18, 56, 0.22) 15%, rgb(0 0 0 / 80%) 72%, rgb(0 0 0) 100%);
  pointer-events: none;
}

.totl-hero__content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 90px;
  z-index: 2;
  width: min(780px, calc(100% - 36px));
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  border-radius: 22px;
  border: 1px solid rgba(177, 194, 255, 0.26);
  background: linear-gradient(180deg, rgba(7, 11, 29, 0.52), rgba(7, 11, 29, 0.34) 42%, rgba(7, 11, 29, 0.62) 100%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.totl-hero__pretitle {
  color: #ffef55;
  font-family: 'TotlHeadline', 'TotlBody', sans-serif;
  font-size: clamp(0.86rem, 0.68rem + 0.4vw, 1.08rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.75);
}

.totl-hero h1 {
  font-size: clamp(1.12rem, 0.96rem + 0.5vw, 1.48rem);
  max-width: 100%;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35), 0 10px 24px rgba(0, 0, 0, 0.7);
  display: grid;
  gap: 4px;
}

.totl-hero__title-key {
  display: block;
  color: #edf3ff;
  text-transform: uppercase;
  font-size: clamp(1rem, 0.86rem + 0.5vw, 1.35rem);
  letter-spacing: 0.05em;
}

.totl-hero__title-offer {
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  font-size: clamp(1.78rem, 1.25rem + 1.3vw, 2.85rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.4), 0 14px 28px rgba(0, 0, 0, 0.76);
}

.totl-hero__lead {
  color: #edf2ff;
  max-width: 66ch;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.72);
}

.totl-hero__payments {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 3;
  width: min(1100px, calc(100% - 36px));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(12, 18, 57, 0.92);
  border-radius: 16px 16px 0 0;
}

.totl-hero__payments img {
  width: clamp(58px, 6vw, 92px);
  height: 24px;
  object-fit: contain;
  filter: brightness(0.98);
}

main {
  display: block;
  padding: 0 0 24px;
}

body.totl-has-sticky-padding main {
  padding-bottom: 108px;
}

.totl-section {
  padding: 28px 0;
  background: linear-gradient(180deg, rgba(20, 27, 77, 0.95), rgba(16, 22, 62, 0.95));
  border-top: 1px solid rgba(60, 79, 176, 0.28);
  border-bottom: 1px solid rgba(60, 79, 176, 0.18);
}

.totl-section + .totl-section {
  margin-top: var(--totl-gap);
}

.totl-section--slots {
  background: linear-gradient(180deg, rgba(17, 24, 73, 0.96), rgba(14, 20, 59, 0.97));
}

.totl-section--scenic {
  position: relative;
  background: none;
  overflow: clip;
}

.totl-section--scenic::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('./assets/images/showcase/blue-lines-atmosphere.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  filter: saturate(1.02);
}

.totl-section--scenic::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 20, 61, 0), rgba(16, 20, 61, 0.04) 34%, rgba(13, 17, 52, 0.92));
}

.totl-section--scenic > .totl-shell {
  position: relative;
  z-index: 2;
}

.totl-section p + p {
  margin-top: 14px;
}

.totl-slots-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.totl-slot {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--totl-shadow);
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(84, 107, 228, 0.4);
}

.totl-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease, filter 0.24s ease;
}

.totl-slot__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px;
  text-align: center;
  background: linear-gradient(180deg, rgba(2, 4, 16, 0) 18%, rgba(3, 5, 18, 0.8) 66%, rgba(3, 5, 18, 0.94) 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.totl-slot__name {
  margin: 0;
  color: #f8f9ff;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

.totl-slot__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(154px, 100%);
  gap: 8px;
}

.totl-slot__action {
  width: 100%;
  border: 1px solid rgba(130, 160, 255, 0.85);
  border-radius: 10px;
  padding: 8px 8px;
  font-weight: 700;
  font-size: 0.83rem;
  color: #f8fbff;
  background: rgba(25, 36, 109, 0.9);
  cursor: pointer;
}

.totl-slot__play {
  background: linear-gradient(90deg, #24cb77, #29b0a4);
  border-color: transparent;
  color: #071230;
}

.totl-slot:hover img,
.totl-slot:focus-within img,
.totl-slot.is-open img {
  transform: scale(1.06);
  filter: brightness(0.62);
}

.totl-slot:hover .totl-slot__overlay,
.totl-slot:focus-within .totl-slot__overlay,
.totl-slot.is-open .totl-slot__overlay {
  opacity: 1;
}

.totl-table-wrap {
  margin-top: 14px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--totl-shadow);
}

.totl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
  background: linear-gradient(180deg, rgba(30, 22, 56, 0.94), rgba(13, 22, 56, 0.96));
}

.totl-table th,
.totl-table td {
  padding: 11px 14px;
  border-bottom: 1px solid rgba(116, 144, 255, 0.26);
  text-align: left;
  vertical-align: top;
}

.totl-table tr:nth-child(odd) {
  background: rgba(42, 30, 75, 0.33);
}

.totl-table tr:nth-child(even) {
  background: rgba(18, 30, 75, 0.3);
}

.totl-table tr:last-child th,
.totl-table tr:last-child td {
  border-bottom: 0;
}

.totl-table th {
  width: 34%;
  color: #ffe1b9;
  font-weight: 700;
  background: rgba(246, 153, 63, 0.13);
}

.totl-table td {
  color: #f4f6ff;
}

.totl-table a {
  color: #9edfff;
  text-decoration: underline;
}

.totl-icon-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.totl-icon-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.totl-icon-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.totl-icon-card {
  background: linear-gradient(145deg, rgba(58, 30, 67, 0.9), rgba(20, 53, 73, 0.92));
  border: 1px solid rgba(250, 170, 90, 0.3);
  border-radius: 16px;
  box-shadow: var(--totl-shadow);
  padding: 14px;
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-areas: 'icon title' 'desc desc';
  gap: 8px 10px;
}

.totl-icon-card__head {
  display: contents;
}

.totl-icon-card svg {
  grid-area: icon;
  width: 28px;
  height: 28px;
  stroke: #ffcb86;
  fill: none;
  stroke-width: 1.6;
  align-self: center;
}

.totl-icon-card h3 {
  grid-area: title;
  font-size: 1.03rem;
}

.totl-icon-card p {
  grid-area: desc;
  color: #f1e6ff;
  font-size: 0.95rem;
}

.totl-provider-grid {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.totl-provider-grid li {
  background: rgba(22, 31, 88, 0.93);
  border: 1px solid rgba(66, 85, 184, 0.45);
  border-radius: 13px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.totl-provider-grid img {
  max-height: 34px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.08) brightness(1.18);
}

.totl-list {
  margin: 14px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.totl-list li {
  padding-left: 26px;
  position: relative;
  color: #dde5ff;
}

.totl-list li::before {
  content: '';
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: linear-gradient(180deg, #53d7ff, #3f66ff);
  box-shadow: 0 0 10px rgba(96, 161, 255, 0.45);
}

.totl-auth-flow {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}

.totl-auth-flow figure {
  margin: 0;
  background: rgba(18, 25, 71, 0.95);
  border-radius: 16px;
  border: 1px solid rgba(72, 90, 192, 0.46);
  box-shadow: var(--totl-shadow);
  padding: 14px;
  text-align: center;
}

.totl-auth-flow img {
  width: min(100%, 760px);
  margin-inline: auto;
  border-radius: 12px;
  height: auto;
}

.totl-auth-flow figcaption {
  margin-top: 14px;
  color: #d6dfff;
  text-align: left;
}

.totl-payment-tiles {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.totl-payment-tiles img {
  width: 100%;
  height: 44px;
  object-fit: contain;
  background: rgba(20, 28, 79, 0.94);
  border: 1px solid rgba(62, 82, 190, 0.42);
  border-radius: 12px;
  padding: 8px;
}

.totl-transactions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.totl-transactions__panel {
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(32, 24, 63, 0.95), rgba(12, 24, 58, 0.96));
  border: 1px solid rgba(250, 170, 90, 0.26);
  box-shadow: var(--totl-shadow);
  padding: 14px;
}

.totl-transactions__panel h3 {
  margin-bottom: 10px;
}

.totl-transactions table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.totl-transactions th,
.totl-transactions td {
  border-bottom: 1px solid rgba(117, 141, 241, 0.3);
  padding: 8px 7px;
  text-align: left;
}

.totl-transactions tr:last-child th,
.totl-transactions tr:last-child td {
  border-bottom: 0;
}

.totl-faq {
  display: grid;
  gap: 10px;
}

.totl-faq__item {
  border-radius: 14px;
  background: rgba(18, 25, 72, 0.95);
  border: 1px solid rgba(68, 87, 187, 0.46);
  box-shadow: var(--totl-shadow);
  overflow: clip;
}

.totl-faq__trigger {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: #edf1ff;
  font-weight: 700;
  padding: 14px 18px;
  cursor: pointer;
  position: relative;
}

.totl-faq__trigger::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #89b2ff;
}

.totl-faq__trigger[aria-expanded='true']::after {
  content: '-';
}

.totl-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.26s ease;
}

.totl-faq__answer p {
  padding: 0 18px 16px;
  color: #d9e2ff;
}

.totl-mini-hero {
  position: relative;
  padding: 66px 0 46px;
  overflow: clip;
}

.totl-mini-hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(13, 19, 58, 0.68), rgba(12, 17, 50, 0.9)), url('./assets/images/showcase/blue-lines-atmosphere.webp');
  background-size: cover;
  background-position: center;
}

.totl-mini-hero .totl-shell {
  position: relative;
  z-index: 1;
  text-align: center;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.totl-mini-hero__label {
  margin: 0;
  color: #f4d668;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.totl-legal-content h2 {
  margin-top: 14px;
}

.totl-legal-content p + p,
.totl-legal-content ul + p,
.totl-legal-content p + ul {
  margin-top: 12px;
}

.totl-footer {
  padding: 24px 0 24px;
  background: #0c1132;
  border-top: 1px solid rgba(66, 84, 188, 0.46);
}

.totl-footer__logo {
  display: inline-block;
  margin-bottom: 12px;
}

.totl-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.totl-footer__links a {
  color: #cdd7ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.totl-footer__disclaimer {
  color: #c4ceff;
  max-width: 980px;
  margin-bottom: 14px;
}

.totl-footer__partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin: 12px 0 14px;
}

.totl-footer__partners img {
  width: 94px;
  height: 32px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.88) opacity(0.88);
}

.totl-footer__copy {
  color: #95a4e5;
  font-size: 0.9rem;
  margin: 0;
}

.totl-mobile-offer {
  display: none;
}

.totl-mobile-offer__cta {
  border-radius: 999px;
  padding: 10px 18px;
  background: linear-gradient(90deg, #f4892a, #6f44ff);
  color: #ffffff;
  font-weight: 700;
  animation: totlStickyPulse 3s ease-in-out infinite;
}

@keyframes totlStickyPulse {
  0%,
  58%,
  100% {
    box-shadow: 0 0 0 rgba(127, 97, 255, 0);
  }

  16% {
    box-shadow: 0 0 0 7px rgba(119, 95, 255, 0.22), 0 0 22px rgba(109, 89, 255, 0.34);
  }

  34% {
    box-shadow: 0 0 0 0 rgba(119, 95, 255, 0);
  }
}

.totl-player {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 90;
}

.totl-player.is-open {
  display: block;
}

.totl-player__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
}

.totl-player__shell {
  position: relative;
  z-index: 2;
  height: 100%;
  width: min(1220px, 100%);
  margin: 0 auto;
  background: #000000;
  display: flex;
  flex-direction: column;
}

.totl-player__actionbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #0d163f;
  border-bottom: 1px solid #2e468e;
}

.totl-player__back {
  border: 1px solid #7ba0ff;
  background: rgba(14, 26, 83, 0.92);
  color: #f3f6ff;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}

.totl-player__real {
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 700;
  background: linear-gradient(90deg, #27cb75, #2ca9a7);
  color: #071230;
}

.totl-player__frame-wrap {
  flex: 1;
  min-height: 0;
  background: #000;
}

.totl-player__frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

section[id] {
  scroll-margin-top: 140px;
}

@media (max-width: 980px) {
  .totl-slots-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .totl-provider-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .totl-icon-grid,
  .totl-icon-grid--four,
  .totl-icon-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .totl-payment-tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .totl-shell {
    width: min(100%, calc(100% - 30px));
  }

  .totl-header__desktop {
    display: none;
  }

  .totl-header__mobile {
    display: block;
  }

  .totl-mobile-line {
    width: 100%;
  }

  .totl-mobile-line--top {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #131a4a;
  }

  .totl-burger--mobile {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .totl-mobile-line--top .totl-logo-link {
    display: flex;
    justify-content: center;
    padding: 4px 0;
  }

  .totl-mobile-line--top .totl-logo-link img {
    width: clamp(96px, 34vw, 126px);
  }

  .totl-mobile-spacer {
    width: 40px;
    height: 40px;
  }

  .totl-mobile-line--cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 14px;
    background: #171f56;
  }

  .totl-mobile-line--cta .totl-btn {
    width: 100%;
    padding-inline: 8px;
  }

  .totl-mobile-line--tabs {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 14px 7px;
    background: #222a67;
    border-top: 1px solid rgba(87, 107, 211, 0.4);
    margin-bottom: 0;
    white-space: nowrap;
    scrollbar-width: thin;
  }

  .totl-mobile-line--tabs a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: #dbe5ff;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    flex: 0 0 auto;
  }

  .totl-mobile-line--tabs a:hover,
  .totl-mobile-line--tabs a:focus-visible {
    border-color: #79b2ff;
  }

  .totl-drawer__panel {
    padding: 18px 16px 24px;
  }

  .totl-drawer__brand img {
    width: min(132px, 62%);
  }

  .totl-drawer__nav {
    gap: 10px;
    padding: 8px 4px 0;
  }

  .totl-drawer__nav a {
    gap: 11px;
    padding: 12px 13px;
  }

  .totl-mobile-tab__icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    background-color: #ffcf6d;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    flex: 0 0 auto;
  }

  .totl-drawer__nav .totl-mobile-tab__icon {
    width: 18px;
    height: 18px;
    background-color: #ffd98a;
    filter: drop-shadow(0 0 2px rgba(255, 210, 121, 0.38));
  }

  .totl-mobile-tab--slots .totl-mobile-tab__icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6zm4 2H5v3h2V8zm0 5H5v3h2v-3zm4-5H9v3h2V8zm0 5H9v3h2v-3zm4-5h-2v3h2V8zm4 0h-2v3h2V8zm-4 5h-2v3h2v-3zm4 0h-2v3h2v-3z'/%3E%3C/svg%3E");
  }

  .totl-mobile-tab--panoramica .totl-mobile-tab__icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 19h16v2H4zm2-2V9h3v8H6zm5 0V5h3v12h-3zm5 0v-6h3v6h-3z'/%3E%3C/svg%3E");
  }

  .totl-mobile-tab--bonus .totl-mobile-tab__icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 9h16v11H4V9zm0-3h16v3H4V6zm7 3h2v11h-2V9zm-1-3c-2 0-3-1-3-2.3C7 2.5 7.8 2 8.6 2 10 2 10.8 3.2 12 6c1.2-2.8 2-4 3.4-4 .8 0 1.6.5 1.6 1.7C17 5 16 6 14 6h-4z'/%3E%3C/svg%3E");
  }

  .totl-mobile-tab--pagamenti .totl-mobile-tab__icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6zm2 1v2h14V7H5zm0 6h6v2H5v-2zm9 0h5v2h-5v-2z'/%3E%3C/svg%3E");
  }

  .totl-mobile-tab--faq .totl-mobile-tab__icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-8l-5 4v-4H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zm8.2 10.6a1.2 1.2 0 1 0 0-2.4 1.2 1.2 0 0 0 0 2.4zm1.8-4h-2v-.4c0-1 .4-1.6 1.2-2.1.7-.4 1-.7 1-1.3 0-.7-.5-1.1-1.4-1.1-.8 0-1.5.3-2.1.8l-1-1.3c.9-.8 2-1.2 3.3-1.2 2.1 0 3.5 1.2 3.5 2.9 0 1.3-.7 2.1-1.8 2.7-.5.3-.7.6-.7 1z'/%3E%3C/svg%3E");
  }

  .totl-mobile-tab--mobile .totl-mobile-tab__icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 2h8a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 3v12h8V5H8zm4 13.5a1.3 1.3 0 1 0 0 2.6 1.3 1.3 0 0 0 0-2.6z'/%3E%3C/svg%3E");
  }

  .totl-mobile-tab--provider .totl-mobile-tab__icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 5h16v5H4V5zm0 7h7v7H4v-7zm9 0h7v7h-7v-7zM7 7h2v1H7V7zm4 0h2v1h-2V7zm4 0h2v1h-2V7z'/%3E%3C/svg%3E");
  }

  .totl-mobile-tab--sicurezza .totl-mobile-tab__icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2l8 3.6V11c0 4.7-3 8.6-8 10-5-1.4-8-5.3-8-10V5.6L12 2zm-1.1 11.6L8.7 11.4 7.3 12.8l3.6 3.6 6-6-1.4-1.4-4.6 4.6z'/%3E%3C/svg%3E");
  }

  .totl-mobile-tab--registrazione .totl-mobile-tab__icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8zm-7 8c0-3.1 3.1-5.5 7-5.5s7 2.4 7 5.5V22H5v-2zm14-12h2V6h2V4h-2V2h-2v2h-2v2h2v2z'/%3E%3C/svg%3E");
  }

  .totl-mobile-tab__text {
    line-height: 1;
  }

  .totl-hero {
    min-height: 410px;
    margin-top: 0;
  }

  .totl-hero__content {
    width: min(100%, calc(100% - 24px));
    padding: 13px 12px 14px;
    bottom: 72px;
    gap: 8px;
    border-radius: 16px;
  }

  .totl-hero h1 {
    max-width: 100%;
    font-size: 1rem;
    gap: 2px;
  }

  .totl-hero__title-key {
    font-size: clamp(0.84rem, 3.1vw, 1rem);
    letter-spacing: 0.045em;
  }

  .totl-hero__title-offer {
    font-size: clamp(1.42rem, 6.4vw, 2rem);
  }

  .totl-hero__lead {
    max-width: 100%;
    font-size: 0.87rem;
  }

  .totl-btn--hero {
    min-width: min(250px, 78vw);
  }

  .totl-hero__payments {
    width: calc(100% - 20px);
    gap: 7px;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .totl-hero__payments img {
    width: clamp(42px, 12vw, 68px);
    height: 20px;
  }

  section[id] {
    scroll-margin-top: 190px;
  }

  .totl-section {
    padding: 24px 0;
  }

  .totl-slots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .totl-slot__overlay {
    padding: 10px;
  }

  .totl-table {
    font-size: 0.85rem;
    table-layout: fixed;
  }

  .totl-table th,
  .totl-table td {
    padding: 9px 8px;
    word-break: break-word;
  }

  .totl-table th {
    width: 43%;
  }

  .totl-provider-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .totl-payment-tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .totl-transactions {
    grid-template-columns: 1fr;
  }

  .totl-icon-grid,
  .totl-icon-grid--four,
  .totl-icon-grid--six {
    grid-template-columns: 1fr;
  }

  .totl-footer {
    padding-bottom: 20px;
  }

  .totl-footer__links {
    gap: 12px;
  }

  .totl-mobile-offer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    background: #121a4c;
    border-top: 1px solid #344598;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.34s ease, opacity 0.34s ease;
  }

  .totl-mobile-offer.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .totl-mobile-offer__text {
    min-width: 0;
    display: grid;
    gap: 2px;
  }

  .totl-mobile-offer__text span {
    color: #a8b9ff;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .totl-mobile-offer__text strong {
    font-size: clamp(0.78rem, 3.6vw, 0.95rem);
    line-height: 1.2;
  }

  .totl-mobile-offer__cta {
    font-size: clamp(0.75rem, 3.2vw, 0.9rem);
    padding: 9px 12px;
    flex: 0 0 auto;
  }

  .totl-player__shell {
    width: 100%;
  }

  .totl-player__actionbar {
    order: 2;
    border-top: 1px solid #2e468e;
    border-bottom: 0;
    padding: 10px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .totl-player__frame-wrap {
    order: 1;
    min-height: calc(100dvh - 86px - env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 320px) {
  .totl-shell {
    width: calc(100% - 28px);
  }

  .totl-mobile-line--tabs {
    gap: 14px;
  }

  .totl-mobile-line--tabs a {
    font-size: 0.68rem;
  }

  .totl-mobile-offer {
    gap: 8px;
    padding-inline: 10px;
  }

  .totl-mobile-offer__cta {
    padding: 8px 10px;
    font-size: 0.74rem;
  }
}
