@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;700;900&display=swap');

:root{
  /* DARKER LOGO-STYLE LIME */
  --lime-main:#4DFF00;
  --lime-dark:#2FB800;
  --lime-glow:#4dff0060;

  --dark:#020403;
  --dark2:#050907;
  --panel:#0B140F;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'DM Sans',sans-serif;
}

body{
  background:
    radial-gradient(circle at top,#0f2016,#020403);
  color:#fff;
  overflow-x:hidden;
}

/* ================= HEADER ================= */

header{
  background:rgba(2,4,3,.92);
  backdrop-filter:blur(20px);
  border-bottom:1px solid #173a25;
  padding:26px 80px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:sticky;
  top:0;
  z-index:1000;
}

/* BIG LOGO */
header img{
  height:70px;
  filter:
    drop-shadow(0 6px 18px var(--lime-glow));
  transition:.4s;
}

header img:hover{
  transform:scale(1.06);
}

nav a{
  margin-left:42px;
  font-weight:600;
  letter-spacing:.4px;
  color:#fff;
  position:relative;
  transition:.3s;
}

nav a:hover{
  color:var(--lime-main);
}

nav a:after{
  content:'';
  position:absolute;
  left:0;
  bottom:-9px;
  width:0;
  height:2px;
  background:linear-gradient(90deg,var(--lime-dark),var(--lime-main));
  transition:.4s;
}

nav a:hover:after{
  width:100%;
}

/* ================= PREMIUM BUTTON ================= */

.btn{
  background:
    linear-gradient(145deg,
    var(--lime-main),
    var(--lime-dark));

  color:#020403;

  padding:16px 44px;
  border-radius:55px;

  font-weight:800;
  letter-spacing:.6px;
  text-transform:uppercase;

  display:inline-block;

  border:1px solid #1d4d14;

  box-shadow:
    inset 0 2px 0 #ffffff55,
    inset 0 -3px 0 #1f6b10,
    0 18px 35px var(--lime-glow);

  transition:.35s;
}

.btn:hover{
  transform:translateY(-3px);

  box-shadow:
    inset 0 2px 0 #ffffff88,
    inset 0 -3px 0 #1f6b10,
    0 28px 60px var(--lime-glow);
}

.btn:active{
  transform:translateY(1px);
}

/* ================= HERO ================= */

.hero{
  min-height:95vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:140px 50px;

  background:
    radial-gradient(circle at center,
    #4dff0020,
    transparent 70%);

  animation:fadeUp 1.3s ease;
}

.hero h1{
  font-size:72px;
  font-weight:900;
  max-width:1000px;

  background:
    linear-gradient(180deg,
    #f2ffe3,
    #9cff63,
    var(--lime-main));

  -webkit-background-clip:text;
  color:transparent;

  margin-bottom:24px;
}

.hero p{
  font-size:21px;
  max-width:750px;
  color:#cfe0d5;
  margin-bottom:45px;
}

/* ================= SECTIONS ================= */

.section{
  max-width:1350px;
  margin:auto;
  padding:120px 70px;
  animation:fadeUp 1.1s ease;
}

.section h2{
  font-size:42px;
  margin-bottom:30px;
  text-align:center;
  font-weight:800;
}

.section p{
  font-size:18px;
  color:#c7d8ce;
}

/* ================= GRID ================= */

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:40px;
  margin-top:65px;
}

/* ================= CARDS ================= */

.card{
  background:
    linear-gradient(160deg,
    #0f1e16,
    #040806);

  border-radius:24px;
  padding:46px;

  border:1px solid #1c3f2b;

  box-shadow:
    inset 0 1px 0 #ffffff08,
    0 25px 50px #000;

  transition:.45s;
  position:relative;
  overflow:hidden;
}

.card:before{
  content:'';
  position:absolute;
  inset:-40%;
  background:
    linear-gradient(120deg,
    transparent,
    #4dff0020,
    transparent);
  opacity:0;
  transform:rotate(25deg);
  transition:.6s;
}

.card:hover:before{
  opacity:1;
}

.card:hover{
  transform:translateY(-12px) scale(1.02);
  box-shadow:
    0 35px 80px #000,
    0 0 45px #4dff0050;
}

.card h3{
  color:var(--lime-main);
  font-size:23px;
  margin-bottom:16px;
}

/* ================= CTA ================= */

.cta{
  background:
    linear-gradient(140deg,
    #66ff33,
    #2fb800);

  color:#020403;

  padding:95px 60px;
  text-align:center;

  border-radius:45px;

  margin:110px auto;
  max-width:1250px;

  box-shadow:
    0 35px 80px var(--lime-glow);
}

.cta h2{
  font-size:44px;
  margin-bottom:18px;
  font-weight:900;
}

/* ================= FORM ================= */

form{
  max-width:550px;
  margin:auto;
}

form input,
form select{
  width:100%;
  padding:16px;
  margin-bottom:18px;

  background:#040806;
  border:1px solid #1c3f2b;
  border-radius:12px;

  color:#fff;
  font-size:15px;
}

form input:focus,
form select:focus{
  outline:none;
  border-color:var(--lime-main);
  box-shadow:0 0 0 2px #4dff0025;
}

/* ================= FOOTER ================= */

footer{
  background:#020403;
  padding:45px;
  text-align:center;
  color:#7c9086;
  border-top:1px solid #1c3f2b;
}

/* ================= ANIMATIONS ================= */

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(35px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
/* ================= CALENDLY ================= */

.calendly-box{
  max-width:900px;
  margin:60px auto 0;

  background:
    linear-gradient(160deg,#0f1e16,#050907);

  border-radius:28px;

  padding:35px;

  border:1px solid #245c3a;

  box-shadow:
    inset 0 1px 0 #ffffff08,
    0 30px 70px #000,
    0 0 40px #4dff0030;
}

.calendly-title{
  text-align:center;
  font-size:26px;
  font-weight:800;
  margin-bottom:25px;
  color:#9cff63;
}

.calendly-embed{
  width:100%;
  height:680px;

  border:none;
  border-radius:18px;

  background:#020403;
}
/* ================= ABOUT BUBBLE ================= */

.about-hero{
  max-width:1100px;
  margin:120px auto 60px;
  text-align:center;
  animation:fadeUp 1.2s ease;
}

.about-hero h1{
  font-size:64px;
  font-weight:900;
  margin-bottom:20px;

  background:
    linear-gradient(180deg,
    #f2ffe3,
    #9cff63,
    #4DFF00);

  -webkit-background-clip:text;
  color:transparent;
}

.about-hero p{
  font-size:20px;
  max-width:850px;
  margin:0 auto;
  color:#cfe0d5;
}

/* MAIN GREEN BUBBLE */

.about-bubble{
  max-width:1050px;
  margin:80px auto 120px;

  background:
    linear-gradient(160deg,
    rgba(77,255,0,.18),
    rgba(5,9,7,.95));

  border-radius:32px;

  padding:70px 80px;

  border:1px solid #2fb800;

  box-shadow:
    inset 0 1px 0 #ffffff20,
    0 35px 90px #000,
    0 0 60px #4dff0035;

  backdrop-filter:blur(12px);

  animation:fadeUp 1.3s ease;
}

.about-bubble p{
  font-size:18px;
  line-height:1.7;
  margin-bottom:28px;
  color:#e6f5eb;
}

/* SIGNATURE */

.about-signature{
  margin-top:50px;
  text-align:right;
}

.about-signature h4{
  font-size:22px;
  color:#9cff63;
  margin-bottom:4px;
}

.about-signature span{
  font-size:14px;
  letter-spacing:.8px;
  color:#9bb5a7;
}
/* ================= SOCIAL REELS ================= */

.social-section{
  max-width:1300px;
  margin:120px auto;
  padding:0 60px;
  text-align:center;
}

.social-section h2{
  font-size:42px;
  margin-bottom:20px;
  font-weight:900;
}

.social-section p{
  color:#cfe0d5;
  max-width:700px;
  margin:0 auto 60px;
}

.social-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:40px;
  justify-items:center;
}

.reel-box{
  background:
    linear-gradient(160deg,#0f1e16,#050907);

  padding:18px;

  border-radius:22px;

  border:1px solid #245c3a;

  box-shadow:
    0 25px 50px #000,
    0 0 25px #4dff0025;

  transition:.4s;
}

.reel-box:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:
    0 35px 80px #000,
    0 0 45px #4dff0040;
}

.reel-box iframe{
  border-radius:16px;
}

.social-link{
  margin-top:50px;
}

.social-link a{
  color:#4DFF00;
  font-weight:700;
  letter-spacing:.5px;
  transition:.3s;
}

.social-link a:hover{
  color:#9cff63;
}
/* ================= OFFICIAL FOOTER ================= */

.site-footer{
  background:#020403;
  border-top:1px solid #1c3f2b;

  padding:55px 40px 35px;
  text-align:center;

  color:#9bb5a7;
}

.footer-inner{
  max-width:1200px;
  margin:auto;
}

.footer-name{
  font-size:20px;
  font-weight:800;
  color:#9cff63;
  margin-bottom:6px;
}

.footer-company{
  font-size:15px;
  letter-spacing:.5px;
  margin-bottom:4px;
}

.footer-legal{
  font-size:13px;
  opacity:.7;
  margin-top:10px;
}

.footer-divider{
  width:80px;
  height:2px;
  margin:18px auto;

  background:
    linear-gradient(90deg,
    transparent,
    #4DFF00,
    transparent);
}
/* ================= LOGO CONVEYOR ================= */

.logo-section{
  max-width:1300px;
  margin:120px auto;
  padding:0 60px;
  text-align:center;
}

.logo-section h2{
  font-size:38px;
  margin-bottom:15px;
  font-weight:900;
}

.logo-section p{
  color:#cfe0d5;
  max-width:700px;
  margin:0 auto 50px;
}

/* BELT */

.logo-belt{
  position:relative;
  overflow:hidden;

  background:
    linear-gradient(160deg,#0f1e16,#050907);

  border-radius:22px;
  border:1px solid #245c3a;

  margin:40px 0 70px;

  padding:25px 0;

  box-shadow:
    0 25px 50px #000,
    0 0 25px #4dff0025;
}

/* TRACK */

.logo-track{
  display:flex;
  width:max-content;
  animation:scrollLogos 28s linear infinite;
}

.logo-belt.reverse .logo-track{
  animation-direction:reverse;
}

/* LOGO */

.logo-item{
  min-width:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 35px;
}

.logo-item img{
  max-height:60px;
  filter:
    brightness(1.1)
    drop-shadow(0 0 8px #4dff0020);

  transition:.3s;
}

.logo-item img:hover{
  transform:scale(1.08);
  filter:
    brightness(1.2)
    drop-shadow(0 0 15px #4dff0040);
}

/* ANIMATION */

@keyframes scrollLogos{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}
/* MOBILE MENU */
@media(max-width:900px){

  header{
    padding:22px 30px;
  }

  #nav-menu {
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#020403;
    display:none;
    flex-direction:column;
    align-items:center;
    border-top:1px solid #1c3f2b;
    padding:30px 0;
    animation:fadeUp .4s ease;
  }

  #nav-menu.active{
    display:flex;
  }

  #nav-menu a{
    margin:15px 0;
    font-size:18px;
  }

  .menu-toggle{
    display:block;
    width:30px;
    height:26px;
    position:relative;
    cursor:pointer;
  }

  .menu-toggle span{
    position:absolute;
    width:100%;
    height:4px;
    background:#0ec91e;
    left:0;
    transition: all 0.3s ease;
  }

  .menu-toggle span:nth-child(1){ top:0; }
  .menu-toggle span:nth-child(2){ top:11px; }
  .menu-toggle span:nth-child(3){ top:22px; }

  .menu-toggle.active span:nth-child(1){
    top:11px;
    transform:rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2){ opacity:0; }
  .menu-toggle.active span:nth-child(3){
    top:11px;
    transform:rotate(-45deg);
  }
  /* HERO MOBILE FIX */
.hero h1{
  font-size:38px;
  line-height:1.2;
}

.hero p{
  font-size:17px;
}

.hero{
  padding:120px 25px;
}
/* GRID CENTER FIX */
.grid{
  gap:25px;
}

.card{
  padding:30px;
}

.section{
  padding:90px 25px;
}


}
.reel-box{
  width:100%;
  max-width:380px;
}

.reel-box iframe{
  width:100%;
  height:420px;
}
/* CALENDLY MOBILE FIX */
.calendly-box{
  padding:20px;
  margin:40px 15px 0;
}

.calendly-embed{
  height:620px;
}
/* ================= HERO UPGRADE ================= */

.hero{
  position:relative;
  overflow:hidden;
}

/* Background Logo Watermark */
.hero::before{
  content:"";
  position:absolute;
  inset:0;

  background:url("logofav.png") center/420px no-repeat;

  opacity:.90;

  filter:blur(1px);

  z-index:0;

  animation:floatLogo 18s ease-in-out infinite;
}

/* Gradient Glow */
.hero::after{
  content:"";
  position:absolute;
  inset:0;

  background:
    radial-gradient(circle at center,
    #4dff0040,
    transparent 70%);

  z-index:0;
}

/* Bring content forward */
.hero > *{
  position:relative;
  z-index:2;
}

/* Subheading */
.hero-sub{
  font-size:15px;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:700;

  color:#9cff63;

  margin-bottom:20px;

  display:inline-block;

  padding:6px 16px;

  border:1px solid #2fb800;
  border-radius:20px;

  background:rgba(77,255,0,.05);

  box-shadow:0 0 15px #4dff0030;
}

/* Scaling Icon */
.hero-scale{
  width:70px;
  height:70px;

  margin-bottom:25px;

  background:
    linear-gradient(145deg,
    #4DFF00,
    #2fb800);

  border-radius:18px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:34px;
  font-weight:900;

  color:#020403;

  box-shadow:
    0 15px 40px #4dff0050,
    inset 0 2px 0 #ffffff70;
}
/* ================= HERO LOGO FLOAT ================= */

@keyframes floatLogo{
  0%{
    transform:translateY(0) scale(1);
  }

  50%{
    transform:translateY(-18px) scale(1.06);
  }

  100%{
    transform:translateY(0) scale(1);
  }
}
/* ================= ANIMATED SCALE ICON ================= */

.hero-scale{
  width:72px;
  height:72px;

  margin-bottom:28px;

  background:
    linear-gradient(145deg,#4DFF00,#2fb800);

  border-radius:18px;

  display:flex;
  align-items:flex-end;
  justify-content:center;

  padding:14px;

  box-shadow:
    0 15px 40px #4dff0050,
    inset 0 2px 0 #ffffff70;

  animation:scalePulse 3.5s ease-in-out infinite;
}

/* Bars container */

.scale-bars{
  display:flex;
  gap:6px;
  height:100%;
  width:100%;
  align-items:flex-end;
  justify-content:center;
}

/* Individual bars */

.scale-bars span{
  width:8px;
  background:#020403;
  border-radius:3px;

  animation:growBar 2.4s ease-in-out infinite;
}

/* Different timing = wave effect */

.scale-bars span:nth-child(1){
  height:40%;
  animation-delay:0s;
}

.scale-bars span:nth-child(2){
  height:65%;
  animation-delay:.2s;
}

.scale-bars span:nth-child(3){
  height:90%;
  animation-delay:.4s;
}

/* Bar growth animation */

@keyframes growBar{

  0%{
    transform:scaleY(.7);
    opacity:.6;
  }

  50%{
    transform:scaleY(1.2);
    opacity:1;
  }

  100%{
    transform:scaleY(.7);
    opacity:.6;
  }

}

/* Icon breathing animation */

@keyframes scalePulse{

  0%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.07);
  }

  100%{
    transform:scale(1);
  }

}
/* POPULAR TERMINALS – PREMIUM BOARD */

.logo-belt.hall-of-fame {
  background: linear-gradient(135deg, #041204, #0f2f14);
  border: 3px solid #4caf50;
  border-radius: 20px;
  padding: 50px 30px;
  margin: 60px auto;
  max-width: 1100px;
  box-shadow:
    0 0 25px rgba(76, 175, 80, 0.6),
    inset 0 0 20px rgba(76, 175, 80, 0.2);
}

/* Grid instead of scroll */
.logo-belt.hall-of-fame .logo-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  justify-items: center;
  align-items: center;
  width: 100%;
  animation: none;
}

/* Card style */
.logo-belt.hall-of-fame .logo-item {
  background: linear-gradient(145deg, #081f0c, #0d2b10);
  border: 2px solid rgba(76,175,80,0.4);
  border-radius: 16px;
  padding: 25px 20px;
  width: 180px;
  height: 180px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.6),
    inset 0 0 10px rgba(76,175,80,0.15);

  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;

  animation: floatCard 6s ease-in-out infinite;
}

/* Slight offset for natural look */
.logo-belt.hall-of-fame .logo-item:nth-child(even) {
  animation-delay: 3s;
}

/* Logo image */
/* Bigger + clearer logos */
.logo-belt.hall-of-fame .logo-item img {
  width: 135px;          /* Bigger */
  max-height: 80px;
  object-fit: contain;

  filter: drop-shadow(0 0 14px #4caf50);
  transition: all 0.4s ease;
  margin-bottom: 12px;
}

/* Hover: premium pop */
.logo-belt.hall-of-fame .logo-item:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: #76ff03;

  box-shadow:
    0 15px 40px rgba(76,175,80,0.6),
    inset 0 0 15px rgba(118,255,3,0.3);
}

.logo-belt.hall-of-fame .logo-item:hover img {
  transform: scale(1.15);
  filter: drop-shadow(0 0 25px #76ff03);
}

/* Floating animation */
@keyframes floatCard {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Section heading */

.logo-section h2:first-of-type {
  text-align: center;
  color: #76ff03;
  font-size: 32px;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.logo-section h2:first-of-type + p {
  text-align: center;
  color: #cfcfcf;
  font-size: 17px;
  margin-bottom: 35px;
}
/* ================= PREMIUM INSTAGRAM FOLLOW ================= */
.premium-follow {
  text-align: center;
  margin-top: 60px;
}

.premium-follow p {
  font-size: 18px;
  color: #cfe0d5;
  margin-bottom: 12px;
  font-weight: 600;
}

.premium-follow a {
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 28px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: all 0.35s;
}

/* Primary Instagram (GreenPrint) */
.premium-follow a.primary-ig {
  background: linear-gradient(145deg, #4DFF00, #2FB800);
  color: #020403;
  font-size: 20px;
  box-shadow:
    inset 0 2px 0 #ffffff25,
    inset 0 -3px 0 #1f6b10,
    0 18px 35px rgba(77,255,0,0.4);
  margin-bottom: 20px;
}

.premium-follow a.primary-ig:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    inset 0 2px 0 #ffffff50,
    inset 0 -3px 0 #1f6b10,
    0 28px 60px rgba(77,255,0,0.5);
}

/* Secondary Instagram (Founder) */
.premium-follow .secondary {
  color: #aaa;
  font-size: 16px;
  margin-top: 0;
}

.premium-follow .secondary a {
  color: #fff;
  font-weight: 600;
  padding: 6px 14px;
  background: rgba(77,255,0,0.1);
  border-radius: 20px;
  transition: all 0.3s;
}

.premium-follow .secondary a:hover {
  background: linear-gradient(145deg, #4DFF00, #2FB800);
  color: #020403;
  transform: scale(1.05);
}
/* ================= HALL OF FAME ================= */

.logo-belt.hall-of-fame {
  background:
    linear-gradient(160deg,#061a0c,#020403);

  border: 2px solid #2fb800;
  border-radius: 28px;

  padding: 60px 50px;
  margin: 70px auto;

  max-width: 1150px;

  box-shadow:
    0 35px 80px #000,
    0 0 50px #4dff0040,
    inset 0 0 25px #4dff0015;
}


/* Grid layout */

.logo-belt.hall-of-fame .logo-track{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:45px;

  width:100%;
  animation:none;
}


/* Individual Hall Card */

.hof-card{
  background:
    linear-gradient(160deg,#0c2416,#050907);

  border-radius:22px;

  padding:28px 20px;

  border:1px solid #245c3a;

  height:220px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  position:relative;
  overflow:hidden;

  box-shadow:
    inset 0 1px 0 #ffffff10,
    0 25px 55px #000;

  transition:.45s;

  animation:hofFloat 6s ease-in-out infinite;
}


/* Offset animation */

.hof-card:nth-child(even){
  animation-delay:3s;
}


/* Glow sweep */

.hof-card::before{
  content:'';
  position:absolute;
  inset:-40%;

  background:
    linear-gradient(120deg,
    transparent,
    #4dff0020,
    transparent);

  opacity:0;

  transform:rotate(25deg);

  transition:.6s;
}

.hof-card:hover::before{
  opacity:1;
}


/* Hover effect */

.hof-card:hover{
  transform:translateY(-12px) scale(1.05);

  border-color:var(--lime-main);

  box-shadow:
    0 35px 85px #000,
    0 0 45px #4dff0060;
}


/* Logo image */

.hof-card img{
  width:150px;
  max-height:85px;

  object-fit:contain;

  margin-bottom:16px;

  filter:
    drop-shadow(0 0 18px #4dff0040);

  transition:.4s;
}

.hof-card:hover img{
  transform:scale(1.15);

  filter:
    drop-shadow(0 0 28px #4dff0090);
}


/* Name plate */

.hof-card .logo-name{

  font-size:15px;
  font-weight:800;

  letter-spacing:1.1px;
  text-transform:uppercase;

  color:#9cff63;

  padding:6px 18px;

  border-radius:18px;

  background:rgba(77,255,0,.08);

  border:1px solid #2fb800;

  box-shadow:0 0 15px #4dff0025;
}


/* Floating animation */

@keyframes hofFloat{

  0%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-7px);
  }

  100%{
    transform:translateY(0);
  }
}
/* FEATURED CENTER CARD */

.hof-card.featured{
  grid-column: 1 / -1; /* spans full row */
  justify-self: center;

  max-width: 320px;
}

/* Extra glow for featured */

.hof-card.featured{
  border-color:#9cff63;

  box-shadow:
    0 40px 90px #000,
    0 0 60px #4dff0080,
    inset 0 0 25px #4dff0030;
}
/* ================= HALL OF FAME MOBILE FIX ================= */

/* ================= HALL OF FAME MOBILE FULL FIX ================= */

/* ================= REAL MOBILE CLIP FIX ================= */

@media(max-width: 768px){

  /* Stop section from clipping */
  .logo-section{
    padding: 0 !important;
    margin: 60px 0 !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  /* Let hall expand fully */
  .logo-belt.hall-of-fame{
    width: 100% !important;
    max-width: 100% !important;

    margin: 30px 0 !important;
    border-radius: 0 !important;
  }

  /* Remove internal constraints */
  .logo-belt.hall-of-fame .logo-track{
    width: 100% !important;
    min-width: 100% !important;
  }

  /* Ensure cards never overflow */
  .hof-card{
    max-width: 100% !important;
    overflow: visible !important;
  }

}