.verification {
  display: none;
}
.verification--open {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
  top: 0px;
  background-color: #171717;
  overflow: hidden;
  position: fixed;
  z-index: 10000;
}
.verification__area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 802px;
  padding: 62px 78px 80px;
  background-color: #121212;
  border-radius: 20px;
}
.verification__text {
  margin-bottom: 30px;
  font-size: 2em;
  line-height: 130%;
  text-align: center;
}
.verification__btn {
  min-width: 262px;
  margin-bottom: 20px;
}
.verification__btn:active {
  opacity: 0.5;
}
@media screen and (max-width: 991.98px) {
  .verification__area {
    width: 600px;
    padding: 32px 48px;
    background-size: contain;
  }
}
@media screen and (max-width: 767.98px) {
  .verification__area {
    width: 400px;
    padding: 32px;
    background-position: center center;
  }
  .verification__text {
    font-size: 1em;
  }
}
@media screen and (max-width: 575.98px) {
  .verification__area {
    width: 280px;
    padding: 16px;
  }
}
/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(18, 18, 18);
  color: #ffffff;
  padding: 24px 20px;
  z-index: 1998;
  border-top: 2px solid var(--theme);
  box-shadow: 0 -4px 20px rgba(18, 18, 18, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 auto;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 14px;
  color: #e0e0e0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn, .cookie-modal .theme-btn {
  padding: 10px 24px;
}

.cookie-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

.cookie-btn-accept {
  background-color: #ffffff;
  color: #000000;
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(18, 18, 18, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background-color: #121212;
  color: white;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  padding: 40px 32px;
  position: relative;
  border: 2px solid var(--theme);
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #171717;
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #333333;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--theme);
}

.cookie-toggle label {
  font-weight: 600;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 150px 0;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.thanks p {
  text-align: center;
  font-size: 18px;
}
.thanks p.thanks-text {
  font-weight: bold;
  color: var(--theme);
}
.docs {
  word-break: break-word;
  padding: 100px 0;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 60px;
}
.docs ul {
  list-style-type: circle;
  padding-left: 30px;
}
.docs li,
.docs p {
  color: inherit;
  line-height: 1.5;
  margin-bottom: 16px;
}
.docs a {
  text-decoration: none !important;
  color: var(--theme);
}
.docs a:hover {
  color: white;
}
@media screen and (max-width: 767.98px){
  h1 {
    font-size: 44px;
  }
  h2 {
    font-size: 32px;
  }
}
.color-badge {
  padding: 16px;
  border: 1px solid rgba(191, 247, 71, 0.2);
  border-radius: 5px;
  margin-top: 30px;
  background-color: rgba(191, 247, 71, 0.1);
  text-align: center;
}