body, html {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100vw;
  background: linear-gradient(135deg, #111, #1e1e1e);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
  color: #fff;
  overflow-x: hidden;
  position: relative;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 20, 147, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 179, 0, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-10px, -10px) scale(1.02); }
  50% { transform: translate(10px, -5px) scale(0.98); }
  75% { transform: translate(-5px, 10px) scale(1.01); }
}

* {
    box-sizing: border-box;
}

html {
    background: #0f0f0f !important;
    background-image: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%) !important;
    background-attachment: fixed !important;
    min-height: 100vh !important;
}

html, body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  min-height: 100dvh;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
  -webkit-overflow-scrolling: touch;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 600px) {
  body, html {
    background: linear-gradient(135deg, #111, #1e1e1e) !important;
    background-attachment: fixed !important;
    min-height: 100dvh !important;
  }
}

.glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  transform: rotate(45deg);
  animation: glassShimmer 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glassShimmer {
  0%, 100% { transform: rotate(45deg) translateX(-100%); }
  50% { transform: rotate(45deg) translateX(100%); }
}

.tiktok-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 18vh;
  padding: 32px 0 12px 0;
  position: relative;
}

.tiktok-title-card {
  padding: 28px 32px 18px;
  margin: 0 auto 12px;
  max-width: 95vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.tiktok-title {
  font-weight: 800;
  font-size: 2.5rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.1;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 2px solid #FF1493;
}

.tiktok-sub {
  color: #aaa;
  font-size: 1.05rem;
  text-align: center;
  font-weight: 500;
  margin-bottom: 0;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 6vw;
  margin: 24px 0 80px;
}

.feature-card {
  background: rgba(45, 45, 45, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 16px;
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s, transform 0.1s;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.feature-card:hover::after {
  left: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #FF1493, #ff69b4, #FF1493);
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 0.3;
}

.feature-card:active,
.feature-card.selected {
  border: 2px solid #FF1493;
  box-shadow: 0 4px 18px #ff149333;
  transform: scale(0.98);
}

.feature-icon {
  font-size: 2rem;
  color: #FF1493;
  background: rgba(60, 60, 60, 0.6);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 20, 147, 0.1) 0%, transparent 70%);
  animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.feature-info {
  flex: 1;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.feature-desc {
  font-size: 1rem;
  color: #b0b0b0;
}

.input-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 28px;
}

.input-section.glass {
  margin: 28px auto 0;
  max-width: 420px;
  padding: 20px 16px;
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: rgba(45, 45, 45, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  box-sizing: border-box;
}

.input-section.glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 20, 147, 0.02), transparent);
  animation: inputGlow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes inputGlow {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

@media (max-width: 600px) {
  .input-section.glass {
    padding: 16px 4vw;
    margin: 28px 4vw 0 4vw;
    width: calc(100% - 8vw);
    min-width: 0;
  }
}

.input-section.glass::before {
  display: none;
}

@keyframes glass-accent {
  0% { background-position: 0 0; }
  100% { background-position: 200% 0; }
}

.input-label {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 14px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2px;
  z-index: 1;
}

.input-box-wrapper {
  width: 100%;
  max-width: 340px;
  position: relative;
  display: flex;
  align-items: center;
}

.input-box {
  width: 100%;
  padding: 14px 44px 14px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(50, 50, 50, 0.85);
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
  outline: none;
  text-align: left;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 1.5px 0 0 #fff1 inset;
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  z-index: 1;
  position: relative;
}

.input-box:focus {
  border: 1.5px solid #FF1493;
  box-shadow: 0 0 6px #ff149322, 0 1.5px 0 0 #fff1 inset;
}

.send-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #FF1493;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 6px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.send-btn:active {
  color: #ff69b4;
}

.tiktok-btn {
  width: 100%;
  max-width: 340px;
  padding: 14px 0;
  border-radius: 12px;
  background: #FF1493;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  margin: 6px 0 0 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  letter-spacing: 0.2px;
  text-align: center;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.tiktok-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.tiktok-btn:hover::before {
  left: 100%;
}

.tiktok-btn:active {
  background: #ff69b4;
  transform: scale(0.98);
  box-shadow: 0 0 8px #ff149322;
}

#usernameWarning {
  z-index: 1;
  position: relative;
  margin-top: 10px;
}

.stepper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 70px;
  background: rgba(20, 20, 20, 0.85);
  border-top: 1px solid #2c2c2c;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(8px);
  padding-bottom: 18px;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .stepper {
    height: 60px;
    padding-bottom: 14px;
  }
  .stepper-inner {
    gap: 0;
    overflow-x: auto;
    padding: 0 4vw;
    width: 100vw;
    justify-content: flex-start;
  }
  .step {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
    margin: 0 2px;
  }
  .step-label {
    font-size: 0.7rem;
    width: 38px;
    top: 26px;
  }
  .step-line {
    width: 16px;
    height: 3px;
    margin-bottom: 6px;
  }
}

.stepper-inner {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  gap: 0;
}

.step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #232323;
  color: #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid #2c2c2c;
  margin: 0 5px;
  transition: all 0.2s;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 0 #FF1493;
}

.step.active {
  background: #FF1493;
  color: #fff;
  border-color: #FF1493;
  box-shadow: 0 0 0 6px #ff149322, 0 2px 10px #ff149333;
  animation: none;
}

@keyframes step-pulse {
  0% { box-shadow: 0 0 0 0 #ff149333, 0 2px 10px #ff149355; }
  100% { box-shadow: 0 0 0 12px #ff149311, 0 2px 10px #ff149355; }
}

.step-label {
  font-size: 0.85rem;
  color: #aaa;
  text-align: center;
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.2px;
  width: 60px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 40px;
  pointer-events: none;
}

.step-line {
  width: 36px;
  height: 4px;
  background: #232323;
  margin: 0 0 12px 0;
  border-radius: 2px;
  z-index: 0;
  position: relative;
  transition: background 0.5s;
}

.step.completed ~ .step-line {
  background: #FF1493;
  animation: none;
}

@keyframes step-line-anim {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.3); }
}

@media (max-width: 600px) {
  .tiktok-title-card {
    padding: 16px 4vw 10px;
    margin-top: 10px;
  }
  .tiktok-title {
    font-size: 1.8rem;
  }
  .features {
    padding: 0 4vw;
  }
  .stepper { height: 70px; }
  .step { width: 28px; height: 28px; font-size: 1rem; }
  .step-label { font-size: 0.7rem; width: 44px; top: 32px; }
  .step-line { width: 24px; height: 3px; margin-bottom: 8px; }
  .input-section.glass { padding: 18px 4vw 18px 4vw; min-height: 120px; }
  .input-label { font-size: 1.05rem; }
  .input-box { font-size: 1rem; padding: 14px 8px; }
  .tiktok-btn { font-size: 1rem; padding: 14px 0; }
}

.process-section.glass {
  margin: 28px auto 0;
  max-width: 420px;
  padding: 28px 16px 32px 16px;
  box-sizing: border-box;
  min-width: 0;
  min-height: 120px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: rgba(45, 45, 45, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  box-sizing: border-box;
}

.process-section.glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 20, 147, 0.02), transparent);
  animation: processGlow 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes processGlow {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

@media (max-width: 600px) {
  .process-section.glass {
    padding: 18px 4vw 18px 4vw;
    margin: 28px 4vw 0 4vw;
    width: calc(100% - 8vw);
    min-width: 0;
  }
}

.process-title {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}

.process-bar-outer {
  width: 100%;
  max-width: 320px;
  height: 16px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 10px;
  margin: 18px 0 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 20, 147, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

.process-bar-outer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.1), transparent);
  animation: shimmer 2s infinite;
  pointer-events: none;
}

.process-bar-inner {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #FF1493, #ff69b4, #FF1493);
  background-size: 200% 100%;
  border-radius: 8px;
  transition: width 0.5s cubic-bezier(.4,2,.6,1);
  position: relative;
  animation: gradientMove 2s ease infinite;
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.process-bar-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 1.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

@keyframes shimmer {
  0% { opacity: 0.3; }
  50% { opacity: 0.8; }
  100% { opacity: 0.3; }
}

.process-message {
  color: #aaa;
  font-size: 1.05rem;
  margin-top: 18px;
  text-align: center;
  min-height: 24px;
}

/* Popup styles */
.verification-popup-bg {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.65);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: popup-bg-fade 0.35s;
}

@keyframes popup-bg-fade {
  from { background: rgba(0,0,0,0); }
  to { background: rgba(0,0,0,0.65); }
}

.verification-popup-bg.active {
  display: flex;
}

.verification-popup {
  background: rgba(45, 45, 45, 0.85);
  border-radius: 20px;
  box-shadow: 0 8px 40px #000a, 0 1.5px 0 0 #fff1 inset;
  border: 1.5px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  padding: 44px 24px 36px 24px;
  max-width: 95vw;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  animation: popup-in 0.38s cubic-bezier(.4,2,.6,1);
  box-sizing: border-box;
  overflow: hidden;
}

.verification-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 20, 147, 0.02), transparent);
  animation: popupGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes popupGlow {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

@media (max-width: 600px) {
  .verification-popup {
    padding: 18px 4vw 18px 4vw;
    margin-left: 2vw;
    margin-right: 2vw;
    width: auto;
    min-width: 0;
  }
}

@keyframes popup-in {
  0% { opacity: 0; transform: scale(0.85) translateY(40px); }
  80% { opacity: 1; transform: scale(1.04) translateY(-6px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.verification-close {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.7rem;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s, transform 0.15s;
  outline: none;
}

.verification-close:hover {
  color: #fff;
  transform: translateX(-50%) scale(1.12);
}

.verification-icon {
  font-size: 2.6rem;
  color: #FF1493;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: icon-pop 0.6s cubic-bezier(.4,2,.6,1);
}

@keyframes icon-pop {
  0% { opacity: 0; transform: scale(0.7); }
  60% { opacity: 1; transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}

.verification-title {
  font-size: 1.22rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.verification-sub {
  color: #FF1493;
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.verification-desc {
  color: #aaa;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.verification-divider {
  width: 100%;
  height: 1.5px;
  background: rgba(255,255,255,0.08);
  margin: 18px 0 24px 0;
  border-radius: 1px;
  animation: divider-slide 0.5s cubic-bezier(.4,2,.6,1);
}

@keyframes divider-slide {
  0% { width: 0; opacity: 0; }
  60% { width: 60%; opacity: 1; }
  100% { width: 100%; opacity: 1; }
}

.verification-btn {
  width: 100%;
  max-width: 320px;
  min-height: 56px;
  padding: 18px 0;
  border-radius: 999px;
  background: #181818;
  color: #fff;
  font-size: 1.13rem;
  font-weight: 900;
  line-height: 1.2;
  border: none;
  box-shadow: 0 2px 12px #2228, 0 1.5px 0 0 #fff1 inset;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  letter-spacing: 0.2px;
  text-align: center;
  margin: 12px auto; 
  outline: none;
  animation: btn-fadein 0.7s cubic-bezier(.4,2,.6,1);
  box-sizing: border-box;
  align-self: center; 
  position: relative;
  overflow: hidden;
}

.verification-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.verification-btn:hover::before {
  left: 100%;
}

@keyframes btn-fadein {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.verification-btn:active {
  background: #FF1493;
  color: #181818;
  transform: scale(0.98);
}

@media (max-width: 600px) {
  .verification-popup { padding: 18px 4vw; }
  .verification-title { font-size: 1.05rem; }
  .verification-btn {
    font-size: 1rem;
    padding: 14px 0;
    min-height: 50px; 
  }
}

.verificationBtn {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #a6a6a6; 
  border-radius: 3px;
  padding: 12px 14px;
  width: 100%;
  max-width: 302px;
  height: 78px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  cursor: pointer;
  font-family: Arial, sans-serif;
  position: relative;
}

.verificationBtnCheckbox {
  width: 28px;
  height: 28px;
  border: 1.5px solid #a6a6a6; 
  border-radius: 3px;
  margin-right: 8px; 
  flex-shrink: 0;
  position: relative;
  background: #fff;
  box-sizing: border-box;
}

.verificationBtnCheckbox .spinner {
  width: 22px;
  height: 22px;
  border: 5px solid #e0e0e0;
  border-top: 5px solid #FF1493;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 0.8s linear infinite;
  background: #fff;
  z-index: 2;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.verificationBtnText {
  font-size: 15px;
  color: #000;
  margin-right: auto;
  transform: translateY(1px); 
}

.verificationBtnLogoBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: right;
  margin-left: 12px;
  flex-shrink: 0;
}

.verificationBtnLogo {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 2px;
}

.verificationBtnSubtext {
  font-size: 8px;
  color: #555;
  line-height: 1.2;
  white-space: nowrap;
}

/* Mobile responsiveness */
@media (max-width: 400px) {
  .verificationBtn {
    max-width: 100%;
    flex-wrap: wrap;
    height: auto;
    padding: 10px;
  }

  .verificationBtnLogoBlock {
    flex-direction: row;
    align-items: center;
    margin-left: auto;
  }

  .verificationBtnSubtext {
    font-size: 7px;
    margin-left: 4px;
  }
}

@media (max-width: 600px) {
  body, html {
    background: linear-gradient(135deg, #111, #1e1e1e) !important;
  }
}

@media (max-width: 480px) {
    html, body {
        background: #0f0f0f !important;
        background-image: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%) !important;
        background-attachment: fixed !important;
        width: 100vw !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        overflow-x: hidden !important;
    }
    body::before {
        position: absolute !important;
        height: 100% !important;
    }
}
  