﻿*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.4;
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background: var(--bg-gradient);
  color: var(--text-primary);
  font-size: var(--fs-md);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: 0.08rem;
}
h2 {
  font-size: var(--fs-lg);
  font-weight: 600;
  letter-spacing: 0.07rem;
}
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-size: var(--fs-md);
  letter-spacing: 0.06rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--text-primary);
}
p,
.answer,
li {
  font-size: var(--fs-md);
  color: var(--text-primary);
}
small,
a,
button {
  font-size: var(--fs-sm);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-md);
}

@media (max-width: 1024px) {
  .container {
    text-align: center;
  }

  footer .container {
    text-align: start;
    flex-direction: column;
  }

  .modal-body {
    width: 160px;
  }
  .modal-title {
    font-size: var(--font-md);
  }
}

@media (max-width: 768px) {
  footer {
    padding-bottom: 70px;
  }
  summary {
    text-align: start;
  }
}

footer {
  background-color: var(--color-dark);
  padding-bottom: var(--spacing-sm);
}

footer .container {
  display: flex;
  gap: var(--spacing-sm);
}
.footer-links {
  width: 100%;
}
.footer-links h3 {
  margin-bottom: var(--spacing-xs);
}
.footer-links ul {
  list-style: none;
  padding: 0 2px;
}
.footer-links a,
.footer-links p,
.footer-links ul {
  font-size: var(--font-sm);
}
.footer-links a {
  text-decoration: none;
  color: var(--color-accent);
}
.footer-links a:hover {
  color: var(--color-primary);
}
.footer-links ul li {
  padding: 2px 0;
}
.copyright {
  padding-block: var(--spacing-sm);
  font-size: var(--font-xs) !important;
  text-align: center;
}

.modal {
  position: relative;
  cursor: pointer;
  align-self: center;
  width: 100%;
  max-width: 160px;
}

.modal-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  font-size: var(--font-md);
  white-space: nowrap;
}

.modal-body {
  position: absolute;
  top: 38px;
  left: -10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  background-color: rgba(10, 10, 10, 0.99);
  width: 180px;
  cursor: pointer;
  padding: var(--spacing-xs);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: 999999;
  border: 1px solid #202020;
}

.modal-body.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.modal-list {
  list-style: none;
  margin: 0;
}

.modal-link {
  display: block;
  padding: var(--spacing-xs);
  font-size: var(--font-xs);
  text-align: start;
  text-decoration: none;
}

.modal-link:hover {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .modal-title {
    font-size: var(--font-sm);
  }
}

.btn {
  cursor: pointer;
  padding: var(--spacing-sm) var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease-in-out;
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  gap: var(--spacing-xs);
}

.primary {
  background-color: var(--color-accent);
  border: 2px solid var(--color-accent);
  color: var(--color-dark);
}
.secondary {
  background-color: var(--color-dark);
}

.ghost,
.secondary {
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.ghost {
  background-color: transparent;
}
.none {
  margin: 0 !important;
  width: auto;
  padding: 0;
  background: none;
  border: none;
  color: var(--color-text);
  box-shadow: none;
}
.none:hover {
  transform: none !important;
  box-shadow: none !important;
}
.ghost:hover {
  background-color: var(--color-accent);
  color: var(--color-dark);
  transform: none !important;
}
.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-xl);
  animation: none;
}
@media (max-width: 1024px) {
  .btn {
    margin: var(--spacing-md) auto;
  }
}
@media (max-width: 768px) {
  .btn {
    max-width: 300px;
  }
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-dark);
  z-index: 99;
  border-top: 2px solid #f0f0f02d;
  padding: 0;
}

.bottom-bar-buttons {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px 8px;
}

.bottom-bar-buttons button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 60px;
  padding: 0;
  gap: 2px;
}
.bottom-bar p {
  font-size: 11px;
  line-height: 1;
}

@media (max-width: 768px) {
  .bottom-bar-buttons {
    max-width: 420px;
  }
}
.about-advantages {
  background-color: var(--color-dark);
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
.about-content a {
  display: block;
  text-align: end;
}
.advantages h2 {
  text-align: center;
  font-size: var(--font-lg);
}
.advantages .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.advantages .btn {
  align-self: center;
}
.advantages h3 {
  text-align: center;
  font-size: var(--font-xxl);
  margin-block: var(--spacing-lg);
}
.text-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
  width: 100%;
  margin: var(--spacing-lg) auto;
  gap: var(--spacing-lg);
  justify-content: center;
}

.header-card {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid #f0f0f017;
}

.text-card {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  padding: 22px;
  background-color: #111111;
  border-radius: var(--radius-md);
  border: 1px solid #f0f0f017;
  width: 100%;
  height: auto;
  justify-content: center;
}
.advantages button {
  color: var(--color-text);
  margin-block: var(--spacing-md);
  border-color: var(--color-text);
}
.advantages button:hover {
  background-color: var(--color-text);
}

.faq h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

/* === Grid Section (video cards) === */
.grid-section {
  overflow: hidden;
}
.grid-section__title {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}
.grid-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-xs);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.responsive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
  width: 100%;
  margin: 0 auto;
  justify-items: center;
  align-items: stretch;
}
.grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.grid__yt-link {
  padding: var(--spacing-sm);
  line-height: 1.1;
}
.grid__yt-link a {
  text-decoration: none;
  transition: color 0.2s;
}
.grid__yt-link a:hover {
  text-decoration: underline;
}

/* === Video Card === */
.video-card {
  display: block;
  position: relative;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: var(--shadow-md);
  width: 320px;
  margin: 0 auto;
  height: 460px;
}
.video-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.video-card__media {
  position: relative;
  width: 100%;
  height: 100%;
}
.video-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.video-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 8px;
  display: flex;
  z-index: 3;
  pointer-events: none;
}
.video-card__badge {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}
.video-card__info {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: var(--spacing-sm) 0;
  width: 100%;
}
.video-card__title {
  color: #fff;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.04rem;
  font-size: var(--fs-sm);
  text-transform: uppercase;
}
.video-card__bonus-btn {
  position: absolute;
  left: 50%;
  bottom: 38%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-video-end {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 0.6rem 1.75rem;
  background: linear-gradient(180deg, #ffea47 15%, #ffb347 100%);
  color: #161616;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-xl);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  font-size: var(--fs-sm);
  text-decoration: none;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.btn-video-end:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .grid-section__header {
    justify-content: center;
    border-bottom: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
  }
  .video-card:hover {
    transform: none;
    box-shadow: var(--shadow-md);
  }

  .header-card {
    padding-bottom: var(--spacing-sm);
  }

  .text-card {
    padding: var(--spacing-lg) var(--spacing-xl) var(--spacing-xl);
    text-align: start;
  }
}

.games {
  background: var(--background-two);
}
.games-content h2 {
  text-align: center;
}
.games-content a:not(.btn) {
  display: block;
  text-align: end;
  transition: 0.2s ease-in-out;
}
.games-content a:not(.btn):hover {
  color: var(--color-accent);
}
img[alt="Roleta ao vivo"] {
  object-position: top;
}
.hero {
  margin: 0 auto;
  height: 85vh;
  max-height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  margin-bottom: var(--spacing-xl);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../media/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(6px) brightness(0.4);
  z-index: 0;
}
.hero-text {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  padding: 0 var(--spacing-lg);
  text-align: center;
}
.hero__title {
  position: relative;
  z-index: 1;
  margin-bottom: var(--spacing-md);
}
.hero__sub {
  position: relative;
  z-index: 1;
}
.hero__scroll-pattern {
  position: absolute;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 50px;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.chevron-pattern {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  pointer-events: none;
  overflow: hidden;
}
.chevron-col {
  position: relative;
  bottom: 0;
  width: 32px;
  height: 100px;
}
.chevron-col .chevron {
  position: absolute;
  bottom: 0;
  animation: chevron-down 1.25s linear infinite;
  opacity: 0;
  filter: drop-shadow(0 0 6px #f8d441cc);
  will-change: transform, opacity;
}
@keyframes chevron-down {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(40px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .chevron-col .chevron {
    animation: none;
    opacity: 0.5;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .chevron-col:nth-child(n + 9) {
    display: none;
  }
  .hero {
    height: auto;
    max-height: none;
    padding: 80px 0 140px;
    margin-bottom: var(--spacing-xxl);
  }
}
@media (max-width: 768px) {
  .chevron-col:nth-child(n + 5) {
    display: none;
  }
  .chevron-col .chevron {
    filter: none;
  }
}
.play-in-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.play-in-text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
  max-width: 700px;
}
.play-in-image {
  position: relative;
  width: 25%;
  aspect-ratio: 2/4;
}
.card-text-play-in {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
.card-text-play-in ol {
  padding: var(--spacing-xs) var(--spacing-md);
}
.card-text-play-in ol li {
  padding: 1px 0;
}
.card-text-play-in ol li a {
  font-size: var(--font-sm);
}
.card-text-play-in button {
  margin: var(--spacing-sm) 0 0;
}
@media (max-width: 1024px) {
  .play-in-content {
    gap: var(--spacing-lg);
    flex-direction: column;
  }
  .card-text-play-in ol {
    text-align: start;
  }
  .card-text-play-in button {
    margin: var(--spacing-sm) auto 0;
  }
  .play-in-image {
    width: 100%;
    max-width: 25vw;
  }
}
.more-promos {
  background-color: var(--color-primary);
  color: var(--color-dark);
}
.more-promos h2 {
  color: var(--color-dark);
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.influencer-image {
  position: relative;
  width: 50vw;
  aspect-ratio: 4/2;
  margin: var(--spacing-xl) auto 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7), 0 2px 8px rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-sm);
  overflow: hidden;
  object-fit: contain;
}
.influencer-image .btn {
  position: absolute;
  z-index: 5;
  max-width: 210px;
  bottom: 20%;
  left: 5%;
  background-color: #080808;
  animation: pulse 1s ease-in infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1.04);
  }
  50% {
    transform: scale(1);
  }
  to {
    transform: scale(1.04);
  }
}
.influencer-image .btn:hover {
  transform: scale(1.02);
}
@media (max-width: 1024px) {
  .influencer-image {
    width: 100%;
    max-width: 540px;
  }
}
@media (max-width: 768px) {
  .influencer-image .btn {
    bottom: 10px;
    left: 10px;
    max-width: 180px;
  }
  .influencer-image {
    max-width: 400px;
  }
}
.responsible {
  background-color: var(--color-text);
  color: var(--color-dark);
}
.container.bonus {
  padding-block: var(--spacing-xs);
}

.bonus-content,
.cassino-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.trustworthiness {
  background-color: var(--color-text);
}
.trustworthiness h2,
.trustworthiness p,
.trustworthiness li,
.bonus-content h2,
.bonus-content p,
.cassino-content h2,
.cassino-content p {
  color: var(--color-dark);
}
#diversity .container {
  padding-block: var(--spacing-sm);
}
.diversity-content,
.interface-content,
.support-content,
.trustworthiness-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
.interface-content .btn,
.support-content .btn,
.trustworthiness-content .btn,
.diversity-content .btn,
.about-content .btn {
  margin-block: var(--spacing-md) !important;
}
.card-game-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--spacing-xl);
  margin: var(--spacing-lg) auto;
}
.card-game,
.card-game-list {
  width: 100%;
  justify-content: center;
}
.card-game {
  max-width: 220px;
  display: flex;
  gap: var(--spacing-sm);
  flex-direction: column;
  text-align: center;
  margin: var(--spacing-md) auto;
}
@media (min-width: 769px) {
  .card-game {
    max-width: 100%;
  }
}
.card-game-image {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--shadow-white);
}
.card-game h3 {
  font-size: var(--font-xs);
  font-weight: 500;
}
.card-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm);
  width: 100%;
}
@media (min-width: 769px) {
  .card-buttons .btn {
    width: fit-content;
  }
}
@media (max-width: 1024px) {
  .card-buttons .btn {
    margin: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .card-game-list {
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  }
  .card-game {
    max-width: 220px;
  }
  .card-buttons {
    flex-direction: column;
    align-self: center;
    padding: 0;
    gap: var(--spacing-md);
  }
  .card-buttons .btn {
    margin: 0;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 400px) {
  .card-buttons .btn {
    max-width: 280px;
  }
}
.faq-content {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
details {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  margin-bottom: var(--spacing-lg);
  text-align: start;
  font-size: var(--fs-sm);
}
summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  cursor: pointer;
  font-weight: bold;
  list-style: none;
}
summary .chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
summary::-webkit-details-marker {
  display: none;
}
summary::marker {
  content: none;
}
.answer {
  padding-top: var(--spacing-sm);
  margin: var(--spacing-xs) var(--spacing-lg) var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: var(--fs-sm);
}
details[open] summary .chevron {
  transform: rotate(180deg);
}
#content-area {
  margin-top: 70px;
  border-radius: 8px;
}
ol,
ul {
  padding: 1rem;
}
ul {
  list-style: none;
}
li {
  text-align: start;
  margin-bottom: 4px;
}
.img-horizontal {
  max-width: 840px;
  margin: 40px auto;
  width: 100%;
  object-fit: contain;
  border-radius: 5px;
}
.register {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 420px;
  height: auto;
  background-color: #eeb70f;
  padding: 1.2rem;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #141414;
  text-decoration: none;
  margin: 1rem auto 2rem;
  text-align: center;
}
.introduction-conteiner {
  border-radius: 20px 20px 0 0;
  margin: 20px 20px 0;
}
.how-to-play-conteiner,
.where-to-play-conteiner,
.winning-tips-conteiner,
.withdrawal-conteiner,
.free-to-play-conteiner,
.trustworthiness-conteiner {
  margin: 0 20px;
}
.introduction-content,
.how-to-play-content,
.where-to-play-content,
.winning-tips-content,
.withdrawal-content,
.free-to-play-content,
.faq-conteiner {
  max-width: 1200px;
  margin: 0 auto;
}
.introduction-content {
  text-align: center;
}
.where-to-play-content {
  margin-top: 2rem;
}
.how-to-play-content iframe {
  width: 90%;
  height: 450px;
  border-radius: 15px;
  display: block;
  margin: 0 auto;
}
.symbol-list {
  line-height: 1.4;
  list-style: disc;
}
.payment-table {
  width: 80%;
  border-collapse: collapse;
  margin-top: 20px;
  color: #ffffff;
  justify-content: space-around;
  align-items: center;
  max-width: 100%;
  overflow-x: auto;
  display: block;
}
.payment-table td,
.payment-table th {
  border: 1px solid #ddd;
  text-align: left;
  color: #fff;
}
.payment-table thead tr {
  background-color: #232323;
  font-weight: 700;
}
.payment-table tbody tr:nth-child(2n),
.payment-table tbody tr:nth-child(odd) {
  background-color: #2a2a2a;
}
.payment-table td,
.payment-table th {
  padding: 10px 15px;
}
.faq {
  display: block;
  margin-right: 20px;
  margin-left: 20px;
  margin-bottom: 20px;
  align-items: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  justify-content: space-around;
}
.faq-conteiner h2 {
  text-align: center;
  align-items: center;
  justify-content: center;
}
details > ul {
  padding-bottom: 1rem;
  margin-bottom: 0;
}
.description-1real {
  font-size: 0.85rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  #content-area {
    margin-top: 50px;
    padding: 30px 15px;
  }
  .register {
    max-width: 280px;
  }
  .introduction-conteiner {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .faq,
  .free-to-play-conteiner,
  .how-to-play-conteiner,
  .introduction-conteiner,
  .trustworthiness-conteiner,
  .winning-tips-conteiner,
  .withdrawal-conteiner {
    margin: 0 auto;
    width: 100%;
    display: block;
  }
  .faq {
    border-radius: 0;
  }
  .introduction-content img {
    width: 90%;
    height: auto;
    display: block;
  }
  .how-to-play-content iframe {
    width: 90%;
    height: 200px;
  }
  .how-to-play-information img {
    display: block;
    width: 95%;
    height: auto;
  }
  .winning-tips-content img {
    width: 70%;
    height: auto;
    display: block;
  }
  .payment-table {
    width: 100%;
    font-size: 1rem;
    overflow-x: auto;
    display: block;
    max-width: 100vw;
  }
  .payment-table td,
  .payment-table th {
    font-size: 0.95rem;
    word-break: break-word;
    padding: 6px 8px;
  }
  .free-to-play-content img {
    width: 95%;
    height: auto;
    display: block;
    padding-top: 15px;
    padding-bottom: 25px;
  }
  .trustworthiness-content img {
    width: 80%;
    height: auto;
    display: block;
  }
}
.responsible-gaming {
  font-size: small;
}
.back-to-home {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  gap: 0.5rem;
  text-decoration: none;
  background-color: transparent;
  padding: 8px 14px;
  border-radius: 12px;
  transition: all 0.3s ease-in;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99;
  box-shadow: none;
}
.back-to-home:hover {
  background-color: #ffffff;
  color: var(--color-secondary);
}
@media (max-width: 768px) {
  .back-home-text {
    display: none;
  }
}
#navbar-secondary {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .bottom-bar {
    display: none;
  }
}
