body {
    background-color: #080d09;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

header {
    background: #1e2018;
}

footer {
    background: #1e2018;
    padding: 45px 0;
    margin-top: 80px;
    color: #fff;
}

h1 {
    font-size: 38px;
    color: #fff;
    font-weight: 400;
}

h2, h3, h4, h5, h6 {
    font-weight: 400;
    color: #fff;
}

h1, h2, h3 {
    margin-bottom: 0;
}

p, span, li {
    font-size: 16px;
    color: #fff;
}

p {
    margin: 0;
}

.table-overflow {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

td, th {
    font-size: 16px;
    color: #fff;
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    vertical-align: top;
}

th {
    background-color: #f5f5f5;
    color: #4b7eeb;
    font-weight: bold;
}

.home-url img {
    display: flex;
}


.container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.header-container {
    padding: 10px 16px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navigation {
    display: flex;
    gap: 40px;
}

.navigation a {
    color: #fff;
    text-decoration: none;
}

.navigation a:hover {
    color: #f6ae2d;
}

.button-container {
    display: flex;
    gap: 20px;
    align-items: center;
}

.auth-button {
    color: #1a1b1e;
    background: #474747;
    padding: 13px 27px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.2s all ease;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    background-image: url('../images/secondary-button.png');
    background-size: 100% 90%;
    background-repeat: no-repeat;
    background-position: center top;
}

.auth-button:hover {
    background-size: 100% 97%;
    padding-bottom: 15px;
    transform: translateY(4px);
}

.register-button {
    color: #fff;
    background: #6a2f18;
    padding: 13px 27px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.2s all ease;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    background-image: url('../images/primary-button.png');
    background-size: 100% 90%;
    background-repeat: no-repeat;
    background-position: center top;
}

.register-button:hover {
    background-size: 100% 97%;
    padding-bottom: 15px;
    transform: translateY(4px);
}

.menu-button {
    display: none;
    cursor: pointer;
    width: 35px;
    height: 29px;
    background: url('../images/menu-button.svg');
    display: none;
    position: relative;
    z-index: 4;
}

.offcanvas-menu {
    position: absolute;
    top: 63px;
    left: 0;
    width: 100%;
    background: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.offcanvas-menu nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 25px;
}

.offcanvas-menu nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.offcanvas-menu nav a:hover {
    color: #f6ae2d;
}

.offcanvas-menu.active {
    max-height: 500px;
    z-index: 10;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    z-index: 1;
    width: 525px;
    right: -55px;
    bottom: -10px;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.banner-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    z-index: 2;
}


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

.banner-title {
    font-size: 26px;
    color: #fff;
    font-weight: 400;
}

.banner-bonus {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
}

.banner-subtitle {
    font-size: 13px;
    color: #fff;
}

.banner-button-url {
    text-decoration: none;
}

.banner-button-container {
    display: flex;
    align-items: center;
    position: relative;
}

.banner-button-text {
    color: #1a1b1e;
    background: #474747;
    padding: 13px 27px 18px;
    border-radius: 12px;
    font-size: 26px;
    font-weight: 700;
    transition: 0.2s all ease;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    background-image: url('../images/secondary-button.png');
    background-size: 100% 90%;
    background-repeat: no-repeat;
    background-position: center top;
    z-index: 1;
}

.banner-button-text:hover {
    background-size: 100% 97%;
    padding-bottom: 15px;
    transform: translateY(4px);
}

.banner-details {
    font-size: 13px;
    color: #ffffff99;
}

.banner-details:hover {
    color: #fff;
}

.main-content {
    padding: 50px 70px;
    max-width: 1200px;
}

.main-content img {
    max-width: 100%;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: center;
}

.footer-nav {
    display: flex;
    gap: 10px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.footer-images {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.copyright {
    font-size: 12px;
    color: #bababa;
    display: flex;
    justify-content: center;
}

.faq-item .question p {
  font-size: 17px;
  line-height: 25px;
  margin: 5px 0;
  font-weight: 400;
}

.faq__items {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: #f6ae2d;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid #000;
}

.question {
  display: flex;
  align-items: center;
  padding: 12px 67px 12px 14px;
  font-weight: bold;
  color: #4c455f;
  gap: 10px;
  cursor: pointer;
  position: relative;
}

.question h3 {
    margin-bottom: 15px;
}

.faq-item.open .question {
    background: #000;
}

.collapse-block__caret::after {
    position: absolute;
    content: "+";
    right: 15px;
    top: 49%;
    transform: translateY(-50%);
    border: 1px solid #1f2422;
    line-height: 1;
    border-radius: 50%;
    font-size: 20px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #335548;
}

.faq-item.open .collapse-block__caret::after {
  content: "-";
      align-items: normal;
      font-size: 30px;
      line-height: 17px;
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease, padding 0.8s ease;
  padding: 0 1%;
  font-size: 15px;
  color: #4c455f;
  background: #000;
}

.answer.open {
  padding: 20px 15px;
}

.faq-item.open .answer p {
  margin: 0;
}

.faq-item .answer p {
    font-size: 16px;
}

.img-text-container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.text-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 1200px) {
    .container {
        margin: 0 15px;
    }
    .footer-container {
        margin: 0 15px;
    }
    .main-content {
        padding: 10px;
    }
}

@media (max-width: 991px) {
   .menu-button {
        display: block;
    }
    .navigation {
        display: none;
    }
    .home-url img {
        max-width: 100px;
    }
    .nav-container {
        gap: 10px;
    }
    .button-container {
        gap: 10px;
    }
    .img-text-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .banner-content {
        padding: 10px;
    }
    .offcanvas-menu nav {
        padding: 20px 10px;
    }
    .auth-button, .register-button {
        font-size: 10px;
        padding: 13px 7px 18px;
    }
    .footer-main {
        flex-direction: column;
        gap: 30px;
        justify-content: center;
    }
    .footer-nav {
        align-items: center;
        flex-direction: column;
    }
    .question {
      padding: 5px 15px;
    }

    .faq-item .question p {
      font-size: 16px;
    }

    .collapse-block__caret {
      width: 20px;
      height: 20px;
    }

    .faq-item.open .answer {
      padding: 20px 15px;
    }
    .banner-title {
        text-align: center;
    }
    .banner-container::before {
        content: "";
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.5); /* adjust opacity as needed */
        z-index: 1;
    }
    .banner-container {
        height: 270px;
    }
}





