* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.vto-start {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: #3a3a3a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Virtual Try-On Badge */
.vto-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Powered by Zukti */
.powered-by {
  position: absolute;
  right: 0px;
  top: 30%;
  transform: translateY(-30%);
  z-index: 10;
}

.zukti-logo {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  color: #9be4a4;
}

/* Main Container */
.camera-container {
    text-align: center;
    max-width: 370px;
    width: 100%;
    padding: 40px 20px;
}

/* User Circle Icon */
.user-circle {
    width: 200px;
    height: 200px;
    border: 3px solid #ffffff3d;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.user-circle svg {
  width: 110px;
  height: 110px;
}

/* Camera Feed Label */
.camera-label {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #ffffff;
}

/* Instruction Box */
.instruction-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 30px;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
}

/* Allow Camera Button */
.allow-camera-btn {
    background: #ffffff;
    color: #171717;
    border: none;
    padding: 14px 17px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
button.allow-camera-btn img {
    max-width: 23px;
}

.allow-camera-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.allow-camera-btn:active {
  transform: translateY(0);
}

.allow-camera-btn svg {
  width: 24px;
  height: 24px;
}

.camera-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vto-badge {
    top: 16px;
    left: 16px;
    font-size: 12px;
    padding: 8px 12px;
  }

  .powered-by {
    right: 12px;
    font-size: 10px;
  }

  .zukti-logo {
    font-size: 14px;
  }

  .user-circle {
    width: 160px;
    height: 160px;
    margin-bottom: 24px;
  }

  .user-circle svg {
    width: 64px;
    height: 64px;
  }

  .camera-label {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .instruction-box {
    padding: 16px 24px;
    margin-bottom: 32px;
    font-size: 14px;
  }

  .allow-camera-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 20px 15px;
  }

  .user-circle {
    width: 140px;
    height: 140px;
  }

  .user-circle svg {
    width: 56px;
    height: 56px;
  }

  .camera-label {
    font-size: 18px;
  }

  .instruction-box {
    font-size: 13px;
    padding: 14px 20px;
  }
}
