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

/* Custom keyframes for splash screen & interactive elements */
@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(6, 182, 212, 0.7);
  }
}

@keyframes floatSoft {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

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

.animate-pulse-glow {
  animation: pulseGlow 2.5s infinite ease-in-out;
}

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

.animate-diagonal-float {
  animation: diagonalMove 6s infinite ease-in-out;
}

/* Dynamic SVG Shirt Transition */
.shirt-svg-path {
  transition: fill 0.4s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Standard Page Screen Container */
.page-screen {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}




/* Glassmorphic Cyber Cards */
.cyber-card {
  background: rgba(19, 27, 46, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cyber-card:hover {
  background: rgba(26, 36, 61, 0.85);
  border-color: rgba(56, 189, 248, 0.4);
}

.cyber-card.selected-card {
  background: rgba(30, 41, 74, 0.95);
  border-color: #38bdf8;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.25);
}

