* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  z-index: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.menu a:hover {
  color: #ccc;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.menu a:hover {
  color: var(--staket-yellow);
}

.video-container {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 40px);
  background: url("mobile.png") no-repeat top center;
  background-size: cover;
  z-index: 1000;
}

@media (min-width: 768px) {
  .video-container {
    background: url("desktop.png") no-repeat top left;
    background-size: cover;
  }
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 4, 60, 0.8);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.captcha-box {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  width: 620px;
  max-width: 90%;
  height: 450px;
  max-height: 80%;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.robot-img {
  max-width: 180px;
  margin-bottom: 10px;
}

.captcha-box h2 {
  margin-bottom: 5px;
  color: #333;
}

.captcha-box p {
  color: #555;
  font-size: 14px;
  margin-bottom: 10px;
}

.checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  width: 300px;
}

.checkbox-content {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-box {
  width: 26px;
  height: 24px;
  border: 1.5px solid #777;
  border-radius: 3px;
  margin-right: 10px;
  position: relative;
}

.checkbox-box.loading::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 18px;
  height: 18px;
  border: 3px solid #4CAF50;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.checkbox-box.checked::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 2px;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;utf8,\<svg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'>\<path d='M4 11L9 16L18 6' stroke='%234CAF50' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'>\<animate attributeName='stroke-dasharray' from='0, 24' to='24, 0' dur='0.9s' fill='freeze' />\</path></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}

.re-right {
  display: flex;
  align-items: center;
  font-size: 10px;
  color: #777;
}

.re-right img {
  width: 20px;
  margin-left: 5px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 100vh auto 40px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  color: #333;
  line-height: 1.6;
}

.content h2 {
  margin-bottom: 20px;
  color: #1e293b;
}

.content p,
.content ul,
.content ol,
.content blockquote {
  margin-bottom: 15px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  background-color: #ff6200;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  transition: background-color 0.6s;
}

.cta-button:hover {
  background-color: #e55a00;
}

#button-group{
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.btn{
  flex: 1;
  min-width: 220px;
  padding: 12px 20px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s;
}
.btn:hover {
  color: #fff;
  background-color: #2a3679;
}
.yes-button {
  color: #fff;
  background-color: #1b2b38;
}
.no-button {
  color: #000;
  background-color: #6c757d00;
}