@tailwind base;
@tailwind components;
@tailwind utilities;

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

* { 
  font-family: 'Inter', sans-serif; 
}

/* Base Neon-Cyan Variables */
:root {
  --c1: #00ffff; /* Neon Cyan */
  --c2: #0891b2; /* Deep Cyan */
  --c3: #22d3ee; /* Light Cyan */
  
  --glass-bg: rgba(5, 5, 8, 0.6);
  --glass-hover: rgba(10, 10, 15, 0.8);
  
  --stroke: rgba(0, 255, 255, 0.15);
  --stroke-glow: rgba(0, 255, 255, 0.4);
  
  --textDim: rgba(255, 255, 255, 0.6);
}

body {
  background-color: #030305;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(8, 145, 178, 0.03) 0%, transparent 50%);
}

/* ========================================= */
/* GLASS & CYAN DROP SHADOW CORE STRUCTURE   */
/* ========================================= */

.glass, .bento-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--stroke);
  
  /* The Cyan Drop Shadow */
  box-shadow: 0 8px 32px 0 rgba(0, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-hover:hover, .bento-card:hover {
  background: var(--glass-hover);
  border-color: var(--stroke-glow);
  transform: translateY(-2px);
  /* Intensified Cyan Glow on Hover */
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.25);
  z-index: 10;
}

/* ========================================= */
/* TEXT & GRADIENTS                          */
/* ========================================= */

.gradient-text {
  background: linear-gradient(135deg, #00ffff 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes float { 
  0%,100% { transform:translateY(0) } 
  50% { transform:translateY(-8px) } 
}
.float-animation { 
  animation: float 4s ease-in-out infinite; 
}

.tag {
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
}

/* ========================================= */
/* INPUTS & FIXING CHROME'S YELLOW AUTOFILL  */
/* ========================================= */

.input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px 16px;
  outline: none;
  color: white;
  transition: all 0.2s ease;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.input:focus { 
  border-color: var(--c1); 
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 1px var(--c1), 0 0 15px rgba(0, 255, 255, 0.15); 
}

/* Kills the ugly yellow background when Chrome autofills passwords */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #050508 inset !important;
  -webkit-text-fill-color: white !important;
  transition: background-color 5000s ease-in-out 0s;
  border-color: rgba(0, 255, 255, 0.3) !important;
}

select.input option { 
  background: #050505; 
  color: #fff; 
}

/* ========================================= */
/* BUTTONS & INTERACTIONS                    */
/* ========================================= */

.btn {
  border-radius: 8px;
  padding: 12px 16px;
  transition: 0.2s ease;
  border: 1px solid rgba(255,255,255,0.1);
