﻿:root {
  --header-logo: #d71a28; /* Насичений червоний (символізує динаміку і національні кольори) */
  --header-menu: #1e1e1e; /* Глибокий антрацитовий (сучасний і преміальний вигляд) */
  --header-menu-hover: #ffcc00; /* Яскравий жовтий (контрастний акцент, асоціюється з німецькою символікою) */
  --header-bg: #f8f9fa; /* Світлий фон для чистого, легкого дизайну */

  --hero-color: #ffffff; /* Білий фон для контрасту з яскравими елементами */
  --highlight: #ffcc00; /* Жовтий акцент для важливих елементів */
  --button-bg: #d71a28; /* Червоний кнопок – викликає асоціацію з дією */
  --button-bg-hover: #a91520; /* Темніший червоний для наведених станів */
  --button-color: #fff; /* Білий текст для кращої читабельності */
  --dark-color: #2c2c2c; /* Насичений темно-сірий для тексту */
  --tags-bg: #ececec; /* Світло-сірий фон для тегів та дрібних деталей */
  --white-bg: #ffffff; /* Класичний білий для чіткого вигляду */

  --inner-page-bg: #f7f7f7; /* Світла основа для внутрішніх сторінок */
  --inner-page-text: #333; /* Темний текст для контрасту і читабельності */
  --inner-page-title: #d71a28; /* Червоний акцентний колір для заголовків */

  --footer-bg: #1e1e1e; /* Темний фон футера для чіткої структури */
  --footer-color: #ffffff; /* Білий текст у футері */
}


@font-face {
  font-family: "Rubik";
  src: url("../../Rubik-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

body {
  font-family: "Rubik", sans-serif;
}

.header {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-around;
  gap: 15px;
  background: var(--header-bg);
  padding: 30px 20px;
  flex-wrap: wrap;
}

.header__logo {
  font-size: 30px;
  font-weight: 800;
  color: var(--header-logo);
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-item {
  width: 50px;
  height: 50px;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 32px;
  font-size: 16px;
}

.header__nav__item {
  color: var(--header-menu);
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s ease;
}
@media (max-width: 768px) {
  .header__nav__item {
    background-color: rgba(117, 140, 163, 0.1);
    align-items: center;
    text-align: center;
    padding: 10px;
    width: 95%;
    border-radius: 10px;
  }
}

.header__nav__item:hover {
  border-bottom: 1px solid var(--header-menu-hover);
}

.main-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  color: var(--button-color);
  background-color: var(--button-bg);
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.main-button:hover {
  background-color: #b966e7;
}

/* Menu toggle button (hamburger icon) */
.header__toggle {
  display: none;
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: var(--header-menu);
  font-size: 24px;
  cursor: pointer;
}

/* Media Queries for responsive design */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
  }
  .header__nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .header__toggle {
    display: block;
    top: 30px;
  }
  .main-button {
    margin-top: 15px;
    font-size: 14px;
    padding: 12px 20px;
    width: auto;
  }
  .header__logo-item {
    width: 60px;
    height: 60px;
  }
  /* Show the menu when it's active (open) */
  .header__nav.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    top: 80px;
    left: 0;
  }
}
@media (max-width: 525px) {
  .header__toggle {
    top: 30px;
    right: 30px;
  }
}
@media (max-width: 487px) {
  .header__toggle {
    right: 30px;
    top: 30px;
  }
}
@media (max-width: 437px) {
  .header__toggle {
    right: 15px;
    top: 30px;
  }
}
@media (max-width: 480px) {
  .header__logo {
    font-size: 26px;
    text-align: center;
  }
  .header__nav {
    gap: 10px;
  }
  .main-button {
    font-size: 12px;
    padding: 10px 16px;
  }
  .header__logo-item {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 360px) {
  .header__logo {
    font-size: 20px;
    text-align: center;
  }
  .header__nav {
    gap: 8px;
    font-size: 14px;
  }
  .main-button {
    font-size: 12px;
    padding: 8px 14px;
    margin-top: 10px;
  }
  .header__logo-item {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 343px) {
  .header__logo {
    font-size: 20px;
    text-align: center;
  }
  .header__nav {
    gap: 6px;
  }
  .main-button {
    font-size: 11px;
    padding: 6px 12px;
    margin-top: 10px;
  }
  .header__logo-item {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 340px) {
  .header__toggle {
    right: 15px;
    top: 30px;
  }
}
.footer {
  background: var(--footer-bg);
  padding: 50px 30px 10px;
  color: var(--footer-color);
  text-align: left;
}
.footer .footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.footer .footer__section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer .footer__section-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--footer-color);
}
.footer .footer__section-branding {
  text-align: center;
  color: var(--footer-color);
}
.footer .footer__section-branding .footer__tagline {
  font-size: 16px;
  color: var(--footer-color);
}
.footer .footer__logo {
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  color: var(--footer-color);
}
.footer .footer__disclaimer .footer__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--footer-color);
}
.footer .footer__disclaimer .footer__branding {
  font-size: 30px;
  font-weight: 900;
  color: var(--footer-color);
  display: flex;
  align-items: center;
}
.footer .footer__disclaimer .footer__warning-icons {
  display: flex;
  gap: 15px;
}
.footer .footer__disclaimer .footer__warning-icons .footer__icon {
  width: 60px;
  height: 60px;
}
.footer .footer__links,
.footer .footer__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer__links {
  text-align: center;
  width: 100%;
  margin-top: 60px;
}
@media (max-width: 1200px) {
  .footer .footer__links {
    width: 100%;
  }
}
.footer .footer__legal {
  text-align: center;
  width: 100%;
  color: var(--footer-color);
  margin-top: 60px;
}
.footer .footer__link-list,
.footer .footer__legal-list {
  color: var(--footer-color);
  list-style: none;
  padding: 0;
}
.footer .footer__link-list li,
.footer .footer__legal-list li {
  margin-bottom: 10px;
}
.footer .footer__link-list .footer__link,
.footer .footer__legal-list .footer__link {
  font-size: 18px;
  text-decoration: none;
  color: var(--footer-color);
  transition: color 0.3s;
}
.footer .footer__bottom {
  text-align: center;
  font-size: 16px;
  color: var(--footer-color);
  border-top: 1px solid var(--footer-color);
  padding-top: 15px;
}
@media (max-width: 870px) {
  .footer .footer__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer .footer__disclaimer {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .footer .footer__links,
  .footer .footer__legal {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    gap: 20px;
  }
  .footer .footer__link-list,
  .footer .footer__legal-list {
    gap: 10px;
  }
}
@media (max-width: 744px) {
  .footer .footer__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer .footer__disclaimer {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .footer .footer__links,
  .footer .footer__legal {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    gap: 20px;
  }
  .footer .footer__links {
    margin-top: 20px;
  }
  .footer .footer__link-list,
  .footer .footer__legal-list {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .footer .footer__content {
    grid-template-columns: 1fr;
  }
}

.betting-hero {
  position: relative;
  height: 700px;
  background-image: url("../img/hero-bg.png");
  background-size: cover;
  background-position: center;
  border-radius: 150px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hero-color);
  overflow: hidden;
}
@media (max-width: 768px) {
  .betting-hero {
    height: 450px;
    background-image: url("../img/hero-bg.png");
    border-radius: 0;
    margin: 0;
  }
}
.betting-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.betting-hero__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 99;
  max-width: 1000px;
  padding: 20px;
}
.betting-hero__content .badge {
  display: inline-block;
  padding: 6px 12px;
  font-weight: bold;
  color: #01849f;
  border-radius: 20px;
  font-size: 0.85rem;
}
.betting-hero__content h1 {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
.betting-hero__content h1 .highlight {
  color: var(--highlight);
  position: relative;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
}
.betting-hero__content p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--hero-color);
}
.betting-hero__content .betting-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 15px;
}
.betting-hero__content .betting-hero__action {
  display: inline-block;
  color: var(--button-color);
  background-color: var(--button-bg);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.betting-hero__content .betting-hero__action:hover {
  color: var(--button-color);
  background-color: var(--button-bg-hover);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.betting-hero__content .betting-hero__action::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-45deg);
  transition: all 0.3s ease;
}
.betting-hero__content .betting-hero__action:hover::before {
  left: 100%;
}

@media (max-width: 1600px) {
  .betting-hero {
    height: 500px;
  }
  .betting-hero__content h1 {
    font-size: 2.2rem;
  }
  .betting-hero .betting-hero__action {
    padding: 10px 25px;
  }
}
@media (max-width: 1440px) {
  .betting-hero {
    height: 480px;
  }
  .betting-hero__content h1 {
    font-size: 2rem;
  }
  .betting-hero .betting-hero__action {
    padding: 10px 25px;
  }
}
@media (max-width: 1366px) {
  .betting-hero {
    height: 460px;
  }
  .betting-hero__content h1 {
    font-size: 1.9rem;
  }
  .betting-hero .betting-hero__action {
    padding: 9px 22px;
  }
}
@media (max-width: 1200px) {
  .betting-hero {
    height: 450px;
  }
  .betting-hero__content h1 {
    font-size: 1.8rem;
  }
  .betting-hero .betting-hero__action {
    padding: 9px 20px;
    width: 120px;
  }
}
@media (max-width: 1024px) {
  .betting-hero {
    height: 400px;
  }
  .betting-hero__content h1 {
    font-size: 1.6rem;
  }
  .betting-hero .betting-hero__action {
    padding: 8px 18px;
    width: 100px;
  }
}
@media (max-width: 768px) {
  .betting-hero {
    height: 400px;
    flex-direction: column;
  }
  .betting-hero__content h1 {
    font-size: 1.4rem;
  }
  .betting-hero .betting-hero__action {
    padding: 8px 15px;
    width: 120px;
  }
}
@media (max-width: 480px) {
  .betting-hero {
    height: 400px;
  }
  .betting-hero__content h1 {
    font-size: 1.2rem;
  }
  .betting-hero .betting-hero__action {
    padding: 7px 12px;
    width: 100px;
  }
}
@media (max-width: 320px) {
  .betting-hero {
    height: 400px;
  }
  .betting-hero__content h1 {
    font-size: 1rem;
  }
  .betting-hero .betting-hero__action {
    padding: 5px 10px;
    width: 55px;
  }
}
.bg {
  background-image: url(../img/appdg.png);
  background-size: contain;
}

.betting-features-section {
  padding: 20px 20px 0 20px;
  color: var(--hero-color);
  text-align: center;
}
.betting-features-section .betting-features-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--dark-color);
  margin-bottom: 40px;
}
.betting-features-section .betting-features-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.betting-features-section .betting-feature-card {
  color: var(--dark-color);
  width: 500px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(55, 175, 227, 0.25);
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 1200px) {
  .betting-features-section .betting-feature-card {
    width: 100%;
  }
}
.betting-features-section .betting-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 12px rgba(55, 175, 227, 0.25);
}
.betting-features-section .betting-feature-card:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 4px;
  background: var(--button-bg);
  border-radius: 2px;
}
.betting-features-section .betting-feature-card .betting-feature-icon {
  width: 70px;
  height: 70px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--button-bg);
  color: var(--button-color);
  font-size: 28px;
}
.betting-features-section .betting-feature-card .betting-feature-icon img {
  width: 100%;
  height: auto;
}
.betting-features-section .betting-feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}
.betting-features-section .betting-feature-card p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}
.betting-features-section .betting-feature-card .betting-feature-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.betting-features-section .betting-feature-card .betting-feature-tags span {
  font-size: 0.9rem;
  background-color: var(--tags-bg);
  color: var(--dark-color);
  padding: 5px 10px;
  border-radius: 5px;
}
.betting-features-section .betting-feature-card .betting-feature-link {
  font-size: 1rem;
  color: var(--button-bg);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease;
}
.betting-features-section .betting-feature-card .betting-feature-link:hover {
  color: var(--button-bg);
  transform: scale(1.05);
}
.betting-features-section
  .betting-feature-card
  .betting-feature-link:hover
  .arrow {
  transform: translateX(3px);
  color: var(--button-bg);
}
@media (max-width: 1200px) {
  .betting-features-section .betting-features-cards {
    flex-direction: column;
    align-items: center;
  }
}

.betting-subscription {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  background: var(--white-bg);
  min-height: 400px;
}
.betting-subscription .betting-subscription-card {
  display: flex;
  gap: 20px;
  padding: 40px;
  max-width: 1400px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .betting-subscription .betting-subscription-card {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
}
.betting-subscription .betting-subscription-card .betting-subscription-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: left;
  padding: 20px;
}
@media (max-width: 1200px) {
  .betting-subscription .betting-subscription-card .betting-subscription-text {
    text-align: center;
    padding: 0;
  }
}
.betting-subscription .betting-subscription-card .betting-subscription-text h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--dark-color);
}
@media (max-width: 768px) {
  .betting-subscription
    .betting-subscription-card
    .betting-subscription-text
    h2 {
    font-size: 1.7rem;
  }
}
.betting-subscription
  .betting-subscription-card
  .betting-subscription-text
  h2
  .highlight {
  color: var(--highlight);
  position: relative;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
}
.betting-subscription .betting-subscription-card .betting-subscription-text p {
  color: var(--dark-color);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.betting-subscription
  .betting-subscription-card
  .betting-subscription-text
  .betting-subscription-form {
  display: flex;
  gap: 10px;
  width: 100%;
}
@media (max-width: 1200px) {
  .betting-subscription
    .betting-subscription-card
    .betting-subscription-text
    .betting-subscription-form {
    flex-direction: column;
    align-items: center;
  }
}
.betting-subscription
  .betting-subscription-card
  .betting-subscription-text
  .betting-subscription-form
  input[type="email"] {
  padding: 10px;
  font-size: 1rem;
  border: 2px solid var(--highlight);
  border-radius: 5px;
  outline: none;
  width: 100%;
  max-width: 280px;
  transition: box-shadow 0.2s ease;
}
.betting-subscription
  .betting-subscription-card
  .betting-subscription-text
  .betting-subscription-form
  input[type="email"]:focus {
  box-shadow: 0 0 10px rgba(10, 88, 201, 0.3);
}
.betting-subscription
  .betting-subscription-card
  .betting-subscription-text
  .betting-subscription-form
  .betting-subscribe-button {
  display: inline-block;
  background-color: var(--button-bg);
  color: var(--button-color);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.betting-subscription
  .betting-subscription-card
  .betting-subscription-text
  .betting-subscription-form
  .betting-subscribe-button:hover {
  color: var(--button-color);
  background-color: var(--button-bg-hover);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.betting-subscription
  .betting-subscription-card
  .betting-subscription-text
  .betting-subscription-form
  .betting-subscribe-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-45deg);
  transition: all 0.3s ease;
}
.betting-subscription
  .betting-subscription-card
  .betting-subscription-text
  .betting-subscription-form
  .betting-subscribe-button:hover::before {
  left: 100%;
}
.betting-subscription .betting-subscription-card .betting-subscription-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.betting-subscription
  .betting-subscription-card
  .betting-subscription-image
  img {
  max-width: 100%;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1200px) {
  .betting-subscription
    .betting-subscription-card
    .betting-subscription-image
    img {
    max-width: 70%;
  }
}

.betting-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 9999;
}
.betting-popup.active {
  visibility: visible;
  opacity: 1;
}
.betting-popup .betting-popup-content {
  background: var(--white-bg);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  max-width: 350px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: var(--dark-color);
}
.betting-popup .betting-popup-content p {
  margin-bottom: 15px;
  font-size: 1rem;
}
.betting-popup .betting-popup-content button {
  background: var(--button-bg);
  color: var(--button-color);
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: bold;
  transition: background 0.3s;
}
.betting-popup .betting-popup-content button:hover {
  background: var(--button-bg-hover);
}

@media (max-width: 768px) {
  .betting-subscription {
    padding: 30px;
  }
  h2 {
    font-size: 1.8rem;
  }
  .betting-subscription-form input[type="email"] {
    width: 100%;
  }
}
.betting-join-us {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 150px;
  margin: 0 20px;
  height: 600px;
  color: var(--hero-color);
  background-image: url(../img/join-bg.png); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 768px) {
  .betting-join-us {
    height: 60vh;
    border-radius: 0;
    margin: 0;
  }
}

.betting-join-us__overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Increased overlay opacity */
  z-index: 1;
}

.join-us__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  text-align: center;
  padding: 20px;
}

.betting-join-us h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.betting-join-us h1 .highlight {
  color: var(--highlight);
  position: relative;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
}
@media (max-width: 768px) {
  .betting-join-us h1 {
    font-size: 2rem;
    margin: 0 10px;
  }
}
@media (max-width: 599px) {
  .betting-join-us h1 {
    margin-bottom: 20px;
  }
}

.betting-join-us__button {
  display: inline-block;
  background-color: var(--button-bg);
  color: var(--button-color);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.betting-join-us__button:hover {
  color: var(--button-color);
  background-color: var(--button-bg-hover);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.betting-join-us__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-45deg);
  transition: all 0.3s ease;
}
.betting-join-us__button:hover::before {
  left: 100%;
}

.faq-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  color: var(--dark-color);
}
@media (max-width: 768px) {
  .faq-section {
    padding: 15px;
  }
}
.betting-faq-section__content {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1400px;
  gap: 30px;
}
@media (max-width: 1200px) {
  .betting-faq-section__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.betting-faq-section__faq {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  max-width: 1200px;
}
@media (max-width: 1200px) {
  .betting-faq-section__faq {
    align-items: center;
  }
}
.betting-faq-section__faq .faq-section__tagline {
  display: inline-block;
  padding: 6px 12px;
  font-weight: bold;
  color: var(--highlight);
  border-radius: 20px;
  font-size: 0.85rem;
}
.betting-faq-section__faq .betting-faq-section__title {
  margin: 20px 0;
  font-size: 2.8rem;
  color: var(--dark-color);
}
.betting-faq-section__faq .betting-faq-section__title .highlight {
  color: var(--highlight);
  position: relative;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
}
@media (max-width: 768px) {
  .betting-faq-section__faq .betting-faq-section__title {
    font-size: 2rem;
  }
}
.betting-faq-section__faq .betting-faq-section__questions {
  border-top: 2px solid var(--tags-bg);
  margin-top: 20px;
}
.betting-faq-section__faq .betting-faq-section__item {
  padding: 20px 0 10px;
  border-bottom: 1px solid var(--tags-bg);
}
.betting-faq-section__faq
  .betting-faq-section__item
  .betting-faq-section__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  color: var(--dark-color);
  cursor: pointer;
  font-weight: 600;
}
.betting-faq-section__faq
  .betting-faq-section__item
  .betting-faq-section__toggle {
  transition: transform 0.3s ease; /* Анімація для плавної ротації */
  color: var(--highlight); /* Основний колір */
  cursor: pointer;
}
.betting-faq-section__faq
  .betting-faq-section__item
  .betting-faq-section__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--dark-color);
  line-height: 1.6;
  margin-top: 10px;
  text-align: left;
}
.betting-faq-section__faq .betting-faq-section__button {
  display: inline-block;
  background-color: var(--button-bg);
  color: var(--button-color);
  padding: 10px 20px;
  margin-top: 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.betting-faq-section__faq .betting-faq-section__button:hover {
  color: var(--button-color);
  background-color: var(--button-bg-hover);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.betting-faq-section__faq .betting-faq-section__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-45deg);
  transition: all 0.3s ease;
}
.betting-faq-section__faq .betting-faq-section__button:hover::before {
  left: 100%;
}
.betting-faq-section__image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.betting-faq-section__image img {
  width: 100%;
  border-radius: 15px;
  max-width: 500px;
}
@media (max-width: 1200px) {
  .betting-faq-section__image img {
    max-width: 70%;
  }
}

@media (max-width: 768px) {
  .betting-faq-section__title {
    font-size: 2rem;
  }
  .betting-faq-section__item .betting-faq-section__question {
    font-size: 1rem;
  }
  .betting-faq-section__button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}
.privacy-policy {
  padding: 60px;
  background-color: var(--inner-page-bg);
  color: var(--inner-page-text);
}
.privacy-policy__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
}
.privacy-policy__container h1 {
  font-size: 2.4rem;
  color: var(--inner-page-text);
  margin-bottom: 20px;
  text-align: center;
}
.privacy-policy__container h2 {
  font-size: 1.5rem;
  font-family: "Rubik";
  color: var(--inner-page-title);
  margin-top: 20px;
  margin-bottom: 10px;
}
.privacy-policy__container p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--inner-page-text);
  margin-bottom: 15px;
}
.privacy-policy__container ul {
  margin-left: 20px;
  list-style: disc;
}
.privacy-policy__container ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--inner-page-text);
}
@media (max-width: 768px) {
  .privacy-policy {
    padding: 30px;
  }
  .privacy-policy__container {
    padding: 15px;
  }
  .privacy-policy__container h1 {
    font-size: 2rem;
  }
  .privacy-policy__container h2 {
    font-size: 1.3rem;
  }
  .privacy-policy__container p,
  .privacy-policy__container li {
    font-size: 0.95rem;
  }
} /*# sourceMappingURL=main.css.map */
