/* AdBlock Network - Custom Premium Stylesheet (Dark Tech Theme) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800;900&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
  --color-dark-bg: #09090b;
  --color-card-bg: #121216;
  --color-neon-red: #ff0055;
  --color-electric-blue: #00d2ff;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--color-dark-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-tech {
  font-family: 'Space Grotesk', sans-serif;
}

/* Background Radial Glows */
.bg-radial-gradient {
  background: radial-gradient(circle at 50% 30%, #1e1b4b 0%, #09090b 70%);
}

.glow-red {
  box-shadow: 0 0 40px rgba(255, 0, 85, 0.15);
}

.glow-blue {
  box-shadow: 0 0 40px rgba(0, 210, 255, 0.15);
}

.text-glow-red {
  text-shadow: 0 0 15px rgba(255, 0, 85, 0.6);
}

.text-glow-blue {
  text-shadow: 0 0 15px rgba(0, 210, 255, 0.6);
}

/* Neon Borders & Accents */
.border-neon-red {
  border-color: rgba(255, 0, 85, 0.3);
  box-shadow: 0 0 15px rgba(255, 0, 85, 0.1);
  transition: all 0.3s ease;
}
.border-neon-red:hover {
  border-color: var(--color-neon-red);
  box-shadow: 0 0 25px rgba(255, 0, 85, 0.25);
}

.border-neon-blue {
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.1);
  transition: all 0.3s ease;
}
.border-neon-blue:hover {
  border-color: var(--color-electric-blue);
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.25);
}

/* Glassmorphism Panels */
.glass-panel {
  background: rgba(18, 18, 22, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Metallic Shield Styling */
.shield-container {
  perspective: 1000px;
}

.shield-svg {
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.shield-container:hover .shield-svg {
  transform: rotateY(15px) rotateX(10px) scale(1.05);
}

.shield-metal-gradient {
  background: linear-gradient(135deg, #374151 0%, #111827 50%, #1f2937 100%);
}

/* Padlock glowing anims */
.padlock-lock {
  transform-origin: center;
  transition: transform 0.3s ease;
}

.shield-container:hover .padlock-lock {
  transform: translateY(-2px) scale(1.02);
}

/* Glowing Neon Line Grid (Symmetric Background) */
.grid-lines-bg {
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
}

/* Interactive Table Highlights */
.table-pro-row {
  background: linear-gradient(90deg, rgba(0, 210, 255, 0.02) 0%, rgba(255, 0, 85, 0.02) 100%);
}

.table-pro-row:hover {
  background: linear-gradient(90deg, rgba(0, 210, 255, 0.05) 0%, rgba(255, 0, 85, 0.05) 100%);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-dark-bg);
}

::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3f3f46;
  border-shadow: 0 0 10px var(--color-electric-blue);
}

/* Pulse Glows */
@keyframes pulseGlowRed {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 0, 85, 0.2); }
  50% { box-shadow: 0 0 30px rgba(255, 0, 85, 0.5); }
}

@keyframes pulseGlowBlue {
  0%, 100% { box-shadow: 0 0 15px rgba(0, 210, 255, 0.2); }
  50% { box-shadow: 0 0 30px rgba(0, 210, 255, 0.5); }
}

.animate-pulse-red {
  animation: pulseGlowRed 3s infinite ease-in-out;
}

.animate-pulse-blue {
  animation: pulseGlowBlue 3s infinite ease-in-out;
}

/* Float animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.animate-float {
  animation: float 4s infinite ease-in-out;
}

/* 3D button glows */
.btn-neon-glow-red {
  position: relative;
  z-index: 1;
}
.btn-neon-glow-red::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-neon-red), #e11d48);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: blur(12px);
}
.btn-neon-glow-red:hover::before {
  opacity: 0.75;
}

.btn-neon-glow-blue {
  position: relative;
  z-index: 1;
}
.btn-neon-glow-blue::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-electric-blue), #0284c7);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: blur(12px);
}
.btn-neon-glow-blue:hover::before {
  opacity: 0.75;
}
