  *{
      padding: 0;
      margin: 0;
      box-sizing: border-box;
  }
    body {
      background-color: #000;
      color: #fff;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
      :root{
    --ig-bg:#0e0e16;
    --ig-card:#1a1924;
    --ig-card-border:#2a2940;
    --ig-muted:#bfbfd6;
    --ig-muted-2:#9b9bb2;
    --ig-chip-bg:#242338;
    --ig-chip-brd:#3a3956;
    --ig-chip-txt:#d5d5ef;
    --ig-title:#ffffff;
  }
    /* ===== NAVBAR TOP ===== */
    .top-nav {
      background: #0d0d0d;
      padding: 8px 5%;
      font-size: 0.9rem;
 
    }

    .top-nav a {
      color: #fff;
      margin-left: 20px;
      text-decoration: none;
      transition: 0.3s;
      font-weight: bold;
    }
    .top-nav a:hover {
      color: #f7c948;
    }

    /* ===== NAVBAR BOTTOM ===== */
    .main-nav {
      background: #0d0d0d;
      /*padding: 12px 5%;*/
    }
    .main-nav .navbar-brand {
      display: flex;
      align-items: center;
      font-size: 1.2rem;
      font-weight: bold;
      color: #f7c948 !important;
    }
    .main-nav .navbar-brand img {
      height: 45px;
      margin-right: 10px;
    }
    .main-nav .nav-link {
      color: #fff !important;
      border: 1px solid #f7c948;
      border-radius: 5px;
      padding: 3px 10px !important;
      margin:  5px;
      transition: 0.3s;
      font-weight: 500;
    }
    .main-nav .nav-link:hover {
      background: #f7c948;
      color: #000 !important;
    }
    .main-nav .nav-link.active {
      background: #f7c948;
      color: #000 !important;
    }
    /* Hero Section with Background Image */
    .hero-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 60px 0;
      background: url("images/hero-bg.png") no-repeat center center/cover;
      position: relative;
    }
    /* Dark overlay for readability */
   
    .hero-text {
      position: relative;
      z-index: 2;
      max-width: 650px;
    }
    .hero-text h1 {
      font-size: 3rem;
      font-weight: 700;
    }
     .hero-text1 h1 {
      font-size: 5rem;
      font-weight: 700;
    }
  
    .highlight {
      color: #f7c948;
    }
    .tag-line {
      background: #000;
      border: 1px solid #f7c948;
      display: inline-block;
      padding: 6px 15px;
      border-radius: 50px;
      font-size: 0.9rem;
      margin-bottom: 20px;
      color: white;
    }
    .category-btn {
      border: 1px solid #fff;
      border-radius: 50px;
      background: transparent;
      color: #fff;
      padding: 2px 10px;
      margin: 5px;
      cursor: pointer;
      transition: all 0.3s;
    }
    .category-btn:hover, .category-btn.active {
      /*background: #f7c948;*/
      /*color: #000;*/
      border-color: #f7c948;
    }
    .search-box {
      background: #0d0d0d;
      border: 1px solid #444;
      border-radius: 8px;
      padding: 8px 15px;
      margin-top: 15px;
      width: 100%;
      color: #fff;
      font-size: 11px;
    }
    .search-box::placeholder {
      color: #aaa;
    }
    
    @media screen and (max-width:780px){
         .hero-section {
      min-height: auto !important;
      display: flex;
      align-items: center;
      padding: 20px 0;
      background: url("images/hero-bg.png") no-repeat center center/cover;
      position: relative;
      
    }
    }
    
       @media screen and (max-width: 480px) {
      .hero-text1 h1 {
      font-size: 3rem;
      font-weight: 700;
    }
    }
    
      /* Title */
  .ig-title{
    font-weight:800;
    font-size:clamp(28px, 3.2vw, 40px);
    letter-spacing:.4px;
    color:var(--ig-title);
    text-align:center;
    margin:28px 0;
  }

  /* Grid spacing like screenshot */
  .ig-grid{ row-gap:28px; }

  /* Card */
 .ig-inductee {
  position: relative; /* needed for overlay positioning */
  background: var(--ig-card);
  border: 1px solid var(--ig-card-border);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
  .ig-inductee:hover{ transform:translateY(-4px); box-shadow:0 10px 22px rgba(0,0,0,.35); }

.ig-inductee:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 10px 22px rgba(0,0,0,.35);
}

/* Image */
.ig-inductee .ig-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.ig-inductee .ig-photo1 {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
/* Overlay layer */
.ig-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45); /* semi-transparent */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}

/* Show overlay on hover */
.ig-inductee:hover .ig-overlay {
  opacity: 1;
}

/* Button inside overlay */
.ig-view-profile {
  padding: 8px 25px;
  border-radius: 999px;
  background: #d8a13f;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.ig-view-profile:hover {
  background: #f1f1f1;
  transform: scale(1.05);
}
  .ig-inductee .ig-body{
    padding:14px 14px 12px;
    display:flex;
    flex-direction:column;
    gap:8px;
  }

  .ig-name{
    font-weight:700;
    font-size:16px;
    line-height:1.2;
  }

  .ig-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    font-size:12.5px;
    color:var(--ig-muted);
  }
  .ig-role{ color:var(--ig-muted); }
  .ig-year{ color:var(--ig-muted-2); white-space:nowrap; }

  .ig-chips{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:2px;
  }
  .ig-chip{
    background:var(--ig-chip-bg);
    border:1px solid var(--ig-chip-brd);
    color:var(--ig-chip-txt);
    font-size:12px;
    line-height:1;
    padding:8px 10px;
    border-radius:999px;
  }

  /* Footer button */
  .ig-see-more{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:10px 18px;
    border-radius:999px;
    border:1px solid var(--ig-chip-brd);
    background:var(--ig-chip-bg);
    color:var(--ig-chip-txt);
    font-weight:600;
    margin:26px auto 40px;
    transition:transform .15s ease, background .15s ease, border-color .15s ease;
    text-decoration:none;
  }
  .ig-see-more:hover{ transform:translateY(-1px); background:#2c2b44; border-color:#50507a; color:#f0f0ff; }

  /* Make 4 cards per row on lg like screenshot */
  @media (min-width: 992px){
    .ig-col-lg-3{ padding-left:12px; padding-right:12px; }
    .ig-grid{ row-gap:26px; }
  }
  
  
  
      .hof-section-title {
      font-weight: 700;
      font-size: 1.8rem;
      text-align: left !important;
      margin-bottom: 2.5rem;
    }

/* Event Cards */
.hof-event-card {
  background-color: #1a1923;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  min-height: 170px; /* Ensure uniform height */
  display: flex;
  flex-direction: column;
}

.hof-event-date {
  color: #f5b83a;
  font-weight: 600;
  font-size: 0.95rem;
}

.hof-event-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between; /* Push description to bottom, title stays at top */
}

.hof-event-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 6px;
}

.hof-event-desc {
  font-size: 0.88rem;
  color: #cccccc;
  margin-top: 6px;
}

.hof-btn-calendar {
  background-color: #2a253b !important;
  color: #b5aef0 !important;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 20px;
  margin-top: 20px;
  border: 1px solid #b5aef0 !important;
}

    /* Highlight Sections */
    .hof-highlight-box {
      background-color: #1a1923;
      border-radius: 12px;
      padding: 25px;
      height: 100%;
    }

    .hof-highlight-title {
      color: #f5b83a;
      font-weight: 700;
      font-size: 1.2rem;
      margin-bottom: 8px;
    }

    .hof-highlight-sub {
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 8px;
    }

    .hof-highlight-desc {
      font-size: 1.0rem;
      padding-top: 3px;
      color: #cccccc;
      font-weight: 500;
    }

    .hof-btn-nomination, .hof-btn-member {
      background-color: #f5b83a;
      color: #000;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.9rem;
      padding: 6px 18px;
      border: none;
      margin-top: 14px;
    }

    .hof-btn-donate {
      background-color: #b5aef0;
      color: #000;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.9rem;
      padding: 6px 18px;
      border: none;
      margin-top: 14px;
    }

    .hof-highlight-box ul {
      padding-left: 1.2rem;
      margin: 0;
      font-size: 0.9rem;
      color: #ccc;
    }

    .hof-title-text {
      text-align: center;
      font-size: 4rem !important;
      font-weight: 700;
      
      color: #f5b83a;
      margin-bottom: 3rem;
      letter-spacing: 25px !important;
    }

    /* MERCH Section */
    .hof-merch-section {
      position: relative;
      overflow: hidden;
      text-align: center;
      background: #0e0c15;
      padding: 3rem 0;
    }

    .hof-merch-bg-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 20vw;
      font-weight: 800;
      font-family: 'Arial Black', sans-serif;
      color:#494b4f;
      white-space: nowrap;
      width: 100%;
      text-align: center;
      line-height: 1;
      z-index: 1;
    }

    .hof-merch-img {
      position: relative;
      z-index: 2;
      max-width: 750px;
      width: 100%;
    }

    .hof-btn-shop {
      background-color: #6c4bcf;
      color: #fff;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 500;
      padding: 10px 30px;
      border: none;
      margin-top: 20px;
    }

    /* Member & Support Boxes */
    .hof-support-box {
      background: #1c1930;
      border-radius: 12px;
      padding: 2rem;
      color: #fff;
      height: 100%;
    }

    .hof-support-title {
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: .25rem;
    }

    .hof-support-sub {
      font-size: 1rem;
      color: #ccc;
      margin-bottom: 1rem;
    }

    .hof-check-list {
      list-style: none;
      padding: 0;
      margin-bottom: 1.5rem;
    }

    .hof-check-list li {
      margin-bottom: .5rem;
      display: flex;
      align-items: center;
      font-size: 0.95rem;
    }

    .hof-check-list i {
      color: #f7b731;
      margin-right: .5rem;
    }

    /* Buttons */
    .hof-btn-member {
      background-color: #f7b731;
      color: #000;
      border-radius: 50px;
      padding: 8px 20px;
      border: none;
    }

    .hof-btn-donate {
      background-color: #6c4bcf;
      color: #fff;
      border-radius: 50px;
      padding: 8px 20px;
      border: none;
    }

    /* Subscribe */
    .hof-subscribe {
      text-align: center;
      padding: 3rem 0;
    }

    .hof-subscribe h4 {
      font-weight: 700;
      color: #fff;
    }

    .hof-subscribe p {
      color: #ccc;
    }

    .hof-subscribe-input {
    display: inline-flex;
    margin-top: 1rem;
    border: 1px solid #fff;
    outline: none;
     border-radius: 50px;
     width: 100%;
    max-width: 380px;
    background-color: #1a1a1a;
    color: #fff;
  }

  .hof-subscribe-input input {
    padding: 10px 15px;
    border-radius: 50px 0 0 50px;
    border:none;
    outline: none;
    width: 95%;
    max-width: 350px;
    background-color: transparent;
    color: #fff;
  }

  .hof-subscribe-input button {
    background-color: #f7b731;
    border: none;
    padding: 13px;
    border-radius: 50px;
    color: #000;
    margin: 3px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
  }
  @media screen and (max-width:780px){
    
 .hof-subscribe-input {
    display: flex;
    margin-top: 1rem;
    border: 1px solid #fff;
    outline: none;
     border-radius: 50px;
     width: 100%;
    /*max-width: 380px;*/
    background-color: #1a1a1a;
    color: #fff;
  }
  .hof-subscribe-input input {
    padding: 10px 15px;
    border-radius: 50px 0 0 50px;
    border:none;
    outline: none;
    width: 60%;
    /*max-width: 350px;*/
    background-color: transparent;
    color: #fff;
  }
  }

    /* Footer */
    .hof-footer-strip {
      background-color: #f7b731;
      color: #000;
      font-weight: 500;
      font-size: 0.9rem;
      text-align: center;
      padding: 0.5rem 0;
    }

    @media (max-width: 768px) {
      .hof-title-text {
        font-size: 1.5rem;
        letter-spacing: 6px;
      }
      
      .hof-merch-bg-text {
        font-size: 4rem;
      }
      
      .hof-subscribe-input {
        flex-direction: column;
        align-items: center;
      }
      
      .hof-subscribe-input input {
        border-radius: 50px;
        margin-bottom: 1rem;
        min-width: unset;
        width: 100%;
        max-width: 300px;
      }
      
      .hof-subscribe-input button {
        border-radius: 50px;
        padding: 10px 20px;
      }
    }
    
    
        .hof-section-title {
      font-weight: 700;
      font-size: 1.8rem;
      text-align: center;
      margin-bottom: 2.5rem;
    }

    /* Event Cards */
    /*.hof-event-card {*/
    /*  background-color: #1a1923;*/
    /*  border-radius: 12px;*/
    /*  padding: 20px;*/
    /*  margin-bottom: 20px;*/
    /*}*/

    /*.hof-event-date {*/
    /*  color: #f5b83a;*/
    /*  font-weight: 600;*/
    /*  font-size: 0.95rem;*/
    /*}*/

    /*.hof-event-title {*/
    /*  font-size: 1.05rem;*/
    /*  font-weight: 700;*/
    /*  margin-top: 6px;*/
    /*}*/

    /*.hof-event-desc {*/
    /*  font-size: 0.88rem;*/
    /*  color: #cccccc;*/
    /*  margin-top: 6px;*/
    /*}*/

    /*.hof-btn-calendar {*/
    /*  background-color: #2a253b;*/
    /*  color: #b5aef0;*/
    /*  border-radius: 10px;*/
    /*  font-size: 0.9rem;*/
    /*  font-weight: 500;*/
    /*  padding: 6px 20px;*/
    /*  margin-top: 20px;*/
    /*}*/

    /* Highlight Sections */
    .hof-highlight-box {
      background-color: #1a1923;
      border-radius: 12px;
      padding: 25px;
      height: 100%;
    }

    .hof-highlight-title {
      color: #f5b83a;
      font-weight: 700;
      font-size: 1.2rem;
      margin-bottom: 8px;
    }

    .hof-highlight-sub {
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 8px;
    }

    .hof-highlight-desc {
      font-size: 0.9rem;
      color: #cccccc;
    }

    .hof-btn-nomination, .hof-btn-member {
      background-color: #f5b83a;
      color: #000;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.9rem;
      padding: 6px 18px;
      border: none;
      margin-top: 14px;
    }

    .hof-btn-donate {
      background-color: #b5aef0;
      color: #000;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.9rem;
      padding: 6px 18px;
      border: none;
      margin-top: 14px;
    }

    .hof-highlight-box ul {
      padding-left: 1.2rem;
      margin: 0;
      font-size: 0.9rem;
      color: #ccc;
    }

    .hof-title-text {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      color: #f5b83a;
      margin-top: 3rem;
      letter-spacing: 12px;
    }

    /* MERCH Section */
    .hof-merch-section {
      position: relative;
      overflow: hidden;
      text-align: center;
      background: transparent;
      /*padding: 3rem 0;*/
    }

    .hof-merch-bg-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 25vw;
      font-weight: 800;
      font-family: 'Arial Black', sans-serif;
      color: rgba(255, 255, 255, 0.05);
      white-space: nowrap;
      width: 100%;
      text-align: center;
      line-height: 1;
      z-index: 1;
    }

    .hof-merch-img {
      position: relative;
      z-index: 2;
      max-width: 750px;
      width: 100%;
    }

    /*.hof-btn-shop {*/
    /*  background-color: #6c4bcf;*/
    /*  color: #fff;*/
    /*  border-radius: 50px;*/
    /*  font-size: 1rem;*/
    /*  font-weight: 500;*/
    /*  padding: 10px 30px;*/
    /*  border: none;*/
    /*  margin-top: 20px;*/
    /*}*/

    /* Member & Support Boxes */
    .hof-support-box {
      background: #1c1930;
      border-radius: 12px;
      padding: 2rem;
      color: #fff;
      height: 100%;
    }

    .hof-support-title {
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: .25rem;
    }

    .hof-support-sub {
      font-size: 1rem;
      color: #ccc;
      margin-bottom: 1rem;
    }

    .hof-check-list {
      /*list-style: none;*/
      padding: 0;
      margin-bottom: 1.5rem;
    }

    .hof-check-list li {
      margin-bottom: .5rem;
      display: flex;
      align-items: center;
      font-size: 0.95rem;
    }

    .hof-check-list i {
      color: #f7b731;
      margin-right: .5rem;
    }

    /* Buttons */
    .hof-btn-member {
      background-color: #f7b731;
      color: #000;
      border-radius: 50px;
      padding: 8px 20px;
      border: none;
    }

    .hof-btn-donate {
      background-color: transparent;
      color: #fff;
      border-radius: 8px;
      padding: 8px 20px;
      border: 1px solid #f7b731;
    }

    /* Subscribe */
    
        /* Criteria box */
   .criteria-box {
  background: #1b1b21;
  padding: 25px 30px;
  border-radius: 12px;
  margin-bottom: 35px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.criteria-box h4 {
  font-size: 30px;
  font-weight: bolder;
  text-transform: uppercase;
  color: #d8a13f;
  min-width: 200px; /* keeps left title narrow */
  margin: 0;
  line-height: 1.3;
}

.criteria-box ul {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
}

    /* Form sections */
    .form-section {
      background: #1b1b21;
      padding: 25px;
      border-radius: 14px;
      margin-bottom: 25px;
    }
    .form-section h5 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    /* Labels */
    .field-label {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 6px;
    }
    .field-label span {
      color: #aaa;
      font-size: 12px;
    }

    /* Inputs */
    .custom-input,
    .custom-textarea
   {
      background: transparent;
      border: 1px solid #3a3a3f;
      border-radius: 8px;
      color: #fff;
      font-size: 14px;
      padding: 10px 14px;
    }
     .custom-select {
      background: transparent;
      border: 1px solid #3a3a3f;
      border-radius: 8px;
         color: white;
    }
    .custom-input:focus,
    .custom-textarea:focus,
    .custom-select:focus {
      border-color: #d8a13f;
      color: white;
      font-size: 14px;
      padding: 10px 14px;
      box-shadow: none;
      outline: none;
      background: transparent;
   
    }
    .custom-select option{
        color: Black;
    }
    .custom-textarea {
      resize: none;
    }
    ::placeholder {
      color: #666;
      font-size: 13px;
    }

    /* File upload */
    .file-label {
      border: 1px solid #3a3a3f;
      border-radius: 8px;
      padding: 10px 14px;
      color: #777;
      font-size: 14px;
      cursor: pointer;
    }
    input[type="file"] {
      display: none;
    }

    /* Checkboxes */
    .form-check-input {
      background-color: transparent;
      border: 1px solid #555;
    }
    .form-check-input:checked {
      background-color: #d8a13f;
      border-color: #d8a13f;
    }
    .form-check-label {
      font-size: 13px;
      color: #aaa;
    }

    /* Button */
    .submit-btn {
      background: #d8a13f;
      border: none;
      color: #000;
      font-weight: 600;
      font-size: 15px;
      padding: 12px 20px;
      border-radius: 6px;
      width: 100%;
      transition: all 0.3s;
    }
    .submit-btn:hover {
      background: #b8832d;
      color: #fff;
    }
    
    
     .you-rock {
      font-family: 'Luckiest Guy', cursive;
      font-size: 80px;
      text-transform: uppercase;
      margin-bottom: 25px;
      line-height: 1;
      display: inline-block;
      position: relative;
    }

    .you-rock span {
      display: block;
      transform: rotate(-2deg); /* little tilt */
      letter-spacing: 2px;
    }

    .you-rock span:first-child {
      color: #fff;
      transform: rotate(-5deg) translateX(-10px); /* wave style */
    }

    .you-rock span:last-child {
      color: #d8a13f;
      transform: rotate(5deg) translateX(10px); /* opposite tilt for ROCK */
      margin-top: -20px; /* overlap */
    }

    /* Success Message */
    .success-message {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 15px;
    }

    /* Details text */
    .details-text {
      font-size: 14px;
      color: #bbb;
      max-width: 600px;
      margin: 0 auto 30px auto;
      line-height: 1.7;
    }

    /* Button */
    .success-btn {
      background: #d8a13f;
      color: #000;
      font-weight: 600;
      font-size: 15px;
      padding: 12px 28px;
      border-radius: 6px;
      border: none;
      transition: 0.3s;
    }
    .success-btn:hover {
      background: #b8832d;
      color: #fff;
    }
    
    
    
    
            .year-item {
            color: #d3d3d3;
            font-size: 24px;
            padding: 10px 0;
            font-weight: bolder;
        }
        .year-highlight {
            color: #ffd700;
            font-weight: bolder;
        }
        .arrow {
            color: #a0a0a0;
            font-size: 20px;
            font-weight: bolder;
        }
    
        .subheading {
    font-size: 24px; /* Adjusted to match the smaller "ELITE LEVEL STEPPERS" text */
    font-weight: 600; /* Medium-bold weight */
    margin-bottom: 10px; /* Adjusted spacing */
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #d4af37; /* Gold color matching the image */
    font-family: Arial, Helvetica, sans-serif;
}

.title {
    font-size: 96px; /* Adjusted to match the large "HALL OF FAME" text */
    font-weight: 900; /* Extra-bold weight */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 4px; /* Adjusted for wider spacing */
    line-height: 0.9; /* Tightened line height for bold effect */
    color: #d4af37; /* Gold color matching the image */
    font-family: Arial, Helvetica, sans-serif;
}

.description {
    font-size: 16px; /* Adjusted to match the smaller description text */
    font-weight: 400; /* Normal weight */
    max-width: 500px; /* Adjusted to match image width */
    margin-top: 20px; /* Adjusted spacing */
    color: #ffffff; /* White text for description */
    line-height: 1.4; /* Adjusted for better readability */
}
    
    
    
    /* Unique Classes */
    .hof-card {
      background: #1a1a1f;
      border: 1px solid #2a2a30;
      border-radius: 10px;
      padding: 20px;
    }
    .hof-btn-yellow {
      background-color: #f9b300;
      border: none;
      color: #000;
      font-weight: 600;
    }
    .hof-btn-dark {
      background-color: #2a2a30;
      border: none;
      color: #fff;
    }
    .hof-tag {
      background: #2a2a30;
      color: #eaeaea;
      border-radius: 20px;
      padding: 4px 12px;
      font-size: 14px;
      margin-right: 6px;
      display: inline-block;
    }
    .hof-highlight {
      background: #2a2a30;
      padding: 8px 15px;
      border-radius: 10px;
      font-size: 14px;
      display: inline-block;
      width: 100%;
      /*margin: 6px;*/
    }
    .hof-quote {
      background: #101014;
      border-left: 4px solid #f9b300;
      padding: 12px 18px;
      font-style: italic;
      border-radius: 6px;
      margin-top: 15px;
    }
    .hof-media img {
      border-radius: 10px;
      width: 100%;
      height: auto;
    }
    .hof-label {
      position: absolute;
      bottom: 15px;
      left: 15px;
      background: #f9b300;
      color: #000;
      padding: 6px 14px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
    }
    .hof-milestones li {
      margin-bottom: 12px;
    }
    .hof-section-title {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 15px;
    }
    .hof-badge {
      background: #2a2a30 !important;
      color: #fff !important;
      font-size: 12px;
      border-radius: 6px;
      padding: 4px 8px;
    }