@font-face {
  font-family: "ComicSansMS";
  src: url("../fonts/ComicSansMS.woff2") format("woff2"),
       url("../fonts/ComicSansMS.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #1E1E1E;
  color: #e6e6e6;
  font-family: "ComicSansMS", sans-serif;

  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#app-root {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Main content */
.content {
  flex-grow: 1;
  margin-left: 200px;
  margin-top: 210px;
  max-width: 720px;
}

@media (max-width: 768px) {
  .content {
    margin-left: 18px;
    margin-top: 120px;
    margin-right: 18px;
  }

  .verify-box {
    width: 100%;
    max-width: 430px;
  }
}

.domain-name {
  font-size: 28px;
  font-weight: 600;
}

.description {
  margin-top: 12px;
  font-size: 16px;
  color: #cfcfcf;
  line-height: 1.4;
}

/* Verification box */
.verify-box {
  margin-top: 44px;
  width: 430px;
  background: #1A1A1A;
  border: 1px solid #2F2F2F;
  padding: 18px 18px;
  border-radius: 6px;
  transition: border-color 0.3s ease;
}

.verify-box:hover {
  border-color: #404040;
}

.verify-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.left-area {
  display: flex;
  align-items: center;
  gap: 8px;
  transform: none;
}

.left-area label {
  cursor: pointer;
  user-select: none;
  position: relative;
  top: 1px;
  transition: opacity 0.15s ease, color 0.2s ease;
}

.left-area label:hover {
  color: #fff;
}

.left-area input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  position: relative;
  top: 1px;
  accent-color: #ff9900;
  transition: opacity 0.15s ease;
}

.right-area {
  display: flex;
  align-items: center;
  margin-left: -10px;
  margin-right: 12px;
  transform: none;
}

/* Spinner */
.spinner {
  width: 28px;
  height: 28px;
  border: 4px solid #a5a5a5;
  border-top-color: #ff9900;
  border-radius: 50%;
  animation: spin .8s linear infinite;
  display: none;
  opacity: 0;
  transition: opacity 0.2s ease-in;
}

.spinner.active {
  opacity: 1;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.badge {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
}

.badge img {
  height: 100%;
  width: auto;
  display: block;

  transform: scale(2.6);
  transform-origin: center;

  position: relative;
  top: 2px;
}

.ray-big {
  margin-top: 55px;
  font-size: 13px;
  color: #888;
}

/* Footer */
.footer-container {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 30px;
}

.footer-line {
  width: 65%;
  height: 1px;
  background: #3b3b3b;
  margin-bottom: 12px;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 153, 0, 0.1);
}

.footer-info {
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  user-select: none;
}

.footer-item {
  margin: 0 28px;
  white-space: nowrap;
}