/* ============================================
   SILENTRACE - INVESTIGADOR DE INSTAGRAM
   Paleta: #0B0B0D, #FF1A1A, #D31313, #FFFFFF, #B3B6BD
   Acentos: #7B61FF, #23D18B
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Orbitron:wght@400;500;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  /* Core Colors */
  --bg-primary: #0B0B0D;
  --text-primary: #FFFFFF;
  --text-secondary: #B3B6BD;
  --accent-red: #FF1A1A;
  --accent-red-dark: #D31313;
  --accent-purple: #7B61FF;
  --accent-green: #23D18B;
  
  /* Typography */
  --font-title: 'Orbitron', 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --space-xs: clamp(0.5rem, 2vw, 0.75rem);
  --space-sm: clamp(0.75rem, 3vw, 1rem);
  --space-md: clamp(1rem, 4vw, 1.5rem);
  --space-lg: clamp(1.5rem, 5vw, 2rem);
  --space-xl: clamp(2rem, 6vw, 3rem);
  --space-2xl: clamp(3rem, 8vw, 4rem);
  
  /* Container */
  --container-max: 1200px;
  --container-padding: clamp(1rem, 5vw, 2rem);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Header */
.header {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  background: rgba(11, 11, 13, 0.8);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Typography */
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--text-secondary);
  text-align: center;
  max-width: 620px;
  margin: 0 auto var(--space-xl) auto;
  font-weight: 400;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-lg);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 1.25rem) clamp(2rem, 5vw, 3rem);
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: clamp(1rem, 3vw, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-height: 48px;
  position: relative;
  overflow: hidden;
  color: white;
  font-weight: bold;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  color: var(--text-primary);
  box-shadow: 0 8px 32px rgba(255, 26, 26, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 26, 26, 0.4);
  filter: brightness(1.1);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-gender {
  width: 100%;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  flex-direction: column;
  gap: var(--space-sm);
  font-size: clamp(1.125rem, 3vw, 1.25rem);
}

.btn-gender:hover {
  border-color: var(--accent-red);
  background: rgba(255, 26, 26, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255, 26, 26, 0.2);
}

.btn-gender.masculine:hover {
  border-color: #1E3A8A;
  background: rgba(30, 58, 138, 0.1);
  box-shadow: 0 8px 32px rgba(30, 58, 138, 0.2);
}

.btn-gender.feminine {
  border-color: rgba(255, 26, 26, 0.3);
}

.btn-gender.feminine:hover {
  border-color: var(--accent-red);
  background: rgba(255, 26, 26, 0.1);
  box-shadow: 0 8px 32px rgba(255, 26, 26, 0.2);
}

.btn-gender.masculine {
  border-color: rgba(30, 58, 138, 0.3);
}

.btn-gender.masculine:hover {
  border-color: #1E3A8A;
  background: rgba(30, 58, 138, 0.1);
  box-shadow: 0 8px 32px rgba(30, 58, 138, 0.2);
}

/* Icons */
.icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.icon-large {
  width: 48px;
  height: 48px;
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: var(--space-2xl) 0;
}

.hero-content {
  max-width: 800px;
  width: 100%;
}

.instagram-icon {
  margin: 0 auto var(--space-lg) auto;
  width: 80px;
  height: 80px;
  position: relative;
}

.instagram-icon::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(255, 26, 26, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
  from { opacity: 0.5; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1.1); }
}

/* Trust Badge */
.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: var(--space-xl);
  margin: var(--space-lg) auto;
  max-width: 600px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Form Elements */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.form-input {
  width: 100%;
  padding: clamp(0.875rem, 3vw, 1rem) clamp(1rem, 3vw, 1.25rem);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: clamp(1rem, 3vw, 1.125rem);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-height: 48px;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(255, 26, 26, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.form-error {
  color: var(--accent-red);
  font-size: 0.875rem;
  margin-top: var(--space-xs);
  display: none;
}

.form-error.show {
  display: block;
}

/* Progress Bar */
.progress-container {
  margin-bottom: var(--space-xl);
}

.progress-text {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-purple));
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Hacker Progress Bar */
.hacker-progress-container {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.hacker-progress-bar {
  position: relative;
  height: 6px;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 0;
  max-width: 400px;
  margin: 0 auto var(--space-sm) auto;
  overflow: hidden;
  box-shadow: 
    0 0 10px rgba(0, 255, 0, 0.2),
    inset 0 0 10px rgba(0, 255, 0, 0.1);
}

.hacker-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, 
    #00ff00 0%, 
    #00cc00 25%, 
    #00ff41 50%, 
    #00cc00 75%, 
    #00ff00 100%);
  position: relative;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: hackerPulse 2s ease-in-out infinite alternate;
}

.hacker-progress-glow {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  bottom: -2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 0, 0.4) 50%, transparent 100%);
  animation: hackerScan 3s linear infinite;
}

.hacker-progress-text {
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  color: #00ff00;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
  animation: hackerTextBlink 1.5s ease-in-out infinite alternate;
}

@keyframes hackerPulse {
  from { 
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
    filter: brightness(1);
  }
  to { 
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
    filter: brightness(1.2);
  }
}

@keyframes hackerScan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400px); }
}

@keyframes hackerTextBlink {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

/* ============ PROCESSING PAGE STYLES ============ */
.processing-body {
  background: 
    radial-gradient(ellipse at center, rgba(255, 26, 26, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at top left, rgba(123, 97, 255, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at bottom right, rgba(255, 26, 26, 0.1) 0%, transparent 40%),
    #0B0B0D;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.processing-main {
  width: 100%;
  padding: var(--space-xl) 0;
}

.processing-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-md);
}

/* Profile Picture com Stories Border */
.profile-picture-container {
  position: relative;
  margin: 0 auto var(--space-2xl) auto;
  width: 200px;
  height: 200px;
}

.stories-border {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  padding: 6px;
}

.profile-picture {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-placeholder {
  width: 80px;
  height: 80px;
  color: var(--text-secondary);
  opacity: 0.5;
}

.profile-placeholder svg {
  width: 100%;
  height: 100%;
}

.radiation-effect {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 26, 26, 0.3) 0%, transparent 70%);
  animation: radiationPulse 2s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes storiesRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes radiationPulse {
  from { 
    opacity: 0.3; 
    transform: scale(1);
  }
  to { 
    opacity: 0.7; 
    transform: scale(1.2);
  }
}

/* Processing Title */
.processing-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--accent-red);
  text-shadow: 0 0 20px rgba(255, 26, 26, 0.5);
  margin-bottom: var(--space-xl);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Processing Messages */
.processing-messages {
  margin-bottom: var(--space-2xl);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.processing-message {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--text-secondary);
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.5s ease;
  text-align: center;
}

/* Processing Progress */
.processing-progress-container {
  position: relative;
  margin-bottom: var(--space-2xl);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.processing-progress-bar {
  height: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 26, 26, 0.3);
  box-shadow: 
    0 0 15px rgba(255, 26, 26, 0.2),
    inset 0 0 15px rgba(0, 0, 0, 0.4);
}

.processing-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-red-dark), var(--accent-red));
  background-size: 200% 100%;
  border-radius: 999px;
  position: relative;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 0 20px rgba(255, 26, 26, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  animation: processingGradientShift 2s ease-in-out infinite;
}

.processing-progress-glow {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  bottom: -2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 26, 26, 0.5) 50%, transparent 100%);
  border-radius: 999px;
  animation: processingScan 2s linear infinite;
}

.processing-percentage {
  position: absolute;
  right: 0;
  top: -35px;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-red);
  text-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
  letter-spacing: 1px;
}

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

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

/* Processing Security */
.processing-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
  opacity: 0.8;
}

.processing-security .icon {
  width: 20px;
  height: 20px;
  color: var(--accent-green);
}

/* ============ VIDEO PAGE STYLES ============ */
.video-main {
  padding: var(--space-xl) 0;
  min-height: calc(100vh - 120px);
}

.video-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.video-title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
  letter-spacing: 1px;
    word-break: keep-all;
    hyphens: none;
}

@media (max-width: 768px) {
    .video-title {
        font-size: 1.6rem;
        line-height: 1.3;
        max-width: 280px;
        margin: 0 auto var(--space-xl) auto;
    }
}

/* Video Container */
.video-container {
  margin-bottom: var(--space-xl);
}

.video-player {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  position: relative;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 26, 26, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: playButtonPulse 2s ease-in-out infinite alternate;
}

.play-button:hover {
  background: var(--accent-red);
  transform: scale(1.1);
}

.play-button svg {
  width: 32px;
  height: 32px;
  color: white;
  margin-left: 4px;
}

.video-overlay h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: var(--space-xs);
}

.video-overlay p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

@keyframes playButtonPulse {
  from { box-shadow: 0 0 0 0 rgba(255, 26, 26, 0.7); }
  to { box-shadow: 0 0 0 20px rgba(255, 26, 26, 0); }
}

/* Mini Profile Card */
.profile-mini-card {
  background: white;
  border: 1px solid #dbdbdb;
  border-radius: 16px;
  padding: var(--space-lg);
  margin: 0 auto var(--space-xl) auto;
  max-width: 400px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mini-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.mini-profile-pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-profile-pic img,
.mini-profile-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}


.mini-profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-profile-placeholder {
  width: 30px;
  height: 30px;
  color: var(--text-secondary);
  opacity: 0.5;
}

.mini-profile-placeholder svg {
  width: 100%;
  height: 100%;
}

.mini-username {
  font-weight: 600;
  font-size: 1.125rem;
  color: #262626;
}

.mini-fullname {
  font-size: 0.875rem;
  color: #8e8e8e;
}

.mini-bio {
  font-size: 0.875rem;
  color: #262626;
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.mini-stats {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

.mini-stat {
  text-align: center;
}

.mini-stat-number {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: #262626;
}

.mini-stat-label {
  font-size: 0.75rem;
  color: #8e8e8e;
  text-transform: lowercase;
}

.mini-buttons {
  display: flex;
  gap: var(--space-sm);
}

.mini-btn {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mini-btn-primary {
  background: var(--accent-red);
  color: white;
}

.mini-btn-primary:hover {
  background: var(--accent-red-dark);
}

.mini-btn-secondary {
  background: #efefef;
  color: #262626;
  border: 1px solid #dbdbdb;
}

.mini-btn-secondary:hover {
  background: #e0e0e0;
  border-color: #c7c7c7;
}

/* Investigation Progress */
.investigation-progress-container {
  position: relative;
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.investigation-progress-bar {
  height: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(123, 97, 255, 0.3);
  box-shadow: 
    0 0 20px rgba(123, 97, 255, 0.2),
    inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.investigation-progress-fill {
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, #ff0040, #4a0080);
  background-size: 200% 100%;
  border-radius: 999px;
  position: relative;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(255, 0, 64, 0.4);
  animation: investigationGradientShift 3s ease-in-out infinite;
}

.investigation-progress-fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 2s infinite;
}

.investigation-progress-glow {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  bottom: -2px;
  background: linear-gradient(90deg, transparent 0%, rgba(123, 97, 255, 0.4) 50%, transparent 100%);
  border-radius: 999px;
  animation: investigationScan 2.5s linear infinite;
}

.investigation-percentage {
  position: absolute;
  right: 0;
  top: -35px;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-purple);
  text-shadow: 0 0 10px rgba(123, 97, 255, 0.5);
  letter-spacing: 1px;
}

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

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

/* Investigation Messages */
.investigation-messages {
  margin-bottom: var(--space-2xl);
  min-height: 80px;
}

.investigation-message {
  font-size: 0.875rem;
  color: #00ff41;
  text-align: center;
  margin: 8px 0;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

/* Final Section */
.final-section {
  text-align: center;
  margin-top: var(--space-2xl);
}

.completion-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.completion-icon {
  width: 32px;
  height: 32px;
  color: var(--accent-green);
  animation: completionPulse 1s ease-in-out infinite alternate;
}

.completion-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-green);
  text-shadow: 0 0 15px rgba(35, 209, 139, 0.5);
}

@keyframes completionPulse {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.btn-final {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-red));
  color: white;
  border: none;
  padding: clamp(1rem, 3vw, 1.25rem) clamp(2rem, 5vw, 3rem);
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: clamp(1rem, 3vw, 1.125rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(123, 97, 255, 0.4);
  animation: finalButtonPulse 2s ease-in-out infinite alternate;
  margin-bottom: var(--space-md);
}

.btn-final:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(123, 97, 255, 0.5);
  filter: brightness(1.1);
}

@keyframes finalButtonPulse {
  from { box-shadow: 0 8px 32px rgba(123, 97, 255, 0.4); }
  to { box-shadow: 0 8px 32px rgba(255, 26, 26, 0.4); }
}

.final-security-note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  opacity: 0.8;
}

/* Botão Pulsante Chamativo */
.btn-pulsing-access {
    background: linear-gradient(45deg, #ff3040, #ff6b35, #ff3040);
    background-size: 200% 200%;
    background: linear-gradient(90deg, #8B00FF, #FF1493, #FF005C);
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(139, 0, 255, 0.4);
    transition: all 0.3s ease;
    animation: pulseGlow 2s infinite, gradientShift 3s infinite;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.btn-pulsing-access:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 0, 255, 0.6);
}

.btn-pulsing-access::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2.5s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 0, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(139, 0, 255, 0.7);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(90deg, #8B00FF, #FF1493, #FF005C);
    }
    50% {
        background: linear-gradient(90deg, #FF005C, #FF1493, #8B00FF);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.final-section-inline {
    text-align: center;
    padding: 20px 0;
}
/* Seção final inline (para substituir a frase) */
.final-section-inline {
    text-align: center;
    margin-top: 20px;
}

.final-section-inline .completion-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #00ff41;
    font-weight: 600;
}

.final-section-inline .completion-icon {
    width: 24px;
    height: 24px;
    color: #00ff41;
}

.final-section-inline .btn-final {
    background: linear-gradient(135deg, #ff0040, #4a0080);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 64, 0.3);
    margin-bottom: 12px;
    display: block;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.final-section-inline .btn-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 64, 0.4);
}

.final-section-inline .final-security-note {
    font-size: 14px;
    color: #888;
    margin-top: 12px;
}


.timer-display {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  padding: var(--space-sm);
  border-radius: 8px;
  font-family: monospace;
  font-size: 0.875rem;
  color: var(--accent-green);
  z-index: 1000;
}

/* ============ MONITORED PROFILE STYLES ============ */
.instagram-body {
  background: #0d1015;
  color: #EDEDED;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  padding-bottom: 60px; /* Espaço para navegação inferior */
}

/* Instagram Header Image */
.instagram-header-image {
  background: #0d1015;
  border-bottom: 1px solid #262626;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.instagram-header-image img {
  max-height: 68px;
  width: auto;
  object-fit: contain;
}

/* Mobile optimization for header image */
@media (max-width: 768px) {
  .instagram-header-image img {
    max-height: 62px;
  }
}

@media (max-width: 480px) {
  .instagram-header-image img {
    max-height: 58px;
  }
}

/* Stories Container */
.stories-container {
  border-bottom: 1px solid #262626;
  background: #0d1015;
  padding: 16px 0;
}

.stories-scroll {
  display: flex;
  gap: 16px;
  padding: 0 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.stories-scroll::-webkit-scrollbar {
  display: none;
}

.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 66px;
  cursor: pointer;
}

.story-avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  padding: 2px;
  background: #262626;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-avatar.gradient-border {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.story-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #262626;
}

.story-username {
  font-size: 12px;
  color: #EDEDED;
  text-align: center;
  max-width: 66px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Story Image Container */
.story-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: blur(3px);
}

.story-lock-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  height: 30%;
  color: rgba(255, 255, 255, 0.9);
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.story-lock-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* Feed Instagram */
.instagram-feed {
  max-width: 470px;
  margin: 0 auto;
  background: #0d1015;
}

/* Posts */
.post {
  background: #0d1015;
  margin-bottom: 24px;
}

.post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}

.post-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 2px;
  background: #262626;
}

.post-avatar.gradient-border {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-user-details {
  display: flex;
  flex-direction: column;
}

.post-username {
  font-size: 14px;
  font-weight: 600;
  color: #EDEDED;
  line-height: 18px;
}

.post-location {
  font-size: 12px;
  color: #BEBEBE;
  line-height: 16px;
}

.post-options {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
}

.post-options svg {
  width: 24px;
  height: 24px;
  fill: #EDEDED;
}

/* Post Media */
.post-media {
  width: 100%;
  aspect-ratio: 1;
  background: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-placeholder {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-placeholder svg {
  width: 100%;
  height: 100%;
  fill: #262626;
}

/* Post Actions */
.post-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px 8px;
}

.primary-actions {
  display: flex;
  gap: 16px;
}

.action-btn,
.save-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
}

.action-btn svg,
.save-btn svg {
  width: 24px;
  height: 24px;
  fill: #EDEDED;
  stroke: #EDEDED;
  stroke-width: 0;
}

/* Post Content */
.post-likes {
  padding: 0 16px 8px;
  font-size: 14px;
  color: #EDEDED;
  line-height: 18px;
}

.post-likes strong {
  font-weight: 600;
}

.post-caption {
  padding: 0 16px 4px;
  font-size: 14px;
  line-height: 18px;
}

.caption-username {
  font-weight: 600;
  color: #EDEDED;
  margin-right: 8px;
}

.caption-text {
  color: #EDEDED;
}

.post-comments {
  padding: 0 16px 4px;
}

.comment {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 4px;
}

.comment-username {
  font-weight: 600;
  color: #EDEDED;
  margin-right: 8px;
}

.comment-text {
  color: #EDEDED;
}

/* Comment Alert Styles */
.comment {
  position: relative;
  background: linear-gradient(90deg, rgba(255, 0, 0, 0.2) 0%, rgba(255, 0, 0, 0.1) 100%);
  border-left: 3px solid #FF0000;
  padding: 8px 12px;
  border-radius: 4px;
  margin: 4px 0;
}

.comment-alert {
  color: #FF0000;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  margin-left: 8px;
  animation: alertBlink 1s ease-in-out infinite alternate;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

@keyframes alertBlink {
  from { 
    opacity: 1;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.8);
  }
  to { 
    opacity: 0.3;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  }
}

.post-timestamp {
  padding: 0 16px 16px;
  font-size: 12px;
  color: #BEBEBE;
  line-height: 16px;
  text-transform: uppercase;
}

/* View All Comments */
.view-all-comments {
  padding: 4px 16px 8px;
  font-size: 14px;
  color: #BEBEBE;
  line-height: 18px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.view-all-comments:hover {
  color: #EDEDED;
}

/* Prints Recuperados Section */
.prints-recuperados-section {
  background: #0d1015;
  padding: 24px 16px;
  border-bottom: 1px solid #262626;
}

.prints-header {
  text-align: center;
  margin-bottom: 24px;
}

.prints-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.prints-red {
  color: #FF1A1A;
}

.prints-white {
  color: #FFFFFF;
}

.prints-subtitle {
  font-size: 16px;
  color: #BEBEBE;
  margin-bottom: 8px;
  font-weight: 500;
}

.prints-context {
  font-size: 14px;
  color: #EDEDED;
  margin-bottom: 0;
}

.prints-carousel {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.prints-image-container {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  background: #121212;
}

.prints-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  filter: blur(8px);
}

.prints-image.active {
  opacity: 1;
}

.prints-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.prints-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 0 20px;
}

.prints-arrow {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #FFFFFF;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.prints-arrow:hover {
  background: rgba(255, 26, 26, 0.2);
  border-color: rgba(255, 26, 26, 0.4);
}

.prints-dots {
  display: flex;
  gap: 8px;
}

.prints-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.prints-dot.active {
  background: #FF1A1A;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .prints-image-container {
    height: 500px;
  }
  
  .prints-title {
    font-size: 20px;
  }
  
  .prints-subtitle {
    font-size: 14px;
  }
  
  .prints-context {
    font-size: 13px;
  }
}

/* Conteúdo Restrito */
.restricted-content {
  background: #0d1015;
  border: none;
}

.restricted-card {
  background: #121212;
  border: 1px solid #262626;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  margin: 0 16px;
}

.lock-icon {
  margin-bottom: 16px;
}

.lock-icon svg {
  width: 48px;
  height: 48px;
  fill: #BEBEBE;
}

.restricted-title {
  font-size: 18px;
  font-weight: 600;
  color: #EDEDED;
  margin-bottom: 8px;
}

.restricted-timestamp {
  font-size: 14px;
  color: #BEBEBE;
}

/* Conversas Suspeitas */
.suspicious-conversations {
  padding: 24px 16px;
  text-align: center;
}

.btn-conversations-new {
  background: linear-gradient(135deg, #FF3040, #E91E63);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 19.2px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
  display: inline-block;
  padding: 16px 32px;
  font-weight: 600;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 240px;
  box-shadow: 0 4px 15px rgba(255, 48, 64, 0.3);
}

/* Dados Suspeitos Nova Seção */
.suspicious-data-section-new {
  background: rgba(255, 48, 64, 0.1);
  border: 1px solid rgba(255, 48, 64, 0.3);
  border-radius: 12px;
  margin: 24px 16px;
  padding: 20px;
}

.suspicious-title-new {
  font-size: 16px;
  font-weight: 700;
  color: #FF3040;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.suspicious-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.suspicious-card-new {
  background: rgba(18, 18, 18, 0.8);
  border: 1px solid #262626;
  border-radius: 8px;
  padding: 16px 12px;
  text-align: center;
  position: relative;
  overflow: visible;
}

/* Efeitos especiais para o card de localização */
.suspicious-card-new:nth-child(3) {
  position: relative;
  background: rgba(18, 18, 18, 0.9);
  border: 2px solid #FF3040;
  box-shadow: 
    0 0 20px rgba(255, 48, 64, 0.4),
    inset 0 0 20px rgba(255, 48, 64, 0.1);
  animation: suspiciousCardPulse 2s ease-in-out infinite alternate;
}

/* Borda pulsante externa */
.suspicious-card-new:nth-child(3)::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #FF3040, #E91E63, #FF3040);
  border-radius: 10px;
  z-index: -2;
  animation: glowBorder 1.5s ease-in-out infinite alternate;
  filter: blur(2px);
}

/* Efeito radar/sonar */
.suspicious-card-new:nth-child(3)::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(255, 48, 64, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: radarPulse 2s ease-out infinite;
}

/* Ícone animado para localização */
.suspicious-card-new:nth-child(3) .suspicious-icon-new {
  position: relative;
  animation: iconPulse 1.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 8px rgba(255, 48, 64, 0.8));
}

/* Ondas saindo do ícone */
.suspicious-card-new:nth-child(3) .suspicious-icon-new::before,
.suspicious-card-new:nth-child(3) .suspicious-icon-new::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 48, 64, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: iconWaves 2s ease-out infinite;
}

.suspicious-card-new:nth-child(3) .suspicious-icon-new::after {
  animation-delay: 1s;
}

/* Inversão de cores periódica */
.suspicious-card-new:nth-child(3) {
  animation: 
    suspiciousCardPulse 2s ease-in-out infinite alternate,
    colorInvert 4s ease-in-out infinite;
}

/* Animações */
@keyframes suspiciousCardPulse {
  from { 
    box-shadow: 
      0 0 15px rgba(255, 48, 64, 0.3),
      inset 0 0 15px rgba(255, 48, 64, 0.1);
  }
  to { 
    box-shadow: 
      0 0 30px rgba(255, 48, 64, 0.6),
      inset 0 0 25px rgba(255, 48, 64, 0.2);
  }
}

@keyframes glowBorder {
  from { 
    opacity: 0.5;
    transform: scale(1);
  }
  to { 
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes radarPulse {
  0% {
    width: 20px;
    height: 20px;
    opacity: 0.8;
  }
  100% {
    width: 120px;
    height: 120px;
    opacity: 0;
  }
}

@keyframes iconPulse {
  from { 
    transform: scale(1);
    filter: drop-shadow(0 0 5px rgba(255, 48, 64, 0.6));
  }
  to { 
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(255, 48, 64, 1));
  }
}

@keyframes iconWaves {
  0% {
    width: 30px;
    height: 30px;
    opacity: 0.8;
  }
  100% {
    width: 60px;
    height: 60px;
    opacity: 0;
  }
}

@keyframes colorInvert {
  0%, 85% {
    background: rgba(18, 18, 18, 0.9);
    color: inherit;
  }
  90%, 95% {
    background: #FF3040;
    color: #000000;
  }
  100% {
    background: rgba(18, 18, 18, 0.9);
    color: inherit;
  }
}

.suspicious-icon-new {
  font-size: 24px;
  margin-bottom: 8px;
}

.suspicious-label-new {
  font-size: 12px;
  color: #BEBEBE;
  margin-bottom: 4px;
}

.suspicious-count-new {
  font-size: 14px;
  font-weight: 600;
  color: #FF3040;
}

.suspicious-city-new {
  font-size: 11px;
  color: #BEBEBE;
  margin-top: 2px;
  font-weight: bold;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

/* Resumo de Atividade Novo */
.activity-summary-new {
  background: #121212;
  border: 1px solid #262626;
  border-radius: 12px;
  margin: 24px 16px;
  padding: 20px;
}

.activity-title-new {
  font-size: 16px;
  font-weight: 600;
  color: #EDEDED;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.activity-items-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.activity-item-new {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(18, 18, 18, 0.5);
  border-radius: 8px;
  border-left: 3px solid #FF3040;
}

.activity-icon-new {
  font-size: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 48, 64, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.activity-text-new {
  flex: 1;
  font-size: 13px;
  color: #BEBEBE;
  line-height: 1.4;
}

.activity-text-new strong {
  color: #EDEDED;
  font-weight: 600;
}

/* Seção Unlock Nova */
.unlock-section-new {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-unlock-new {
  background: linear-gradient(135deg, #8134AF, #E91E63);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  width: auto;
  min-width: 280px;
  margin-bottom: 12px;
  box-shadow: 0 4px 20px rgba(129, 52, 175, 0.4);
  text-align: center;
}

.unlock-description-new {
  font-size: 12px;
  color: #BEBEBE;
}

/* Imagem de Navegação Inferior */
.bottom-navigation-image {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0d1015;
  border-top: 1px solid #262626;
  height: 78px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-navigation-image img {
  max-height: 57px;
  width: auto;
  object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .suspicious-grid-new {
    grid-template-columns: 1fr;
  }
  
  .activity-items-new {
    gap: 12px;
  }
}
/* Gender Selection */
.gender-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
  .gender-options {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}

/* Alert Badge */
.alert-badge {
  background: rgba(255, 26, 26, 0.15);
  border: 1px solid rgba(255, 26, 26, 0.3);
  border-radius: 12px;
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.alert-title {
  font-weight: 600;
  color: var(--accent-red);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.alert-text {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Security Badge */
.security-badge {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}

/* Loading Screen */
.loading-screen {
  display: none;
  text-align: center;
}

.loading-screen.show {
  display: block;
}

.loading-progress {
  margin: var(--space-xl) 0;
}

.loading-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  max-width: 400px;
  margin: var(--space-md) auto 0 auto;
}

.loading-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-purple));
  border-radius: 4px;
  width: 0%;
  transition: width 0.5s ease;
}

/* Profile Picture */
.profile-pic-container {
  text-align: center;
  margin: var(--space-lg) 0;
}

.profile-pic-wrapper {
  display: inline-block;
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  padding: 4px;
  box-shadow: 0 8px 32px rgba(245, 133, 41, 0.3);
  animation: instagramGlow 3s ease-in-out infinite alternate;
}

.profile-pic-wrapper::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
  filter: blur(8px);
}

.profile-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: var(--bg-primary);
}

@keyframes instagramGlow {
  from { 
    box-shadow: 0 8px 32px rgba(245, 133, 41, 0.4);
    transform: scale(1);
  }
  to { 
    box-shadow: 0 12px 40px rgba(221, 42, 123, 0.5);
    transform: scale(1.02);
  }
}

.loading-text {
  font-size: clamp(1rem, 3vw, 1.125rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

/* Results */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.result-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: var(--space-lg);
  text-align: center;
}

.result-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.result-value {
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  font-weight: 600;
  color: var(--text-primary);
}

/* Footer */
.footer {
  margin-top: auto;
  padding: var(--space-xl) 0 var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent-red);
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: var(--space-lg);
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--text-primary);
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-lg { margin-bottom: var(--space-lg); }
.mt-lg { margin-top: var(--space-lg); }
.hidden { display: none; }
.show { display: block; }

/* Responsive Adjustments */
@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }
  
  .trust-badge {
    flex-direction: column;
    gap: var(--space-xs);
  }
  
  .card {
    padding: var(--space-lg);
    margin: var(--space-md) auto;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

/* Focus styles for accessibility */
.btn:focus-visible,
.form-input:focus-visible,
.footer-link:focus-visible,
.back-link:focus-visible {
  outline: 2px solid var(--accent-red);
  outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --text-secondary: #CCCCCC;
  }
  
  .card,
  .form-input {
    border-color: rgba(255, 255, 255, 0.3);
  }
}
/* ============ LOADING PAGE STYLES ============ */
/* ============ NAVEGAÇÃO TEMPORÁRIA ============ */
.temp-navigation {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 9999;
  background: rgba(11, 11, 13, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 26, 26, 0.3);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-btn {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 26, 26, 0.3);
}

.nav-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 26, 26, 0.5);
  filter: brightness(1.1);
}

.nav-btn:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
  box-shadow: none;
}

.page-indicator {
  position: fixed;
  top: 20px;
  left: 20px;
  background: rgba(11, 11, 13, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 26, 26, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--accent-red);
  font-weight: 600;
  z-index: 9999;
  font-family: var(--font-title);
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.temp-notice {
  position: fixed;
  top: 80px;
  right: 20px;
  background: rgba(255, 26, 26, 0.95);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  z-index: 9998;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  max-width: 250px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 26, 26, 0.4);
}

.temp-notice.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsivo */
@media (max-width: 768px) {
  .temp-navigation {
    top: 15px;
    right: 15px;
    padding: 6px;
    gap: 6px;
  }
  
  .nav-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .page-indicator {
    top: 15px;
    left: 15px;
    padding: 6px 10px;
    font-size: 11px;
  }
  
  .temp-notice {
    top: 70px;
    right: 15px;
    max-width: 200px;
    font-size: 11px;
    padding: 10px 12px;
  }
}
.loading-body {
  background: 
    radial-gradient(ellipse at center, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at top left, rgba(160, 32, 240, 0.05) 0%, transparent 40%),
    radial-gradient(ellipse at bottom right, rgba(255, 0, 0, 0.08) 0%, transparent 40%),
    #000000;
  overflow: hidden;
  height: 100vh;
  position: relative;
}

/* Fundo com grade binária */
.binary-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: 
    linear-gradient(90deg, rgba(255, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(255, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  z-index: 0;
}

.binary-grid::before {
  content: '01001001 01101110 01110110 01100101 01110011 01110100 01101001 01100111 01100001 01110100 01101001 01101111 01101110';
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: rgba(255, 0, 0, 0.05);
  text-align: center;
  letter-spacing: 2px;
  animation: binaryFlow 15s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

@keyframes binaryFlow {
  0% { transform: translateX(-100%); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

.loading-main {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--space-xl) 0;
}

.loading-content {
  max-width: 680px;
  width: 100%;
  text-align: center;
  padding: 0 var(--space-md);
}

.loading-logo {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(135deg, #ff0000, #a020f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
  margin-bottom: var(--space-xl);
}

.loading-title {
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 600;
  color: var(--text-primary);
  text-shadow: 0 0 20px rgba(255, 26, 26, 0.3);
  margin: var(--space-xl) 0 var(--space-md) 0;
  letter-spacing: 2px;
  line-height: 1.2;
}

.loading-subtitle {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  color: #cccccc;
  font-weight: 400;
  opacity: 0.8;
}

/* Barra de Progresso Futurista */
.loading-progress-container {
  position: relative;
  margin: var(--space-2xl) 0;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.futuristic-progress-container {
  position: relative;
  margin: var(--space-2xl) 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.futuristic-progress-bar {
  height: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 0, 0, 0.2);
  box-shadow: 
    0 0 20px rgba(255, 0, 0, 0.1),
    inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.futuristic-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff0000, #a020f0, #ff0000);
  background-size: 200% 100%;
  border-radius: 999px;
  position: relative;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 0 25px rgba(255, 0, 0, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
  animation: gradientShift 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-percentage {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
}

.progress-glow {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  bottom: -2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 0, 0, 0.4) 50%, transparent 100%);
  border-radius: 999px;
  animation: progressScan 2s linear infinite;
}

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

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

.loading-progress-bar {
  height: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 26, 26, 0.2);
  box-shadow: 
    0 0 10px rgba(255, 26, 26, 0.1),
    inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.loading-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-red-dark));
  border-radius: 999px;
  position: relative;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 0 15px rgba(255, 26, 26, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.loading-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: loadingScan 2s linear infinite;
}

.loading-percentage {
  position: absolute;
  right: 0;
  top: -30px;
  font-family: var(--font-title);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-red);
  text-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
  letter-spacing: 1px;
}

/* Ícone de Check */
.check-icon {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 30px;
  height: 30px;
  color: #00ff00;
  opacity: 0;
  transition: all 0.5s ease;
}

.check-icon.show {
  transform: translateY(-50%) scale(1);
  opacity: 1;
  filter: drop-shadow(0 0 10px #00ff00);
}

.check-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  animation: checkPulse 1s ease-in-out infinite alternate;
}

/* Status Dinâmico */
.loading-status {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: var(--text-secondary);
  margin: var(--space-xl) 0;
  min-height: 24px;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

/* Mensagem de Conclusão */
.completion-message {
  font-size: clamp(1rem, 3vw, 1.125rem);
  color: #00ff00;
  font-weight: 600;
  text-align: center;
  margin-top: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  text-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
  letter-spacing: 1px;
}

/* Rodapé de Segurança */
.loading-security {
  font-size: 0.75rem;
  color: var(--text-secondary);
  opacity: 0.6;
  margin-top: var(--space-2xl);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.completion-message.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes checkPulse {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* Animação da barra hacker dinâmica */
.loading-dynamic-fill {
  width: 90% !important;
  animation: loadingHackerPulse 1.5s ease-in-out infinite alternate;
}

/* Animações */
@keyframes loadingScan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes loadingHackerPulse {
  from { 
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.4);
    filter: brightness(1);
  }
  to { 
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    filter: brightness(1.3);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .loading-progress-container {
    max-width: 320px;
  }
  
  .loading-content {
    padding: 0 var(--space-sm);
  }
  
  .loading-percentage {
    right: -10px;
  }
}

/* Seção de Monitoramento */
.monitoring-section {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 16px;
    padding: 32px 24px;
    margin: 32px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.monitoring-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.monitoring-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #ff3040;
    padding: 3px;
    margin-bottom: 12px;
    position: relative;
    
    /* Ripple effect */
    &::before,
    &::after {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border: 2px solid rgba(255, 71, 87, 0.4);
        border-radius: 50%;
        animation: ripple 2s infinite;
    }
    
    &::after {
        animation-delay: 1s;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
    background: linear-gradient(45deg, #ff4757, #ff3742);
}

.monitoring-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.monitoring-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

.monitoring-placeholder svg {
    width: 40px;
    height: 40px;
}

.monitoring-status {
    background: #ff4757;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.monitoring-processing {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 16px;
}


.monitoring-progress-container {
    margin-bottom: 32px;
}

.monitoring-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.monitoring-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff3040, #e91e63);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

.monitoring-progress-fill::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: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.monitoring-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 32px;
    overflow: hidden;
}

.monitoring-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff4757, #ff3742);
    border-radius: 2px;
    width: 0%;
    animation: monitoringProgress 3s ease-in-out infinite;
}

@keyframes monitoringProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.monitoring-suspicious-data {
    text-align: left;
    margin-bottom: 24px;
}

.monitoring-title {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.monitoring-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.monitoring-icon {
    font-size: 24px;
    margin-right: 16px;
    flex-shrink: 0;
}

.monitoring-content {
    flex: 1;
}

.monitoring-label {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.monitoring-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-style: italic;
}

.monitoring-spinner {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.monitoring-spinner svg {
    width: 100%;
    height: 100%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.monitoring-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-align: center;
    font-style: italic;
    line-height: 1.4;
}

/* Responsivo */
@media (max-width: 768px) {
    .monitoring-section {
        padding: 24px 16px;
        margin: 24px 0;
    }
    
    .monitoring-avatar {
        width: 70px;
        height: 70px;
    }
    
    .monitoring-title {
        font-size: 18px;
    }
    
    .monitoring-item {
        padding: 12px;
    }
}