* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #71d7ff, #5880ed, #55d71b, #93ff3d);
  background-size: 400% 400%;
  animation: gradientShift 25s ease infinite;
  color: #fff;
  text-align: center;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-icon {
  height: 1.5rem;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.75;
  transition: opacity 0.2s;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a.active {
  opacity: 1;
  color: #fff;
  text-decoration: underline;
}

.hero .logo {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.25rem;
}

.hero .tagline {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.8;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero .subtitle,
.page-title + .subtitle {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero--tall {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  width: 220px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s;
}

.team-card .team-desc {
  flex: 1;
}

.team-card .cta-button--small {
  margin-top: auto;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  border: 3px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.team-desc {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.cta-button--small {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

.profile-text {
  font-size: 1.1rem;
  opacity: 0.75;
}

.profile-page {
  max-width: 700px;
  width: 100%;
}

.profile-avatar {
  margin-bottom: 1.5rem;
}

.profile-avatar img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}

.profile-avatar--square img {
  border-radius: 0;
}

.profile-avatar--square {
  margin-bottom: 1.5rem;
}

.profile-header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.profile-tagline {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.profile-bio {
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.7;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
}

.profile-bio h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #71d7ff;
}

.bio-sub {
  font-size: 1.1rem;
  margin-top: 1.2rem;
  margin-bottom: 0.3rem;
  color: #93ff3d;
}

.profile-bio p {
  margin-bottom: 1rem;
}

.profile-bio ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.profile-bio li {
  margin-bottom: 0.3rem;
  opacity: 0.9;
}

.profile-signature {
  font-weight: 700;
  font-size: 1.1rem;
  color: #93ff3d;
  margin-bottom: 0 !important;
}

.profile-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.8rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.2s, background 0.2s;
}

.social-icon {
  height: 1.1rem;
  width: auto;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.playlist-section {
  margin-top: 2rem;
  text-align: center;
}

.playlist-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.playlist-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.playlist-card {
  display: block;
  width: 280px;
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s;
}

.playlist-card:hover {
  transform: translateY(-4px);
}

.playlist-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.playlist-card span {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.home-page {
  max-width: 750px;
  width: 100%;
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 1.5rem auto 0.5rem;
  opacity: 0.9;
}

.hero-more {
  display: inline-block;
  color: #fff;
  opacity: 0.6;
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  transition: opacity 0.2s;
}

.hero-more:hover {
  opacity: 1;
}

.banner {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
}

.banner p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.banner-link {
  color: #93ff3d;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.banner-link:hover {
  opacity: 0.8;
}

.section-card {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
  text-align: left;
}

.section-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.section-card--accent {
  border: 1px solid rgba(147, 255, 61, 0.2);
  text-align: center;
}

.section-card--accent h2 {
  color: #93ff3d;
}

.section-card--accent .cta-button {
  margin: 1rem 0;
}

.section-detail {
  text-align: left;
  margin-top: 0.5rem;
}

.section-note {
  font-style: italic;
  opacity: 0.7;
  font-size: 0.95rem !important;
}

.event-group {
  margin-bottom: 1.5rem;
}

.event-group:last-child {
  margin-bottom: 0;
}

.event-group h3 {
  font-size: 1.2rem;
  color: #71d7ff;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  text-align: center;
  opacity: 0.6;
  font-size: 0.9rem;
  padding-bottom: 2rem;
}

.section-teaser {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.project-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.project-card {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  width: 260px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #71d7ff;
}

.project-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.85;
  flex: 1;
}

.project-more {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #93ff3d;
}

.project-card--placeholder {
  opacity: 0.7;
}

.project-card--placeholder .project-more {
  color: #fff;
  opacity: 0.5;
}

.inline-link {
  color: #93ff3d;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.inline-link:hover {
  opacity: 0.8;
}

.social-link--highlight {
  background: rgba(147, 255, 61, 0.15);
  border-color: #93ff3d;
}

.social-link--highlight:hover {
  background: rgba(147, 255, 61, 0.3);
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}
