/* Age Verification Screen Enhancements */
.age-verify-container {
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  animation: fadeScale 0.5s ease forwards;
}

.age-verify-content {
  background: linear-gradient(135deg, rgba(43, 45, 66, 0.95), rgba(30, 32, 46, 0.98));
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
              0 0 0 1px rgba(139, 0, 0, 0.1),
              0 0 30px rgba(139, 0, 0, 0.2);
  border: 1px solid rgba(201, 173, 167, 0.2);
  position: relative;
  backdrop-filter: blur(10px);
}

.age-verify-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    rgba(139, 0, 0, 0), 
    rgba(139, 0, 0, 1), 
    rgba(98, 2, 117, 1), 
    rgba(139, 0, 0, 1), 
    rgba(139, 0, 0, 0)
  );
}

.logo-section {
  text-align: center;
  margin-bottom: 1.5rem;
}

.verify-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8B0000, rgb(98, 2, 117));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.glow-line {
  height: 2px;
  width: 80%;
  margin: 0 auto;
  background: linear-gradient(90deg, 
    rgba(139, 0, 0, 0), 
    rgba(139, 0, 0, 0.8), 
    rgba(139, 0, 0, 0)
  );
  position: relative;
}

.glow-line::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 10%;
  right: 10%;
  height: 6px;
  filter: blur(4px);
  background: rgba(139, 0, 0, 0.6);
}

.warning-section {
  background: rgba(20, 22, 30, 0.7);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(201, 173, 167, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.warning-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(139, 0, 0, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

.warning-icon {
  margin: 0 auto 1rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(139, 0, 0, 0.1);
  animation: pulse 2s infinite;
}

.verify-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F2E9E4;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.verify-description {
  color: #C9ADA7;
  line-height: 1.6;
  font-size: 1rem;
}

.verify-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.verify-button-confirm {
  background: linear-gradient(135deg, #8B0000, rgba(98, 2, 117, 0.9));
  color: #F2E9E4;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.verify-button-confirm::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  height: 200%;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(30deg);
  transition: transform 0.5s ease;
}

.verify-button-confirm:hover::after {
  transform: rotate(30deg) translateX(200%);
}

.verify-button-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.5);
}

.verify-button-deny {
  background: transparent;
  color: #C9ADA7;
  border: 1px solid rgba(201, 173, 167, 0.3);
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.verify-button-deny:hover {
  background: rgba(43, 45, 66, 0.5);
  border-color: #C9ADA7;
}

.compliance-notice {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 173, 167, 0.1);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(201, 173, 167, 0.6);
  line-height: 1.4;
}

/* Discord-specific styles */
.discord-button {
  background: linear-gradient(to right, #5865F2, #4752C4) !important;
  border-color: #4752C4 !important;
}

.discord-button:hover {
  background: linear-gradient(to right, #4752C4, #3C45A5) !important;
}

.locked-badge {
  background: rgba(88, 101, 242, 0.8) !important; /* Discord color */
}

/* Update existing .locked-character styles to .discord-locked-character */
.discord-locked-character .character-image {
  filter: blur(4px) grayscale(50%);
}

.discord-locked-character:hover .character-image {
  filter: blur(2px) grayscale(30%);
} 