* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  height: 100%;
}

body {
  background-color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b0b0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* MOBILE NOTICE STYLES */
.mobile-notice {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow: auto;
  padding: 20px;
}

.mobile-notice-content {
  text-align: center;
  max-width: 500px;
  animation: fadeInUp 0.6s ease-out;
}

.mobile-notice-content h2 {
  font-size: 24px;
  color: #ff9800;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.mobile-notice-content .icon {
  font-size: 40px;
}

.mobile-notice-content p {
  font-size: 15px;
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 20px;
}

.mobile-notice-hint {
  font-size: 13px !important;
  color: #707070 !important;
  background: rgba(255, 152, 0, 0.1);
  padding: 16px 20px;
  border-radius: 8px;
  border-left: 3px solid #ff9800;
  margin-bottom: 20px !important;
  display: inline-block;
}

.mobile-notice-illustration {
  margin: 30px 0;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.desktop-icon {
  font-size: 80px;
  opacity: 0.6;
  animation: float 3s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* CARD */
.verify-card {
  width: 485px;
  background: #121212;
  border-radius: 6px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
  margin-top: 40px;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}

.verify-card::-webkit-scrollbar {
  width: 6px;
}

.verify-card::-webkit-scrollbar-track {
  background: transparent;
}

.verify-card::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}

.verify-card::-webkit-scrollbar-thumb:hover {
  background: #444;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.logo {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title {
  font-weight: 600;
  font-size: 18px;
  color: #e0e0e0;
  letter-spacing: -0.2px;
}

.subtitle {
  font-size: 13px;
  color: #707070;
  margin-top: 2px;
}

/* SECURITY STATUS */
.security-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  margin-bottom: 24px;
  color: #e0e0e0;
  font-size: 15px;
  border-bottom: 1px solid #1a1a1a;
}

/* SECURITY WARNING */
.security-warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(255, 87, 34, 0.08) 100%);
  border-left: 3px solid #ff9800;
  border-radius: 4px;
  animation: warningPulse 3s ease-in-out infinite;
}

.warning-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9800;
  font-size: 20px;
}

.warning-content {
  flex: 1;
}

.warning-title {
  font-weight: 600;
  font-size: 14px;
  color: #ff9800;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.warning-text {
  font-size: 13px;
  color: #b0b0b0;
  line-height: 1.4;
}

@keyframes warningPulse {
  0%, 100% {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(255, 87, 34, 0.08) 100%);
  }
  50% {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.15) 0%, rgba(255, 87, 34, 0.12) 100%);
  }
}

/* TEXT */
.description {
  font-size: 14px;
  color: #909090;
  line-height: 1.5;
  margin-bottom: 28px;
}

/* CHECKING */
.checking {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 14px;
  color: #b0b0b0;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #2a2a2a;
  border-top-color: #e0e0e0;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* CAPTCHA STYLES */
.tettx {
  color: rgb(217, 217, 217);
  font-size: 13px;
  font-family: Arial, sans-serif;
}

.tettx p {
  font-size: 13px;
  color: white;
}

.verify-main {
  color: rgb(217, 217, 217) !important;
}

.verify-verify-button {
  background: #333333 !important;
}

.checkbox-window {
  display: none;
  opacity: 0;
  flex-direction: row;
  align-items: center;
  width: 300px;
  height: 62px;
  background-color: #232323;
  border: 1px solid #656565;
  border-radius: 4px;
  padding: 10px;
  overflow: hidden;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  font-family: Arial;
  flex-wrap: wrap;
  scrollbar-width: thin;
  scrollbar-color: #444 transparent;
}

.checkbox-window::-webkit-scrollbar {
  width: 4px;
}

.checkbox-window::-webkit-scrollbar-track {
  background: transparent;
}

.checkbox-window::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 2px;
}

.checkbox-container {
  width: 28px;
  height: 28px;
  margin-left: 12px;
  margin-right: 8px;
  position: relative;
  display: flex;
  align-items: center;
}

.checkbox {
  width: 24px;
  height: 24px;
  background-color: #232323;
  border: 1px solid #fff;
  cursor: pointer;
  transition: border-color 0.3s, background-color 0.3s;
}

.checkbox.checked {
  border-color: #2D8CFF;
  background-color: #2D8CFF;
  position: relative;
}

.checkbox.checked::after {
  content: "\f00c";
  font-family: "FontAwesome";
  color: #fff;
  font-size: 18px;
  position: absolute;
  top: -2px;
  left: 2px;
}

.spinner-element {
  visibility: hidden;
  position: relative;
}

.verify-window {
  opacity: 0;
  visibility: hidden;
  width: auto;
  height: 0;
  transition: opacity 0.5s ease-in-out, height 0.5s ease-in-out;
  font-family: Roboto, helvetica, arial, sans-serif;
  margin: 0;
  max-width: 100%;
}

.verify-window.active {
  opacity: 1;
  visibility: visible;
  height: auto;
  display: block;
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #444 transparent;
}

.verify-window.active::-webkit-scrollbar {
  width: 4px;
}

.verify-window.active::-webkit-scrollbar-track {
  background: transparent;
}

.verify-window.active::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 2px;
}

.verify-main ol {
  padding-left: 20px;
}

.verify-main ol li {
  margin-bottom: 10px;
}

.verify-main code {
  display: block;
  margin-top: 10px;
  background-color: #f9f9f9;
  padding: 10px;
  font-size: 12px;
  border: 1px solid #ddd;
}

.verify-footer {
  background-color: #f2f2f2;
  padding: 16px;
  text-align: right;
}

.verify-footer button {
  padding: 10px 20px;
  background: #2D8CFF;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#spinner2 {
  width: 40px;
  height: 40px;
  animation: rotate 4s linear infinite;
  margin-top: -4px;
}

.lds-ring {
  display: inline-block;
  position: relative;
}

.lds-ring,
.lds-ring div {
  height: 1.5rem;
  width: 1.5rem;
}

.lds-ring div {
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border: 0.3rem solid transparent;
  border-radius: 50%;
  border-top-color: #313131;
  box-sizing: border-box;
  display: block;
  position: absolute;
  border-color: #999 transparent transparent;
}

.lds-ring div:first-child {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  flex: 1;
  padding: 12px 0;
  border-radius: 4px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn.primary {
  background: #1a1a1a;
  color: #e0e0e0;
}

.btn.secondary {
  background: transparent;
  color: #707070;
  border: 1px solid #2a2a2a;
}

.btn:hover {
  background-color: #252525;
}

.btn.secondary:hover {
  background-color: #1a1a1a;
}

/* FOOTER */
.footer {
  margin-top: 24px;
  font-size: 12px;
  color: #505050;
  display: flex;
  justify-content: space-between;
}

/* DOUBLE COUNTER BRANDING */
.dc-branding {
  margin-top: 20px;
  padding: 16px;
  background: rgba(26, 26, 26, 0.8);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #1a1a1a;
}

.dc-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.dc-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dc-label {
  font-size: 11px;
  color: #606060;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dc-name {
  font-size: 14px;
  color: #e0e0e0;
  font-weight: 600;
}
