/* ==========================================================================
   Bandman Portfolio Style - Dark & Neon Pink
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Noto+Sans+JP:wght@400;700&display=swap');

/* CSS Variables */
:root {
  --color-bg-dark: #09090b;
  --color-bg-card: rgba(18, 18, 22, 0.75);
  --color-primary: #ff2a85; /* Neon Pink */
  --color-primary-glow: rgba(255, 42, 133, 0.45);
  --color-primary-dim: rgba(255, 42, 133, 0.15);
  --color-text-main: #ffffff;
  --color-text-sub: #a1a1aa;
  
  --font-en: 'Montserrat', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
}

/* Reset Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-bg-dark);
  color: var(--color-text-main);
  font-family: var(--font-jp);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}

/* Decorative Background Glows (Live Stage Atmosphere) */
body::before, body::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--color-primary);
  filter: blur(120px);
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

body::before {
  top: 15%;
  left: 10%;
}

body::after {
  bottom: 15%;
  right: 10%;
}

/* Main Container */
.container {
  width: 100%;
  max-width: 580px;
  padding: 24px;
  z-index: 10;
}

/* Profile Card */
.profile-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 42, 133, 0.2);
  border-radius: 24px;
  padding: 40px 32px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
              0 0 30px var(--color-primary-dim);
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 42, 133, 0.4);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6),
              0 0 40px rgba(255, 42, 133, 0.25);
}

/* Avatar Section */
.avatar-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
}

.avatar-glow {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #3b82f6);
  z-index: 1;
  opacity: 0.8;
  animation: rotateGlow 6s linear infinite;
}

.avatar {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: #18181b;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  overflow: hidden;
  border: 2px solid var(--color-bg-dark);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fallback/Placeholder style if no image */
.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #18181b, #27272a);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-primary);
}

.avatar-placeholder svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
  margin-bottom: 4px;
}

.avatar-placeholder span {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* Name and Title */
.profile-name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--color-text-main);
  transition: color 0.3s ease;
}

.profile-name-en {
  display: block;
  font-family: var(--font-en);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-sub);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2px;
}

.profile-title {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-dim);
  border: 1px solid rgba(255, 42, 133, 0.4);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 32px;
  box-shadow: 0 0 12px var(--color-primary-dim);
  text-shadow: 0 0 5px var(--color-primary-glow);
}

/* Profile Description */
.profile-bio {
  text-align: left;
  line-height: 1.8;
  color: var(--color-text-sub);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.profile-bio p {
  margin-bottom: 16px;
}

.profile-bio p:last-child {
  margin-bottom: 0;
}

/* Highlight Box (The Gap: Fluffy vs Cool) */
.gap-highlight {
  background: rgba(255, 42, 133, 0.05);
  border-left: 3px solid var(--color-primary);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  margin-top: 20px;
}

.gap-title {
  font-weight: 700;
  color: var(--color-text-main);
  font-size: 0.9rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gap-title svg {
  width: 16px;
  height: 16px;
  fill: var(--color-primary);
}

.gap-text {
  font-size: 0.9rem;
  color: var(--color-text-sub);
}

/* Capabilities (Icons showing Writing, Guitar, Vocal) */
.capability-tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-main);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--color-primary-dim);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.tag svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Animations */
@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .profile-card {
    padding: 32px 20px;
  }
  .profile-name {
    font-size: 1.75rem;
  }
  .profile-bio {
    font-size: 0.9rem;
  }
}
