
/* Base styles */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0b1c2d;
  color: #f5f7fa;
  line-height: 1.6;
}

header {
  background: linear-gradient(
    270deg,
    #0051BA,   /* Weezer blue */
    #0b1c2d,   /* deep navy for contrast */
    #f28c28,   /* orange */
    #0051BA
  );
  background-size: 600% 600%;
  animation: gradientShift 20s ease infinite;

  padding: 3rem 2rem;
  text-align: center;
  border-bottom: 4px solid #f28c28;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}
header h1 {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

header p {
  margin-top: 0.5rem;
  color: #f28c28;
  letter-spacing: 1px;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  background-color: #132a40;
}

nav a {
  color: #f5f7fa;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #f28c28;
}

/* Main content */
main {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #132a40;
  color: #aaa;
  font-size: 0.9rem;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* OC Grid */
.oc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

/* OC Card */
.oc-card {
  background: #132a40;
  border-left: 6px solid #f28c28;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(242, 140, 40, 0.35);
}

/* OC Text */
.oc-card h2 {
  margin-top: 0;
  color: #f5f7fa;
}

.oc-role {
  color: #f28c28;
  font-style: italic;
  margin-bottom: 1rem;
}

.oc-info {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.oc-info li {
  margin-bottom: 0.4rem;
}

.oc-desc {
  opacity: 0.9;
}
.featured {
  max-width: 900px;
  margin: 2rem auto;
  text-align: center;
}

.featured img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.featured img {
  transition: opacity 0.6s ease-in-out;
}
