<style>
    .badge-flex-container {
      display: flex;
      gap: 60px;
      justify-content: center;
      flex-wrap: wrap;
      padding: 0px 20px 60px 20px;
      background-color: transparent;
    }

    .dofe-premium-badge {
      width: 250px;
      height: 250px;
      /* Metallic Gold Gradient */
      background: linear-gradient(135deg, #FFD700 0%, #FFB900 50%, #FFD700 100%);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      box-sizing: border-box;
      position: relative;

      /* Heavy Navy Outer & High-End Shadow */
      border: 12px solid #1d2b53;
      box-shadow:
        0 10px 20px rgba(0,0,0,0.2),
        inset 0 0 15px rgba(255,255,255,0.5); /* Inner Glow */

      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      cursor: pointer;
      padding: 20px;
    }

    /* The "Stitched Patch" Inner Ring */
    .dofe-premium-badge::after {
      content: '';
      position: absolute;
      top: 5px; left: 5px; right: 5px; bottom: 5px;
      border: 1px dashed rgba(29, 43, 83, 0.3);
      border-radius: 50%;
      pointer-events: none;
    }

    .dofe-premium-badge:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .badge-header-text {
      font-family: Arial, sans-serif;
      font-size: 14px;
      font-weight: 900;
      color: #1d2b53;
      text-transform: uppercase;
      line-height: 1.1;
      margin-bottom: 8px;
      letter-spacing: 0.5px;
    }

    .section-physical {
      font-family: Arial, sans-serif;
      font-size: 34px;
      font-weight: 900;
      color: #1d2b53;
      text-transform: uppercase;
      margin: 2px 0;
      letter-spacing: -1px;
      text-shadow: 1px 1px 0px rgba(255,255,255,0.4);
    }

    .section-volunteering {
      font-family: Arial, sans-serif;
      font-size: 22px;
      font-weight: 900;
      color: #1d2b53;
      text-transform: uppercase;
      margin: 2px 0;
      letter-spacing: 1px;
      text-shadow: 1px 1px 0px rgba(255,255,255,0.4);
    }

    /* Custom size for Leadership to fit nicely */
    .section-leadership {
      font-family: Arial, sans-serif;
      font-size: 30px;
      font-weight: 900;
      color: #1d2b53;
      text-transform: uppercase;
      margin: 2px 0;
      letter-spacing: 0.5px;
      text-shadow: 1px 1px 0px rgba(255,255,255,0.4);
    }

    /* Just Karate Logo Styling */
    .just-karate-badge-logo {
      font-family: Arial, sans-serif;
      font-size: 21px;
      font-weight: bold;
      margin-top: 12px;
      padding: 6px 16px;
      background: #1d2b53;
      border-radius: 4px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .jk-white { color: #ffffff; }
    .jk-gold { color: #FFD700; }

    .copyright-footer {
      text-align: center;
      font-family: Arial, sans-serif;
      font-size: 13px;
      color: #888;
      margin-top: 50px;
    }
</style>