/* Ultra-Premium Blocker CSS Style Layout */
:root {
  --int-bg-overlay: rgba(4, 6, 12, 0.95);
  --int-bg-card: rgba(15, 23, 42, 0.72); /* Glassmorphic dark slate */
  --int-border-card: rgba(255, 255, 255, 0.08);
  --int-border-card-hover: rgba(255, 51, 102, 0.25);
  --int-brand: #ff3366;
  --int-brand-hover: #ff4d7a;
  --int-text-primary: #ffffff;
  --int-text-secondary: #94a3b8;
  --int-gradient-brand: linear-gradient(135deg, #ff3366 0%, #8b5cf6 100%);
}

/* Prevent scroll interaction on page when active */
.integrity-locked-body {
  overflow: hidden !important;
  height: 100% !important;
  width: 100% !important;
  position: fixed !important;
}

/* Fullscreen Glassmorphic Overlay wrapper */
.int-overlay-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2147483647; /* Absolute max z-index value */
  background: var(--int-bg-overlay);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow: hidden;
}

/* Floating colorful ambient aura in background */
.int-overlay-wrap::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.16) 0%, rgba(139, 92, 246, 0.12) 50%, rgba(0, 0, 0, 0) 100%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
  animation: int-float-glow 8s infinite alternate ease-in-out;
}

.int-overlay-wrap.int-active {
  opacity: 1;
  visibility: visible;
}

/* Premium glassmorphic dialog card */
.int-dialog-card {
  position: relative;
  background: var(--int-bg-card);
  border: 1px solid var(--int-border-card);
  box-shadow: 
    0 30px 60px -15px rgba(0, 0, 0, 0.8), 
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 50px rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  width: 100%;
  max-width: 400px;
  padding: 44px 36px;
  box-sizing: border-box;
  text-align: center;
  transform: scale(0.93) translateY(16px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.int-overlay-wrap.int-active .int-dialog-card {
  transform: scale(1) translateY(0);
}

.int-overlay-wrap.int-active .int-dialog-card:hover {
  border-color: var(--int-border-card-hover);
  box-shadow: 
    0 30px 60px -15px rgba(0, 0, 0, 0.8), 
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 50px rgba(255, 51, 102, 0.08);
}

/* Sleek Warning Shield Icon style */
.int-icon-shield {
  width: 72px;
  height: 72px;
  border-radius: 22px; /* Squircle icon style */
  background: rgba(255, 51, 102, 0.06);
  border: 1px solid rgba(255, 51, 102, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
  animation: int-pulse 2.2s infinite ease-in-out;
  position: relative;
}

/* Double layered outer ring ripple animation */
.int-icon-shield::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  transform: scale(1);
  opacity: 0.8;
  pointer-events: none;
  animation: int-ripple 2.2s infinite ease-in-out;
}

.int-icon-shield svg {
  width: 34px;
  height: 34px;
  color: var(--int-brand);
}

/* Typography styles with text gradient */
.int-title {
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 40%, #ff80a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.int-desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--int-text-secondary);
  line-height: 1.6;
  margin: 0;
  padding: 0 6px;
  letter-spacing: -0.005em;
}

/* Action button styles with gradient and sweep sheen */
.int-btn-verify {
  width: 100%;
  background: var(--int-gradient-brand);
  color: var(--int-text-primary);
  font-size: 14px;
  font-weight: 800;
  border: none;
  border-radius: 16px;
  padding: 16px 28px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(255, 51, 102, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.int-btn-verify::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: 0.75s;
  pointer-events: none;
}

.int-btn-verify:hover::after {
  left: 125%;
  transition: 0.55s ease-in-out;
}

.int-btn-verify:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 30px rgba(255, 51, 102, 0.42),
    0 0 20px rgba(139, 92, 246, 0.2);
}

.int-btn-verify:active {
  transform: translateY(-0.5px);
}

.int-btn-verify:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.4);
}

@keyframes int-float-glow {
  0% {
    transform: translate(-15px, -15px) scale(1);
  }
  100% {
    transform: translate(15px, 15px) scale(1.15);
  }
}

@keyframes int-pulse {
  0% {
    transform: scale(1);
    border-color: rgba(255, 51, 102, 0.2);
  }
  50% {
    transform: scale(1.04);
    border-color: rgba(255, 51, 102, 0.4);
  }
  100% {
    transform: scale(1);
    border-color: rgba(255, 51, 102, 0.2);
  }
}

@keyframes int-ripple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.32);
    opacity: 0;
  }
}
