header {
    text-align: center;
    background: top center ;
    background-size: cover;
    overflow: hidden;
    padding-top: 60px;
  }
  header {
    line-height: 1.4;
  }
  /*Experimenting with some of the CSS tools here. Some are not reflective in the actual website in the browser.  Thank you for your patience and understanding.  */
  
  header .profile-image {
    margin-top: 50px;
    width: 140px;
    height: 140px;
    border-radius: 40%;
    border: 3px solid rgb(5, 5, 147);
    transition: all .5s;
  }
  header .profile-image:hover {
    transform: scale(1.4) rotate(9deg);
  }
 
  .topnav {
    background-color: #330;
    overflow: hidden;
  }
 
/*add a black background to the nav menu and make it horizontal*/
.topnav a {
  float: left;
  color: rgb(230, 227, 233);
  text-align: center;
  padding: 12px 14px;
  text-decoration: none;
  font-size: 20px;
}
 
/* add color to the current link */
.topnav a.active {
  background-color: #097509;
  color: rgb(246, 246, 243);
}
 
.topnav a:hover {
  background-color: darkred;
  color: black;
}
 
body {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  color: #0f0e0e;
  /* UPDATED: changed background to dark near-black */
  background: #03010d;
  background-size: cover;
}
 
/* I am experimenting with CSS styling for the "Pro Sports Teams" table on index.html 
"Home Page" to try and center the table and align it with the rest 
of the body   */
table {
  margin: 10px auto;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  width: 50%;
}
 
.rounded-image {
    border-radius: 15px;
    width: 200px;
    height: auto;
  }
 
 .triangle-right {
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 100px solid #4CAF50;
  }
 
  .circular-image {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
  }
 
/* UPDATED: Images inside article boxes are fully contained */
article img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}
 
.box {
  border: solid black 2px;
  max-width: 500px;
  /* UPDATED: height auto so content is never clipped */
  height: auto;
  padding: 10px;
  margin: 20px;
  text-align: left;
}
 
.box2 {
  border: solid black 2px;
  max-width: 800px;
  /* UPDATED: height auto so images and text always fit */
  height: auto;
  padding: 10px;
  margin: 20px;
  text-align: left;
}
 
/* Link Styles */
#rcorners1 {
  border-radius: 15px 50px 30px 5px;
  background: radial-gradient(circle at 50% 20%, #FFFFFF, #E0E0E0 30%, #C0C0C0 60%, #808080);
  padding: 20px; 
  width: 500px;
  /* UPDATED: auto height so text never overflows */
  height: auto;
  min-height: 200px;
}
 
#rcorners2 {
  border-radius: 15px 50px 30px;
  background: radial-gradient(circle at 50% 20%, #FFFFFF, #E0E0E0 30%, #C0C0C0 60%, #808080);
  padding: 20px; 
  width: 500px;
  height: auto;
  min-height: 200px;
}
 
#rcorners3 {
  border-radius: 15px 50px;
  background: radial-gradient(circle at 50% 20%, #FFFFFF, #E0E0E0 30%, #C0C0C0 60%, #808080);
  padding: 20px; 
  width: 500px;
  height: auto;
  min-height: 200px;
} 
 
#rcorners4 {
  border-radius: 15px 30px;
  background: radial-gradient(circle at 50% 20%, #FFFFFF, #E0E0E0 30%, #C0C0C0 60%, #808080);
  padding: 20px; 
  width: 800px;
  /* UPDATED: auto height — critical fix so images don't overflow the gray box */
  height: auto;
  min-height: 200px;
  /* UPDATED: ensure images inside never bleed out */
  overflow: hidden;
  box-sizing: border-box;
} 
 
fieldset {
    display: block;
    margin-right: 3px;
    margin-left: 3px;
    padding-top: 0.25em;
    padding-bottom: 0.655ex;
    padding-right: 0.65em;
    padding-left: 0.65em;
    border: 2px groove (internal value);
}
 
footer {
  width: 100%;
  min-height: 30px;
  padding: 20px 0 40px 20px;
  color: white;
  background: #03010d;
}
 
/* The css styling below is for the Beta Testing banner displayed at the top of the 
index.html landing page.  Thank you for your patience */
.beta-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
  135deg,
  #8e949b 0%,
  #cfd4da 18%,
  #f5f7fa 35%,
  #bfc5cc 50%,
  #eef1f4 65%,
  #9aa0a8 100%);
  color: black;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  z-index: 9999;
  box-sizing: border-box;
}
 
.subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-top: 6px;
}
 
.version {
  font-family: monospace;
  font-size: 14px;
  color: #666;
  margin: 6px 0;
}
 
.center { text-align: center; }
.left { text-align: left; }



.social-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 20px;
  max-width: 900px;
  margin: 0 auto;
}
 
.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #c0c0c0;
  position: relative;
  transition: transform 0.2s ease, color 0.2s ease;
  min-width: 72px;
}
 
.social-link:hover {
  transform: translateY(-4px);
  color: #ffffff;
}
 
.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
 
.social-link:hover .social-icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}
 
.social-placeholder {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
 
.social-placeholder:hover {
  transform: none;
}
 
.social-label {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: inherit;
}
 
.coming-soon-badge {
  font-size: 9px;
  background: rgba(255,255,255,0.12);
  color: #888;
  padding: 2px 6px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
 
.gofundme-icon { color: #02a95c; }
.youtube-icon  { color: #ff0000; }
.kickstarter-icon { color: #05ce78; }
.giving-block-icon { color: #a89af9; }
 

 .circular-image-sm {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
}