/* Coding Club Section Styles */
.dev-team-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
  }
  
  .dev-team-section .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .dev-team-section h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--text-color);
    text-shadow: 3px 3px 0 var(--blue);
    letter-spacing: -2px;
    text-transform: uppercase;
    font-family: 'Audiowide', cursive;
    width: 100%;
    padding: 0 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .dev-team-section .card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
  }
  
  .dev-team-section .profile-card {
    width: 280px;
    background-color: var(--card-bg);
    border: 3px solid var(--blue);
    box-shadow: 8px 8px 0 var(--coral);
    padding: 20px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
  }
  
  .dev-team-section .profile-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 13px 13px 0 var(--coral);
  }
  
  .dev-team-section .profile-card.active {
    transform: translate(-8px, -8px);
    box-shadow: 16px 16px 0 var(--coral);
  }
  
  .dev-team-section .card-badge {
    color: var(--light);
    background-color: var(--purple);
    padding: 4px 8px;
    border: 2px solid var(--blue);
    box-shadow: 3px 3px 0 var(--coral);
    transform: rotate(-3deg);
    font-weight: bold;
    font-size: 0.8rem;
    z-index: 2;
    position: absolute;
    top: -10px;
    right: 20px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.6rem;
  }
  
  .dev-team-section .profile-img {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    border: 3px solid var(--blue);
    background-color: var(--purple);
  }
  
  .dev-team-section .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) contrast(120%);
    mix-blend-mode: lighten;
  }
  
  .dev-team-section .profile-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.3) 10px,
      rgba(255, 255, 255, 0.1) 10px,
      rgba(255, 255, 255, 0.1) 20px
    );
    opacity: 0.5;
    pointer-events: none;
  }
  
  .dev-team-section .profile-name {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 10px;
    letter-spacing: -1px;
    border-bottom: 3px solid var(--blue);
    padding-bottom: 5px;
    text-transform: uppercase;
    font-family: 'VT323', monospace;
  }
  
  /* Animated grid background specific to dev section */
  .dev-team-section .dev-grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--purple) 1px, transparent 1px),
      linear-gradient(90deg, var(--purple) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    animation: gridMove 20s linear infinite;
    z-index: 1;
    pointer-events: none;
  }
  
  /* Call to action button for potentially adding team members */
  .dev-team-section .team-cta-button {
    margin: 20px auto 0;
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 24px;
    background-color: var(--purple);
    color: var(--light);
    border: 3px solid var(--blue);
    box-shadow: 6px 6px 0 var(--coral);
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.9rem;
  }
  
  .dev-team-section .team-cta-button:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 var(--coral);
  }
  
  .dev-team-section .team-cta-button:active {
    transform: translate(0, 0);
    box-shadow: 0 0 0 var(--coral);
  }
  
  /* Animation keyframes */
  @keyframes gridMove {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(30px);
    }
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .dev-team-section h1 {
      font-size: 1.75rem;
    }
  }
  
  @media (max-width: 480px) {
    .dev-team-section h1 {
      font-size: 1.5rem;
      letter-spacing: -1px;
    }
  }