@font-face {
  font-family: Montserrat;
  src: url("./font/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  src: url("./font/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  src: url("./font/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  text-overflow: clip;
  /* border: 1px solid red; */
}

ul {
  list-style-position: inside;
  padding: 0 10px;
  margin-bottom: 10px;
}

ul li,
ol li {
  margin: 8px 0;
}

ul li::marker {
  color: #1f0352;
}

ol {
  list-style-position: inside;
}

ol li::marker {
  font-weight: 600;
}

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

img,
video {
  width: 100%;
  height: auto;
  display: block;
}

button {
  all: unset;
  cursor: pointer;
  box-sizing: border-box;
}

/* input, textarea, button, select {
    font: inherit;
    border: none;
    outline: none;
  } */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #1c1212;
}

h1 {
  font-weight: 700;
  font-size: 2.4rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  margin: 10px 0;
}

p {
  font-size: 1rem;
  margin: 10px 0;
}
body {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #fff;
  color: #2b2d3f;
  box-sizing: border-box;
}

main {
  width: 75vw;
  margin: 0 auto;
  padding: 20px 0;
}

header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(2px);
  max-width: 100vw;
  margin: 0 auto;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #110909;
  color: #ffffff;
  padding: 10px 100px;
}

nav {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  font-size: 0.9rem;
}

header img {
  width: 60%;
}

.mobile-logo {
  display: none;
}

header a {
  transition: transform 0.8s ease-in-out;
}

header a:hover {
  transform: scale(1.1);
}

.h-menu-item {
  background-color: #00849f;
  padding: 8px;
  font-weight: 500;
  border: 1px solid #ffffff;
  font-size: 0.7rem;
}

.h-menu-wrapper {
  position: relative;
}

.h-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #2b2d3f;
  padding: 6px;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  z-index: 10;
}

.h-menu-wrapper:hover .h-menu {
  transform: scaleY(1);
  opacity: 1;
}

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

.testimonial img {
  width: 50px;
  height: auto;
  border-radius: 100%;
}

.container {
  margin: 20px auto;
}

.container img {
  width: 80%;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
}

.accent {
  padding: 6px 16px;
  font-weight: 600;
  background-color: #110909;
  border-radius: 20px;
  display: inline-block;
  color: #f4f7ff;
  margin: 10px 40px;
  cursor: pointer;
}

.casino-card {
  display: flex;
  align-items: self-start;
  overflow: hidden;
  margin-bottom: 20px;
  gap: 10px;
  border-radius: 16px;
  padding: 10px;
  box-shadow: -4px -4px 10px rgba(255, 255, 255, 0.2),
    4px 4px 12px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
}

.gold-card {
  border: 4px solid gold;
}

.casino-left {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 10px;
  width: 30%;
}

.casino-logo {
  width: 150px;
  height: auto;
}

.score {
  font-size: 0.8rem;
  font-weight: 400;
  font-style: italic;
}

.casino-center {
  flex-grow: 1;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.casino-column {
  width: 30%;
}

.casino-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.casino-code {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  margin: 0 auto;
}

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}

.btn-green-bonus {
  padding: 8px 10px;
  background-color: #06cf49;
  border: 3px solid #06cf49;
  border-radius: 18px;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  font-weight: 600;
  color: #ffffff;
}

.btn-green-bonus:hover {
  background-color: inherit;
  border: 3px solid #06cf49;
  color: #1c1212;
}

.casino-list {
  font-size: 0.8rem;
  max-width: 300px;
  list-style: none;
  padding-left: 0;
}

.casino-list li {
  word-wrap: break-word;
  line-height: 1.4;
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.casino-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #06cf49;
  font-size: 16px;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.casino-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}

.casino-rate {
  font-size: 1.2rem;
  font-weight: 600;
}

.wrapper img {
  width: 180px;
  height: auto;
}

.wrapper {
  overflow: auto;
  margin: 20px auto;
}

.float-right {
  float: right;
  margin: 0 0 10px 20px;
  border-radius: 8px;
}

.blue-btn {
  background-color: #00849f;
  color: #ffffff;
  padding: 12px 16px;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 12px;
  margin: 20px auto;
  transition: transform 0.8s ease-in-out;
}

.btn {
  margin: 0 auto;
  display: flex;
}

.blue-btn:hover {
  transform: scale(1.1);
}

footer {
  background-color: #110909;
  color: #f4f7ff;
  padding: 40px;
}

footer a {
  color: #06cf49;
}

.f-wrapper {
  display: flex;
  width: 40%;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.f-contact {
  display: flex;
  width: 40%;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 20px auto;
}

.f-contact a {
  color: #ffffff;
}

.f-contact a:hover {
  color: #06cf49;
}

header input {
  display: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

@media (max-width: 768px) {
  table {
    overflow-x: auto;
    display:block;
  }
}

table td,
table th {
  border: 1px solid #ddd;
  padding: 8px;
}

table tr:nth-child(even) {
  background-color: #ffffff;
}

table tr:hover {
  background-color: #ddd;
}

/* FORM */

form {
  margin: 50px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  background-color: #fff;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #999;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
  background-color: #fff;
  color: #000;
}

textarea {
  resize: vertical;
}

@media (max-width: 1024px) {
  main {
    width: 96vw;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  h2,
  h3,
  h4 {
    font-size: 1rem;
  }

  main {
    width: 90vw;
    padding: 10px 0;
  }

  .container {
    margin: 8px auto;
  }

  p {
    font-size: 0.9rem;
  }

  header {
    font-size: 0.9rem;
  }

  .mobile-logo {
    display: block;
  }

  .header-nav {
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translateX(-50%);
  }

  .burger-menu {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 30px;
    cursor: pointer;
    z-index: 20;
  }

  .burger-menu span {
    display: block;
    height: 4px;
    width: 100%;
    background: #f4f4f6;
    margin: 6px 0;
    transition: 0.3s;
  }

  .menu-toggle:checked + .burger-menu span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .menu-toggle:checked + .burger-menu span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked + .burger-menu span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .menu {
    position: fixed;
    left: -100%;
    top: 0;
    width: 90%;
    height: 100vh;
    color: #fff;
    padding: 90px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: left 0.4s ease-in-out;
    background-color: #110909;
  }

  .menu-toggle:checked ~ .menu {
    left: 0;
  }

  .menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px;
    transition: 0.3s;
  }

  .h-menu-active {
    display: none;
  }

  .menu a:hover {
    background: rgba(245, 245, 245, 0.2);
    border-radius: 5px;
  }

  .menu-toggle {
    display: none;
  }

  .h-menu-wrapper {
    position: static;
  }

  .h-menu {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
    background-color: transparent;
    gap: 10px;
  }

  .casino-card {
    flex-direction: column;
  }

  .casino-left {
    flex-direction: row;
    width: 100%;
    align-items: self-start;
    justify-content: space-evenly;
    margin: 0 auto;
  }

  .casino-code {
    flex-direction: column;
  }

  .casino-column {
    width: 100%;
  }

  .casino-rating {
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
  }

  .casino-rating img {
    width: 50%;
  }

  .casino-actions {
    width: 100%;
  }

  .wrapper img {
    width: 120px;
    height: auto;
  }

  footer {
    padding: 10px 6px;
  }

  .f-wrapper,
  .f-contact {
    width: 100%;
  }

  .f-contact {
    width: 100%;
    flex-direction: column;
  }

  table {
    font-size: 0.8rem;
  }

  ol,
  ul {
    font-size: 0.8rem;
  }
}
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  color: #000;
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.faq-header p {
  color: #000;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item-detailed {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}


.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 0, 0, 0.05);
}

.faq-question h3 {
  color: #000;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.faq-toggle {
  color: #4CAF50;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
  min-width: 30px;
  text-align: center;
}

.faq-item-detailed.active .faq-toggle {
  transform: rotate(45deg);
  color: #ff6b6b;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item-detailed.active .faq-answer {
  max-height: 200px;
}

.faq-answer div {
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  color: #000;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 2rem;
  }
  
  .faq-question {
    padding: 20px;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
  }
  
  .faq-answer div {
    padding: 0 20px 20px 20px;
  }
}