:root {
  --white2: #f2f2f2;
  --white: #ffffff;
  --red-dark: #8c0821;
  --orange-dark: #ef712e;
  --red: #d91424;
  --orange: #e37d30;
  --black: #141a26;
  --orange-light: #f2b05c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

/* Tools */

.spacer {
  height: 30px;
}

/* Global styles */

/* Header */
.header {
  background: #323232;
  z-index: 2000; 
  display: flex;
  justify-content: center;
  max-width: 100vw;
}
.header__content {
  max-width: 70rem;
  display: flex;
  width: 100%;
  align-items: center;
  padding: 5px 40px;
  box-sizing: border-box;

  height: 70px;
}

.header__logo {
  display: flex;
  flex: 0.1;
  align-items: center;
  justify-content: center;
}

.header__logo img {
  height: 70px;
}

.header__nav {
  display: flex;
  flex: 0.8;
  justify-content: center;
  align-items: center;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: bold;
}

.header__nav a {
  color: white;
  text-decoration: none;
  padding: 0px 45px;
  font-size: 18px;
  letter-spacing: 0.5px;
}


.header__actions {
  display: flex;
  flex: 0.1;
  justify-content: flex-end;
}

.lang-selector {
  position: relative;
}

.lang-selector__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid var(--orange-dark);;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.lang-selector__toggle img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.lang-selector__label {
  color: #fff;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.lang-selector__menu {
  position: absolute;
  right: 0;
  top: 100%;
  background: #1f1f1f;
  border: none;
  min-width: 180px;
  list-style: none;
  margin: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 10;
}

/* Desktop (mouse/trackpad): open on hover/focus */
@media (hover: hover) and (pointer: fine) {
  .lang-selector:hover .lang-selector__toggle,
  .lang-selector:focus-within .lang-selector__toggle {
    background: var(--orange-dark);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  }

  .lang-selector:hover .lang-selector__menu,
  .lang-selector:focus-within .lang-selector__menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.lang-selector.lang-selector--open .lang-selector__toggle {
  background: var(--orange-dark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.lang-selector.lang-selector--open .lang-selector__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


.lang-selector__menu li {
  list-style: none;
}



.lang-selector__menu a {
  display: block;
  padding: 12px 16px;
  color: #f4f4f4;
  text-decoration: none;
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  letter-spacing: 0.2px;
}



.lang-selector__menu-current a {

  background: var(--orange-dark);

  color: #ffffff;
  font-weight: 600;

}

.lang-selector__menu a:hover,
.lang-selector__menu a:focus, 
.lang-selector__menu-current {
  background: var(--orange-dark)
 
}

.lang-selector__menu a:hover,
.lang-selector__menu a:focus {
  background: rgba(227, 125, 48, 0.2);
  color: #ffffff;
}


/* Hero section */
.hero {
  width: 100%;
  min-height: 600px;
  background: #0f1725;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.hero-casino {
  width: 100%;
  height: 420px;
  background: #0f1725;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.termsclass {
  height: 420px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
}

.hero__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.hero__logo img {
  width: 380px;
  max-width: 90%;
}

.hero__content {
  text-align: center;
  font-size: clamp(2.5rem, 6vw, 3rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__content--headline {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35em;
  flex-wrap: wrap;

  line-height: 1.05;
  max-width: 28ch;
  margin: 0 auto 10px;
}

.hero__content--headline .section__title {
  font-size: 1em;
  margin: 0;
  white-space: nowrap;
  line-height: 1;
}

.hero__content--headline .text--accent {
  letter-spacing: 0.5px;
}

.hero__content--headline .section__title:last-child {
  margin-right: 0;
}

.hero__title {
  color: white;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.hero__text {
  color: white;
  font-family: 'Rubik', sans-serif;
  font-size: 0.5em;
  line-height: 1.4;
  max-width: 500px;
}

/* Section styles */
.section {
  width: 100%;
  padding: 100px 40px;
  box-sizing: border-box;
}

.section--dark {
  background: #141a26;
  min-height: 300px;
  display: flex;
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section__title {
  color: white;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 0px 10px;
}

.section__description {
  color: white;
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  line-height: 1.3;
  max-width: 520px;
  margin: 0 auto;
  padding: 10px;
}

.section__description-poker {
  max-width: 615px;
}

.section__subtitle {
  color: white;
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin: 20px auto 30px;
}

.section__disclaimer {
  color: white;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
  margin: 30px auto;
  max-width: 425px;
}

.text--accent {
  color: #ef712e;
}

/* Form styles */
.form__input-group {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.form__input {
  padding: 0.8rem 2rem;
  border-radius: 7px;
  border: 1px solid #e37d30;
  background: transparent;
  color: white;
  font-size: 16px;
  min-width: 300px;
}

.form__input::placeholder {
  color: #999;
}

/* Button styles */
.btn {
  padding: 5px 20px;
  border-radius: 25px;
  border: none;
  font-weight: bold;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 20px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

.btn--primary {
  background: #ef712e;
  color: white;
}

.btn--primary:hover {
  background: #d86528;
}

/* Features section */
.features {
  padding: 30px 40px;
  background: #f5f5f5;
}

.features__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  gap: 20px 50px;
  margin: 0;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.features__item {
  display: flex;
  align-items: center;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #2d2d2d;
}

.features__item > div {
  display: flex;
  justify-content: center;

  align-items: center;
}

.features__icon {
  width: 55px;
  height: 55px;
  margin-right: 15px;
  flex-shrink: 0;
}

.features__text {
  line-height: 1.4;
  text-align: left;
}

/* Spirit of the game section */

.section--darktwo {
  background: #141a26;
  min-height: 700px;
}

.section--darktwo-casino {
  background: #141a26;
  min-height: 300px;
  display: flex;
}

.spirit-container {
  display: flex;
  justify-content: center;
  padding: 90px 90px 70px 90px;
  gap: 150px;
  max-width: 100%;
}

.ignite-container {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 25px;
  font-family: 'Saira Condensed', sans-serif;
  color: white;
  text-transform: uppercase;
  text-align: center;
  align-items: center;
  padding: 10px;
  line-height: 1;
}

.ignite-container h2 {
  height: fit-content;
}

.card {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-img {
  border: 1px solid #e37d30;
  border-radius: 20px;
  width: 300px;
}

.card-headtext {
  font-family: 'Saira Condensed', sans-serif;
  display: flex;
  justify-content: center;
  color: #ef712e;
  font-size: 40px;
  margin-top: 20px;
}

.card-text {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  text-align: center;
}

.legend-text {
  display: flex;
  justify-content: center;
  color: white;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 18px;
  padding-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

/* faq section */

.faq {
  background: #ebebeb;
  padding: 40px 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-container {
  padding-bottom: 20px;
  max-width: 750px;
  width: 100%;
}

.faq-title-txt {
  font-family: 'Saira Condensed', sans-serif;
}

.faq-tabs-container {
  display: flex;
  justify-content: center;
  max-width: 750px;
  width: 100%;
}

.tab-containers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.tabs {
  background: #f9f9f9;
  border-radius: 5px;
  padding: 15px 20px;
  font-family: 'Rubik', sans-serif;
  cursor: pointer;
}

.tab-title {
  font-weight: 500;
  font-size: 15px;
}

.tab-arrow {
  float: right;
  transition: transform 0.3s ease;
}

.tab-content {
  font-size: 14px;
  margin-top: 10px;
  display: none;
}

.tab-active {
  display: block;
}

.tabs:has(.tab-active) .tab-arrow {
  transform: rotate(90deg);
}

/* footer sectiom */

.footer {
  background: #2f2f2f;
  display: flex;
  border-bottom: 1px solid #6f6f6f;
  justify-content: center;
  padding: 5px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 1rem;
  height: auto;
  gap: 1rem;
  width: 100%;
  max-width: 810px;
}

.footer_logo img {
  min-width: clamp(170px, 4vw, 180px);
  max-width: clamp(170px, 4vw, 180px);
}

.footer_nav {
  display: flex;
  justify-content: end;
  width: 100%;
  gap: 70px;
  margin: 0 20px 0 0;
}

.footer_nav a {
  color: white;
  text-decoration: none;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.footer-disclaimers {
  background: #2f2f2f;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 0px 30px 0px;
}

/* disclaimer section */

.disclaimer-icons {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  gap: 50px;
  padding-top: 10px;
}

.disclaimericon {
  display: flex;
  align-items: center;
  color: white;
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  font-weight: bold;
  gap: 10px;
}

.disclaimer-icons li {
  list-style: none;
}

.disclaimer-icons ul {
  padding: 0;
  margin: 0;
}

.disclaimericon img {
  width: 72px;
  height: auto;
  display: block;
}

.disclaimertext {
  max-width: 700px;
  text-align: center;
  color: white;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  padding-top: 20px;
}

/* Mobile responsive styles */
@media (max-width: 900px) {
  body {
    max-width: 100vw;
  }

  section,
  .header,
  .footer,
  .footer-disclaimers {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hero__content--headline {
    max-width: 18ch;
    gap: 0.25em;
  }

  .header__content {
    flex-direction: column;
    padding: 0;
    gap: 15px;
    height: auto
  }

 
  .header__actions {
    position: absolute;
    flex: 0;
    margin-left: auto;        
    display: flex;
    align-items: flex-end;
    right: 2vw;
    top: 2vh;
    justify-content: flex-end;
  }


  .header__logo {
    width: 100%;
    position: relative;
    justify-content: start;
    top: 0;
    flex: 0.2;
    padding: 0px 10px 0;
  }

  .header__nav {
    width: 100%;
    flex: 2;
    justify-content: space-between;
    padding: 15px 20px;
    border-top: 1px solid #6f6f6f;
  }

  .header__nav a {
    padding: 0px 5px;
    font-size: 14px;
  }

  .hero {
    min-height: 500px;
    padding: 60px 20px;
  }
  .hero-casino {
    height: 385px;
  }

  .hero__logo img {
    width: 280px;
  }

  .section {
    padding: 60px 20px;
  }

  .section__title {
    font-size: 36px;
  }

  .section__description,
  .section__subtitle {
    font-size: 16px;
    max-width: 300px;
  }

  .form__input {
    min-width: 0;
    width: 90%;
    max-width: 350px;
    padding: 0.7rem 1.5rem;
  }

  .btn {
    padding: 5px 30px;
    font-size: 20px;
  }

  .section--darktwo {
    min-height: auto;
  }

  .features {
    background: #141a26;
    padding: 30px 20px;
  }

  .features__list {
    flex-direction: column;
    gap: 0;
    max-width: 100%;
    padding: 0 10px;
  }

  .features__item {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .features__item > div {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .features__item > div > span {
    width: 12rem;
    max-width: 12rem;
  }

  .features__item:last-child {
    border-bottom: none;
  }

  .features__icon {
    max-width: 60px;
    width: 60px;
    height: 60px;

    margin-right: 20px;
  }

  .spirit-container {
    flex-direction: column;
    gap: 60px;
    padding: 40px 20px;
  }

  .card-img {
    width: 100%;
    max-width: 280px;
  }

  .card-headtext {
    font-size: 32px;
  }

  .legend-text {
    font-size: 16px;
    padding: 20px 30px 50px 30px;
  }

  .legend-text h2 {
    font-weight: 700;
    line-height: 1.3;
  }

  .faq {
    padding-bottom: 65px;
  }

  .faq-container {
    padding-bottom: 30px;
  }

  .faq-title-txt h2 {
    font-size: 32px;
  }

  .tab-title {
    font-size: 16px;
  }

  .footer-container {
    flex-direction: column;
    height: auto;
    padding: 20px 0px 0px 0px;
    gap: 20px;
  }

  .footer_logo {
    position: static;
    left: auto;
    transform: none;
  }

  .footer_logo img {
    width: 110px;
  }

  .footer_nav {
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10vw;
    border-top: 1px solid #6f6f6f;
    left: 0;
    margin: 0;
  }

  .footer_nav a {
    font-size: 14px;
    white-space: nowrap;
  }

  .footer-disclaimers {
    min-height: auto;
    padding: 30px 20px 40px;
    gap: 20px;
  }

  .disclaimer-icons {
    flex-direction: row;
    gap: 20vw;
    padding-top: 10px;
    align-items: center;
  }

  .disclaimericon {
    font-size: 16px;
  }

  .disclaimertext {
    padding-top: 10px;
    text-align: center;
    font-size: 14px;
    padding-bottom: 20px;
    line-height: 1.4;
  }

  .disclaimericon img {
    width: 50px;
  }
}

.sec-dec-terms {
  max-width: 645px;
}
/* ========= CONTACT PAGE ========= */
/* ---------- HERO ---------- */

.contact-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(5rem, 8vh, 7.5rem) 20px clamp(5rem, 9vh, 8rem);
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.contact-hero-content {
  text-align: center;
  z-index: 2;
}

.contact-title {
  color: #ffffff;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 44px + 1.5vw, 4.375rem);
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 10px;
}

.contact-subtitle {
  color: #ffffff;
  font-family: 'Rubik', sans-serif;
  font-size: 1.5em;
}

/* ---------- MAIN SECTION UNDER HERO ---------- */

.contact-main {
  background: #141a26;
  padding: 70px 20px 80px;
  color: #ffffff;
  font-family: 'Rubik', sans-serif;
}

.contact-main-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.contact-intro p {
  margin: 0 auto;
  min-width: clamp(326px, calc(100px + 30vw), 633px);
  max-width: clamp(326px, calc(100px + 30vw), 633px);
  /* font-size: clamp(16px, calc(1vw + 10px), 25px); */
  font-size: 18px;
  line-height: 1.7;
}

.contact-form-placeholder {
  margin: 36px auto 16px;
  max-width: 480px;
}

.contact-form-comingsoon {
  padding: 18px 24px;
  border-radius: 16px;
  border: 2px solid var(--orange);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
}

.contact-response-note {
  margin: 10px auto 40px;
  max-width: 480px;
  font-size: 0.875rem;
  font-style: italic;
}

.contact-details p {
  margin: 0 auto 18px;
  min-width: clamp(326px, calc(100px + 40vw), 746px);
  max-width: clamp(326px, calc(100px + 40vw), 746px);
  /* font-size: clamp(16px, calc(1vw + 10px), 25px); */
  font-size: 18px;
}

/* ---------- FAQ (CONTACT VERSION) ---------- */

.faq--contact {
  padding-top: clamp(3.5rem, 5vh, 4.5rem);
  padding-bottom: clamp(4rem, 6vh, 5.5rem);
  background: #f0f0f0;
}

.faq--contact .faq-container,
.faq--contact .faq-tabs-container {
  max-width: 850px;
  margin-inline: auto;
}

/* ---------- RESPONSIVE TWEAKS ---------- */

@media (max-width: 768px) {
  .contact-main {
    padding-inline: 24px;
  }

  .contact-form-comingsoon {
    text-align: center;
  }

  .faq--contact {
    padding-inline: 24px;
  }
}



/* ========= ABOUT US PAGE ========= */
/* ---------- HERO ---------- */

.sobre-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(5rem, 8vh, 7.5rem) 20px clamp(5rem, 9vh, 8rem);
    overflow: hidden;
}

.sobre-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.sobre-hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    max-width: 720px;
}


.sobre-pretitle {
    color: #fff;
    font-family: "Saira Condensed", sans-serif;
    font-size: clamp(1.375rem, 0.9rem + 1.2vw, 2.125rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


.sobre-title {
    color: #fff;
    font-family: "Saira Condensed", sans-serif;
    font-weight: 900;
    font-size: clamp(2.4375rem, 1.7rem + 2.2vw, 4.375rem);
    line-height: 1;
    margin: 6px 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


.sobre-subtitle {
    color: #fff;
    font-family: "Rubik", sans-serif;
    font-size: 1.5em;
    margin-top: 4px;
  
}
/* ---------- INTRO COPY  ---------- */

.sobre-intro {
  background: #141a26;
  color: #ffffff;
  text-align: center;
  font-family: "Rubik", sans-serif;
  padding: 70px 20px 80px;  
}


.sobre-intro p {
  margin: 0 auto;
  max-width: 700px;  
  /* font-size: clamp(1rem, 0.4vw + 0.95rem, 1.5625rem);  */
  font-size: 18px;
  line-height: 1.7;
}

.sobre-intro-bottom {
  margin-top: 24px;
  font-weight: 500;
}


/* ---------- ICON ROW  ---------- */

/* Desktop  */
.sobre-icons {
    background: var(--white2);
    padding: clamp(2.2rem, 3vh, 2.8rem) 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
}

.sobre-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    font-family: "Rubik", sans-serif;
    font-weight: bold;
    font-size: clamp(16px, calc(16px + 0.1vw), 25px);
    color: #141a26;
   
}

.sobre-icon img {
    width: 65px;
    height: 65px;
}

.sobre-icon span {
    display: flex;
    width: clamp(120px, calc(120px + 1vw), 171px);
  
}

/* ---------- MOBILE VERSION  ---------- */
@media (max-width: 768px) {
  .sobre-icons {
    background: #141a26;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 2.5rem 24px 0rem;
  }

  .sobre-icon {
    color: #ffffff;
    max-width: 260px;

    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    padding: 20px 0;
    position: relative; 
  }

  .sobre-icon::after {
    content: "";
    position: absolute;
    left: -20px;
    right: -20px;
    top: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
  }

  .sobre-icon:first-child::after {
    content: none;
  }

  .sobre-icon img {
    flex-shrink: 0;
  }

  .sobre-intro {
    padding: 70px 20px 20px;
  }
}

/* ---------- REGION TITLE ---------- */

.sobre-region-title {
    background: #141a26;
    text-align: center;
    padding: clamp(3rem, 5vh, 4rem) 1.5rem 2.5rem;
    overflow: hidden;
}

.sobre-region-title h2 {
    margin: 0 auto;
    max-width: 900px;
    color: #EF712E;
    font-family: "Saira Condensed", sans-serif;
    text-transform: uppercase;
    font-size: clamp(1.75rem, 1.2rem + 1.4vw, 3.625rem);
    font-weight: 900;
    line-height: 1.15;

}


.region-title--desktop {
    display: inline;
}

.region-title--mobile {
    display: none;
}

@media (max-width: 768px) {
    .region-title--desktop {
        display: none;
    }

    .region-title--mobile {
        display: inline;
        font-size: 45px;
    }
}

/* ---------- FLAGS SECTION ---------- */

.flags-section {
    background: #141a26;
    padding: 1.5rem 20px clamp(5rem, 7vh, 6.5rem);
}

.flags-grid {
    max-width: 1010px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 40px;
    justify-content: center;
}


.flag-card {
    width: 170px;
    text-align: center;
    font-family: "Saira Condensed", sans-serif;
    color: #ffffff;
    font-size: clamp(1.125rem, 1rem + 0.3vw, 1.375rem);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.flag-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ---------- FAQ  ---------- */

.faq--sobre {
    padding-top: clamp(3.5rem, 5vh, 4.5rem);
    padding-bottom: clamp(4rem, 6vh, 5.5rem);
}

/* ========= RESPONSIVE LAYOUT TWEAKS ========= */

@media (max-width: 768px) {
    .sobre-hero {
        min-height: 380px;
    }

    .sobre-intro {
        padding-inline: 24px;
    }

}

@media (max-width: 520px) {
    .flags-grid {
        gap: 20px 16px;
        justify-content: center;
    }

    .flag-card {
        width: 46%;
        /* two columns */
        max-width: none;
        margin-bottom: 10px;
    }
}