body {
    background-color: #090909;
    color: #CEFF00;
    font-family: 'Share Tech', monospace;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;      /* stack children vertically */
    align-items: center;         /* center horizontally */
    justify-content: center;     /* center vertically */
    overflow: hidden;

}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.name {
    font-size: 4.5rem;
    font-family: "Geo", sans-serif;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 5px;
    background-color: #000000;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    z-index: 1;
}

.buzz {
    color: #ffffff;
    padding: 2px 4px;
    border-radius: 3px;
}

.credits {
    background-color: #090909;
    padding-top: 40px 0;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.credits h2 {
    font-size: 3rem;
    font-family: "Geo", sans-serif;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.project {
    font-weight: bold;
    font-size: 1em;
}

.role {
    font-style: italic;
    opacity: 0.8;
}

.client {
      color: #ffffff;
      font-size: 1em;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

td {
    padding: 10px;
    text-align: left;
}

.gallery {
    width: 100%;
}

.gallery img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    border: 1px solid #CEFF00;
}

footer {
    background-color: #000000;
    padding-top: 5px;
    padding-bottom: 40px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.copyright {
    color: white;
    font-size: 0.65rem;
    text-align: center;
    letter-spacing: 1.5px;
    margin-top: 60px;
    opacity: 0.7;
}

.footer-content h3 {
    color: #ffffff;
    font-family: "Geo", sans-serif;
    font-size: 2.5rem;
    margin-top:10px;
    margin-bottom: 20px;
}

.skills {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.skills li {
    margin: 5px 10px;
    padding: 5px 10px;
    background: #CEFF00;
    color: #000000;
    border-radius: 3px;
}

.contact a {
    color: #CEFF00;
    text-decoration: none;
    margin: 0 20px;
}

.contact a:hover {
    text-decoration: underline;
}

.work-by {
    color: #ffffff;
    font-size: 1.3rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: -5.0em;
    z-index: 2; 
}

.name-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.name-container .work-by {
    color: white;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: -10px;
}

/* Reel Feature */
.featured-video {
 background-color: #000000;
      color: #fff;
      font-family: sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 40px;
      padding-left: 20px;
      padding-right: 20px;
      padding-bottom: 40px;
    }

.featured-video h2 {
  color: #ffffff;
  font-family: "Geo", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
}


/* Video player customize */
.video-js {
      position: relative;
      width: 70%;
      max-width: 800px;
      border: 0px solid #ceff00;
      border-radius: 20px;
    }

/* Play/Pause/Volume icons */
.vjs-theme-fantasy {
  --vjs-theme-fantasy--primary: #CEFF00;
  --vjs-theme-fantasy--secondary: #CEFF00;
} 

.vjs-theme-fantasy .vjs-big-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.featured-video {
  position: relative;
}

.vjs-theme-fantasy .vjs-big-play-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 175%; /* scale size as needed */
  height: 175%;
  border: 4px solid #CEFF00;
  border-radius: 50%;
  z-index: -1;
}

.vjs-theme-fantasy .vjs-control-bar {
  background-color: rgba(0, 0, 0, 0.85) !important;
}

.vjs-theme-fantasy .vjs-slider {
  background: #1A1A1A !important;
}

.vjs-theme-fantasy .vjs-play-progress::before {
  background-color: #CEFF00 !important;
}

.vjs-theme-fantasy .vjs-play-control .vjs-icon-placeholder::before {
  height: 1.3em;
  width: 1.3em;
  margin-top: .2em;
  border-radius: 0em;
  border: 2.5px solid var(--vjs-theme-fantasy--secondary);
  top: 2px;
  left: 9px;
  line-height: 1.1;
}

.vjs-theme-fantasy .vjs-play-progress {
  background-color: #CEFF00 !important;
}

.video-js .vjs-control:focus {
  text-shadow: 0em 0em 0em white;
}

.statement {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.statement .content {
  max-width: 1000px;
  margin: 0 auto;
}

.statement h2 {
  font-family: "Geo", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: #CEFF00;
}

.statement p {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 10px;
  font-family: "Share Tech", monospace;
}

.bio-role {
  font-size: 1.5rem;
  font-family: "Geo", sans-serif;
  color: #CEFF00;
  }





/* Mobile-friendly formatting */
@media screen and (max-width: 768px) {
    .work-by {
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: -4.6em;
    z-index: 2; 
}


    .hero {
        height: 100vh;
    }

    .name {
        font-size: 2.3rem;
        letter-spacing: 3px;
    }

    .highlight {
        padding: 1px 3px;
    }

    .content {
        padding: 0 10px;
    }

    .credits h2 {
        font-size: 2.2rem;
    }

    table {
        display: block;
    }

    tr {
        display: block;
        padding-bottom: 10px;
        margin-bottom: 15px;
        border-bottom: 1px dashed #CEFF00;
    }

    td {
        display: block;
        padding: 8px;
        margin-bottom: 3px;
        border-radius: 3px;
        text-align: center;
    }

    .project {
        font-size: 1.2em;
        display: block;
        margin-bottom: 5px;
    }

    .role {
        font-size: 1em;
        opacity: 0.7;
    }

    .client {
        font-size: 0.9em;
        border-bottom: none;
    }

    .gallery img {
        margin-bottom: 10px;
    }

    .footer-content {
        padding: 0 10px;
    }

    .footer-content h3 {
        color: #ffffff;
        font-size: 2.2rem;
    }

    .skills li {
        margin: 5px;
        font-size: 0.9em;
    }

    .contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    }

    .vjs-modal-dialog .vjs-modal-dialog-content, .video-js .vjs-modal-dialog, .vjs-button > .vjs-icon-placeholder::before, .video-js .vjs-big-play-button .vjs-icon-placeholder::before {
        position: absolute;
        top: 4px;
        left: 6px;
        width: 100%;
        height: 100%;
    }

    .vjs-theme-fantasy .vjs-big-play-button {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  font-size: 100px !important;  /* smaller for mobile */
  line-height: 1 !important;
}

.vjs-theme-fantasy .vjs-big-play-button::before {
  content: '';
  position: absolute;
  top: calc(50% + 15px);
  left: calc(50% + 15px);
  transform: translate(-50%, -50%);
  width: 160%;
  height: 160%;
  border: 4px solid #CEFF00;
  border-radius: 50%;
  z-index: -1;
}


 


/* Midscreen-friendly formatting */
    @media screen and (min-width: 1050px) {
    .vjs-modal-dialog .vjs-modal-dialog-content, .video-js .vjs-modal-dialog, .vjs-button > .vjs-icon-placeholder::before, .video-js .vjs-big-play-button .vjs-icon-placeholder::before {
        position: absolute;
        top: 4px;
        left: -21px;
        width: 100%;
        height: 100%;
    }
    .vjs-theme-fantasy .vjs-big-play-button {
        line-height: 70px;
        font-size: 160px;
        color: #CEFF00 !important;
    }
}

/* Widescreen-friendly formatting */
    @media screen and (min-width: 1350px) {
    .vjs-big-play-button {
        top: 4px;
        left: -31px;
        width: 100%;
        height: 100%;
    }
    .vjs-theme-fantasy .vjs-big-play-button {
        line-height: 70px;
        font-size: 240px;
        color: #CEFF00 !important;
    }

    .vjs-theme-fantasy .vjs-big-play-button::before {
    width: 210%; /* was 175% -> +20% */
    height: 210%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid #CEFF00;
    border-radius: 50%;
    z-index: -1;
  }


}


