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

body {
  background-color: #000;
  min-height: 100vh;
  display: grid;
  place-content: center;
  font-family: system-ui, sans-serif;
}

/* Hide radio input elements */
input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Wrapper for circle elements */
.circle-wrapper {
  border: 1px solid #0f3e5d;
  position: relative;
  border-radius: 9999px; /* Fully rounded */
  display: grid;
  width: 450px;
  height: 450px;
  grid-template-areas: "stack";
  place-content: center;
}

/* Label styles inside the circle wrapper */
label {
  grid-area: stack;
  width: 5rem;
  height: 5rem;
  border-radius: 9999px; /* Fully rounded */
  border: 1px solid #738088;
  display: grid;
  place-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  color: #87ceeb;
  font-size: 1.25rem;
  transition-property: all;
  transition-duration: 0.5s;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2); /* White with 20% opacity */
}

/* Image styles */
img {
  border-radius: 9999px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease-in-out;
}

/* SVG styles */
svg {
  transition: all 0.5s ease-in-out;
  position: absolute;
  inset: 0 0 0 -25%;
  margin: auto;
  width: 125px;
  opacity: 0;
  z-index: -10;
}

/* Centered element styles */
.center-element {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 8rem;
  height: 8rem;
  background-color: #1b2c36;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%; /* Circle */
  display: grid;
  place-content: center;
  text-transform: uppercase;
  font-weight: 100;
  letter-spacing: 0.05em;
  color: #cbd5e0;
  font-size: 1.125rem;
}

/* Before pseudo-element for center-element */
.center-element::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  background-color: #0a4368;
  border-radius: 50%;
  z-index: -10;
  transition: all 1s;
}

/* Checked radio input styles */
input:checked + label {
  transform: none !important;
  transition-duration: 1s;
}

/* Image transform on checked */
input:checked + label > img {
  transform: scale(2);
}

/* SVG transform on checked */
input:checked + label > svg {
  opacity: 1;
  transform: scale(2.25) rotate(45deg);
  transition-delay: 700ms, 500ms, 2000ms;
}

/* Avatar transform styles */
.avatar {
  --radius: 14rem;
  --d: calc(var(--i) / var(--total));
  --r-offset: -0.15turn;
  --r-amount: 1turn;
  --r: calc((var(--r-amount) * var(--d)) + var(--r-offset));
  transform: rotate(var(--r)) translate(var(--radius)) rotate(calc(-1 * var(--r)));
} 

@media (max-width: 600px) {
    .circle-wrapper {
      width: 300px;
      height: 300px;
    }
  
    .center-element {
      width: 5rem;
      height: 5rem;
      font-size: 0.9rem;
    }
  
    label {
      width: 3rem;
      height: 3rem;
      font-size: 1rem;
    }
  
    svg {
      width: 80px;
    }
  
    .avatar {
      --radius: 9rem;
    }
  }
  
  @media (max-width: 400px) {
    .circle-wrapper {
      width: 240px;
      height: 240px;
    }
  
    .center-element {
      width: 4rem;
      height: 4rem;
      font-size: 0.75rem;
    }
  
    label {
      width: 2.5rem;
      height: 2.5rem;
      font-size: 0.875rem;
    }
  
    svg {
      width: 60px;
    }
  
    .avatar {
      --radius: 7rem;
    }
  }
  

/* Ensure circle-wrapper is centered */
.circle-wrapper {
  margin: 0 auto;
  position: relative;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  
  /* Responsive Design for Navbar */
  .navbar {
    background-color: #333;
    padding: 10px 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000; 
  }
  
  .branding {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .branding img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .club-name {
    font-size: 1.2em;
    font-weight: bold;
  }
  
  .menu-toggle {
    font-size: 1.5em;
    background: none;
    border: none;
    color: white;
    display: none;
    cursor: pointer;
    margin-left: auto;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-left: auto;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    transition: background 0.3s, color 0.3s;
  }
  
  .nav-links li a:hover {
    background-color: #555;
    border-radius: 5px;
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: #444;
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
      padding: 10px 0;
      gap: 15px;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  }

  /* Responsive Design for Footer */
  
.footer {
    background-color: #111;
    color: white;
    padding: 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    margin-top: auto;
  }
  
  .footer h3 {
    margin: 20px 0 10px;
    font-size: 1.2em;
    color: white;
  }
  
  .footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
  }
  
  .footer li {
    margin: 8px 0;
    color: white;
  }
  
  .footer a {
    text-decoration: none;
    color: orange;
    font-weight: bold;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  .social-icons {
    margin-top: 20px;
  }
  
  .social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: orange;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .footer {
      font-size: 0.9em;
      padding: 15px;
    }
  
    .footer ul {
      padding: 0 10px;
    }
  
    .footer li {
      text-align: left;
    }
  
    .social-icons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
    }
  
    .social-icons a {
      font-size: 1.3em;
    }
  }