/* ==========================================================================
   1. CSS VARIABLES & ROOT STYLES
   ========================================================================== */
   :root {
    --primary-pink: #ff688c;
    --primary-dark: #000;
    --light-text: #eee;
    --border-thickness: 3px;
    --content-bg: #181113;
    --glow-color: #ff688c;
    --glow-blur: 12px;
    --glow-spread: 2px;
    --glow-size: 0 0 var(--glow-blur) var(--glow-spread) var(--glow-color);
  }
  
  /* ==========================================================================
     2. CSS RESET & BASE STYLES
     ========================================================================== */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  @font-face {
    font-family: 'crosswindsnowind';
    src: url('fonts/crosswinds-nowind-webfont.woff') format('woff');
  }
  
  html, body {
    height: 100%;
  }
  
  body {
    font-family: 'crosswindsnowind';
    background: var(--primary-dark);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
  }
  
  /* ==========================================================================
     3. CUSTOM CURSOR STYLES
     ========================================================================== */
  body {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='24' height='24' viewBox='0 0 48 48' style='fill:%23ff688c;'%3E%3Cpath d='M35.654,24.09L13.524,3.404c-0.437-0.407-1.074-0.517-1.622-0.28C11.354,3.362,11,3.902,11,4.5v30 c0,0.577,0.331,1.103,0.851,1.352c0.519,0.251,1.137,0.18,1.587-0.181l6.112-4.892l5.777,13.306c0.33,0.76,1.214,1.109,1.973,0.778l4.586-1.992c0.76-0.33,1.108-1.213,0.778-1.973l-3.044-7.011l-2.733-6.294l7.914-0.915c0.581-0.067,1.07-0.466,1.253-1.021 C36.237,25.1,36.081,24.49,35.654,24.09z'%3E%3C/path%3E%3C/svg%3E"),
      auto;
  }
  
  a:hover, button:hover, input:hover, textarea:hover, select:hover, 
  [role="button"]:hover {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='26' height='26' viewBox='0 0 26 26' style='fill:%23ff688c;'%3E%3Cpath d='M 8.5 2 C 7.671875 2 7 2.671875 7 3.5 L 7 16 L 4.976563 13.230469 C 4.375 12.304688 3.203125 11.992188 2.34375 12.523438 C 1.492188 13.066406 1.277344 14.246094 1.871094 15.171875 C 1.871094 15.171875 5.136719 20.113281 6.53125 22.230469 C 7.921875 24.34375 10.175781 26 14.390625 26 C 21.375 26 22 20.609375 22 19 L 22 12.5 C 22 11.671875 21.328125 11 20.5 11 C 19.671875 11 19 11.671875 19 12.5 C 19 12.777344 18.777344 13 18.5 13 C 18.222656 13 18 12.777344 18 12.5 L 18 11.5 C 18 10.671875 17.328125 10 16.5 10 C 15.671875 10 15 10.671875 15 11.5 C 15 11.773438 14.773438 12 14.5 12 C 14.226563 12 14 11.773438 14 11.5 C 14 10.671875 13.328125 10 12.5 10 C 11.671875 10 11 10.671875 11 11.5 C 11 11.773438 10.773438 12 10.5 12 C 10.226563 12 10 11.773438 10 11.5 L 10 3.5 C 10 2.671875 9.328125 2 8.5 2 Z'%3E%3C/path%3E%3C/svg%3E"), auto;
  }
  
  /* ==========================================================================
     4. HEADER & FOOTER STYLES
     ========================================================================== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #0c0c0c;
      padding: 10px 0;
      z-index: 1002;
      border-bottom: 1px solid #ff688c;
    }

  .site-footer {
    position: relative;
    width: 100%;
    background: #121212;
    z-index: 1002;
    padding: 15px 20px;
    border-top: 2px solid var(--primary-pink);
    margin-top: 50px;
  }

  .container .site-footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
      
  /* ==========================================================================
     5. NAVIGATION STYLES
     ========================================================================== */
  .main-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
    padding: 0 20px;
  }
  
  .nav-tab {
    padding: 10px 20px;
    background: var(--primary-pink);
    border: 1px solid transparent;
    border-radius: 15px;
    color: var(--primary-pink);
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'crosswindsnowind';
    box-shadow: var(--primary-pink) 0 0 5px;
    position: relative;
    overflow: hidden;
  }
  
  .nav-tab:hover {
    transform: scale(1.05);
    background: var(--primary-pink);
    color: #fff;
  }
  
  .nav-tab.active {
    background: var(--primary-pink);
    color: #fff;
    box-shadow: 0 0 15px var(--primary-pink);
  }
  
  .nav-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink) 50%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  
  .nav-tab:hover::before {
    transform: translateY(0);
  }
  
  /* ==========================================================================
     6. BACK BUTTON STYLES
     ========================================================================== */
  .back-link {
    display: flex;
    justify-content: center;
    margin: 15px 0;
    padding: 0 20px;
  }
  
  .back-button {
    padding: 10px 20px;
    background: var(--primary-pink);
    border: 1px solid transparent;
    border-radius: 15px;
    color: var(--primary-pink);
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'crosswindsnowind';
    box-shadow: var(--primary-pink) 0 0 5px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .back-button:hover {
    transform: scale(1.05);
    background: var(--primary-pink);
    color: #fff;
  }
  
  .back-button i {
    font-size: 0.9em;
  }
  
  /* ==========================================================================
     7. HEADER TEXT STYLES
     ========================================================================== */
    .header-text {
      color: #ffffff;
      text-shadow: var(--primary-pink) 0px 0px 25px;
      font-size: 2.5em;
      text-align: center;
      font-family: 'crosswindsnowind';
      margin: 0;
      padding-top: 7px;
      padding-bottom: 7px;
      letter-spacing: 2px;
    }
  
    header h1 {
      font-size: 2.0rem;
      color: #ffffff;
      text-align: center;
      margin-bottom: 5px;
  }
  
  /* ==========================================================================
     8. SOCIAL MEDIA BUTTONS
     ========================================================================== */
     .social-links {
      display: flex;
      justify-content: center;
      gap: 25px;
      flex-wrap: wrap;
      padding-top: 0px;
      padding-bottom: 12px;
  }

    .social-button {
      width: 90px;
      height: 90px;
      background: #ff688c1a;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      text-decoration: none;
      box-shadow: 0 0 8px #ff688c33;
  }

  .social-button i {
      font-size: 2.5em;
      color: var(--primary-pink);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      z-index: 2;
  }

  .social-button::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: var(--primary-pink);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      z-index: 1;
  }

  .social-button:hover::before {
      width: 120px;
      height: 120px;
  }

  .social-button:hover {
      transform: translateY(-10px) rotate(5deg) scale(1.1);
      background: #ff688c;
      box-shadow: #ff688c 0 0 15px;
      border-radius: 20px;
  }

  .social-button:hover i {
      color: #ffffff;
      transform: rotate(-10deg) scale(1.4);
  }

  .social-button:active {
      transform: translateY(-5px) rotate(2deg) scale(1.05);
  }
  
  /* ==========================================================================
     9. MAIN CONTAINER STYLES
     ========================================================================== */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 380px auto 20px;
    position: relative;
    flex: 1;
  }
  
  /* ==========================================================================
     10. VIDEO SECTION STYLES
     ========================================================================== */
  .newest-video {
    position: relative;
    background: #141414;
    padding: 25px;
    border-radius: 25px;
    margin-bottom: 25px;
    margin-left: 20px;
    margin-right: 20px;
    overflow: hidden;
    border: var(--border-thickness) solid var(--primary-pink) !important;
    box-shadow: var(--glow-size) !important;
  }
  
  .newest-video h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #fff;
  }
  
  .video-player-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
  }
  
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
  }
  
  /* ==========================================================================
     11. CHANNEL BUTTON STYLES
     ========================================================================== */
  .channel-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
    padding-left: 50px;
    flex-wrap: nowrap;
    width: 10%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .channel-btn {
    padding-top: 15px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    background: #ff688b0a;
    border: 1px solid transparent;
    border-radius: 15px;
    color: var(--primary-pink);
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'crosswindsnowind';
    box-shadow: var(--primary-pink) 0 0 5px;
    flex: 1;
    max-width: 200px;
    white-space: nowrap;
  }
  
  .channel-btn:hover {
    transform: scale(1.05);
    background: var(--primary-pink);
    color: #fff;
  }
  
  .channel-btn.active {
    background: var(--primary-pink);
    color: #fff;
    box-shadow: 0 0 10px var(--primary-pink);
  }
  
  /* ==========================================================================
     12. OTHER VIDEOS SECTION
     ========================================================================== */
  .other-videos {
    position: relative;
    margin-top: 20px;
  }
  
  .other-videos h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #fff;
  }
  
  .video-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    min-height: 800px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* ==========================================================================
     13. VIDEO CARD STYLES
     ========================================================================== */
  .video-card {
    width: 100%;
    height: 230px;
    background: #141414;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--glow-size), 0 0 0 var(--border-thickness) var(--primary-pink) !important;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  
  #video-title {
    color: #ffffff;
    font-size: 1.2em;
    text-align: center;
    margin-top: 10px;
    font-family: 'crosswindsnowind';
  }
  
  .video-card:hover {
    transform: scale(1.01);
    box-shadow: 0 0 15px var(--primary-pink);
  }
  
  .video-card img {
    width: 100%;
    height: 158px;
    object-fit: cover;
  }
  
  .video-card .info h3 {
    margin-bottom: 10px;
    padding: 8px;
    font-size: 13px;
    color: #ffffff;
  }
  
  .video-card-link {
    text-decoration: none;
  }
  
  /* ==========================================================================
     14. NEWEST VIDEO LINK STYLES
     ========================================================================== */
  .newest-video-link {
    display: block;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
  }
  
  .newest-video-link:hover {
    transform: scale(1.01);
  }
  
  .newest-thumbnail {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 104, 140, 0.3);
    transition: box-shadow 0.3s ease;
  }
  
  .newest-thumbnail:hover {
    box-shadow: 0 0 25px rgba(255, 104, 140, 0.5);
  }
  
  .newest-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  
  /* ==========================================================================
     15. PLAY BUTTON STYLES
     ========================================================================== */
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #FF0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .newest-thumbnail:hover .play-button {
    opacity: 1;
  }
  
  .play-button i {
    color: #fff;
    font-size: 24px;
    margin-left: 4px;
  }
  
  .newest-video-link h3 {
    margin-top: 15px;
    font-size: 1.2rem;
    text-align: center;
    color: #fff;
  }
  
  /* ==========================================================================
     16. HEADER LOGO & PROFILE STYLES
     ========================================================================== */
  .header-logo-profile {
    position: absolute;
    top: 135px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 32px;
    z-index: 1;
  }
  
  .Logo {
    width: 160px;
    height: auto;
    fill: #fff;
    filter: drop-shadow(0 0 15px var(--primary-pink));
  }
  
  .profile-picture {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    box-shadow: 0 0 16px 0 rgba(255,104,140,0.10), 0 0 0 var(--border-thickness) var(--primary-pink);
  }
  
  .thumbs-down {
    position: absolute;
    transform: scaleX(-1);
    bottom: -40px;
    left: -350px;
    width: 350px;
    height: auto;
  }
  
  .ret-waving {
    position: absolute;
    bottom: -40px;
    left: 1000px;
    width: 550px;
    height: auto;
  }
  
  .Logo,
  .thumbs-down,
  .ret-waving {
    pointer-events: none;
  }
  
  
  /* ==========================================================================
     17. LOADING ANIMATION STYLES
     ========================================================================== */
  .loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 104, 140, 0.3);
    border-radius: 50%;
    border-top: 4px solid var(--primary-pink);
    animation: spin 1s linear infinite;
  }
  
  /* ==========================================================================
     18. PORTFOLIO SECTION STYLES
     ========================================================================== */
  .portfolio-section {
    position: relative;
    background: #141414;
    padding: 50px;
    border-radius: 25px;
    margin-bottom: 25px;
    margin-left: 20px;
    margin-right: 20px;
    overflow: hidden;
    box-shadow: 0 0 5px var(--primary-pink);
    min-height: 400px;
  }
  
  .portfolio-section h2 {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 1.5em;
    color: #fff;
  }
  
  .portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px 0;
  }
  
  .portfolio-item {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--glow-size), 0 0 0 var(--border-thickness) var(--primary-pink) !important;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    min-height: 169px;
  }
  
  .portfolio-item:hover {
    transform: scale(1.01);
    box-shadow: 0 0 15px var(--primary-pink);
  }
  
  .portfolio-image {
    width: 300px;
    min-width: 300px;
    height: 169px;
    overflow: hidden;
  }
  
  .portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .portfolio-image iframe {
    width: 100%;
    height: 100%;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .placeholder-text {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffb6c9;
    font-size: 1.2em;
    font-family: 'crosswindsnowind';
    background: #141414;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
  }
  
  .portfolio-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .portfolio-content h3 {
    color: #fff;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-family: 'crosswindsnowind';
  }
  
  .portfolio-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1.1em;
  }
  
  .portfolio-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .tag {
    background: var(--primary-pink);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
  }
  
  /* ==========================================================================
     22. CANVAS STYLES
     ========================================================================== */
  canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  /* ==========================================================================
     23. RESPONSIVE DESIGN - DESKTOP & TABLET
     ========================================================================== */
  @media (max-width: 1200px) {
    .video-list {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 900px) {
    .video-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* ==========================================================================
     24. RESPONSIVE DESIGN - MOBILE (768px & BELOW)
     ========================================================================== */
  @media (max-width: 768px) {
    .header-text {
      font-size: 1.5em;
    }
    
    .social-button {
      width: 60px;
      height: 60px;
    }
    
    .social-button i {
      font-size: 1.5em;
    }
    
    .page-toggle-btn {
      padding: 8px 15px;
      font-size: 12px;
    }
    
    .page-toggle-btn i {
      font-size: 14px;
    }
    
    body {
      padding-top: 120px;
    }
  
    header h1 {
      font-size: 1.0rem;
    }
  
    .main-nav {
      gap: 10px;
      margin: 10px 0;
    }
  
    .nav-tab {
      padding: 8px 15px;
      font-size: 1em;
    }
  
    .back-button {
      padding: 8px 15px;
      font-size: 1em;
    }
  
    .social-button {
      width: 50px;
      height: 50px;
    }
  
    .portfolio-grid {
      gap: 20px;
    }
  
    .portfolio-item {
      flex-direction: column;
      min-height: auto;
    }
  
    .portfolio-image {
      width: 100%;
      min-width: auto;
      height: 169px;
    }
  
    .Logo,
    .thumbs-down,
    .ret-waving {
      display: none;
    }
  
    .container {
      width: 95%;
      margin: 80px auto 20px;
    }
  
    .channel-buttons {
      padding-left: 20px;
      padding-right: 20px;
      width: 100%;
    }
  
    .channel-btn {
      font-size: 0.9em;
      padding: 10px 15px;
    }
  }
  
  /* ==========================================================================
     25. RESPONSIVE DESIGN - SMALL MOBILE (480px & BELOW)
     ========================================================================== */
  @media (max-width: 480px) {
    .social-button {
      width: 35px;
      height: 35px;
    }
  
    .social-button i {
      font-size: 1.2em;
    }
  
    .video-card {
      height: auto;
    }
  
    .video-card img {
      height: 120px;
    }
  
    .channel-buttons {
      padding-left: 10px;
      padding-right: 10px;
      width: 100%;
    }
  
    .channel-btn {
      font-size: 0.8em;
      padding: 8px 12px;
    }
  }
  
  /* ==========================================================================
     27. PORTFOLIO TECH BOX STYLES
     ========================================================================== */
  .portfolio-tech-box {
    background: var(--content-bg);
    border-radius: 18px;
    border: none;
    box-shadow: var(--glow-size), 0 0 0 var(--border-thickness) var(--primary-pink) !important;
    padding: 28px 22px 22px 22px;
    margin: 0 auto 36px auto;
    max-width: 1000px;
  }
  
  @media (max-width: 600px) {
    .portfolio-tech-box {
      padding: 18px 8px 14px 8px;
    }
  }
  
  .tech-list, .connections-list {
    color: #eee;
    font-size: 1em;
    margin-bottom: 0.7em;
    padding-left: 1.1em;
    list-style: none;
  }
  
  .tech-list li, .connections-list li {
    position: relative;
    padding-left: 1.6em;
    margin-bottom: 0.4em;
  }
  
  .tech-list li::before, .connections-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 0.7em;
    height: 0.7em;
    background: var(--primary-pink);
    border-radius: 50%;
    display: inline-block;
    transform: translateY(-50%);
  }
  
  /* ==========================================================================
     28. PORTFOLIO HERO & TALENT FLEX LAYOUT
     ========================================================================== */
  .portfolio-hero-talent-flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 48px;
    margin-top: 0;
    margin-left: 17px;
  }
  
  .talent-grid-2x3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 32px;
    position: relative;
    margin-top: 20px;
  }
  
  .talent-card {
    cursor: pointer;
    transition: box-shadow 0.18s, transform 0.18s;
  }
  
  .talent-card:hover {
    box-shadow: 0 8px 32px 0 rgba(255,104,140,0.18);
    transform: translateY(-6px) scale(1.03);
  }
  
  .talent-card:hover .talent-img {
    box-shadow: 0 0 25px 0 rgba(255,104,140,0.25);
    transform: scale(1.05);
  }
  
  /* ==========================================================================
     29. TALENT CARD STYLES
     ========================================================================== */
  @media (max-width: 900px) {
    .portfolio-hero-talent-flex {
      flex-direction: column;
      align-items: center;
      gap: 28px;
    }
    .talent-grid-2x3 {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(6, 1fr);
    }
    .talent-card {
      margin: 0 !important;
    }
  }
  
  /* Remove min-height and extra space from talent cards */
  .talent-card {
    min-height: unset !important;
    height: auto !important;
    padding-bottom: 0 !important;
  }
  
  /* Make talent cards smaller and more compact */
  .talent-card {
    padding: 4px 10px !important;
    max-width: 160px;
    margin: 0 !important;
    position: relative;
    z-index: 2;
  }
  
  .talent-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: none;
    margin-bottom: 18px;
    background: var(--content-bg);
    box-shadow: 0 0 16px 0 rgba(255,104,140,0.10);
    transition: all 0.3s ease;
  }
  
  .talent-card h3 {
    color: var(--primary-pink);
    font-size: 1.1em;
    margin-bottom: 0.3em;
    margin-top: 0;
    text-align: center;
  }
  
  .talent-grid-2x3 {
    gap: 18px;
    align-self: flex-start;
    margin-top: -45px;
    position: relative;
  }
  
  /* ==========================================================================
     30. VIDEO GRID STYLES
     ========================================================================== */
  .portfolio-tech-box .video-grid {
    margin: 0;
    padding: 0;
  }
  
  .video-grid-1x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: 1fr !important;
    gap: 18px;
  }
  
  /* Remove responsive stacking for .video-grid-1x3 */
  @media (max-width: 900px) {
    .video-grid-1x3 {
      grid-template-columns: repeat(3, 1fr) !important;
      grid-template-rows: 1fr !important;
    }
  }
  
  .portfolio-tech-box.video-section-box {
    background: var(--content-bg);
    border-radius: 18px;
    border: none;
    box-shadow: var(--glow-size), 0 0 0 var(--border-thickness) var(--primary-pink) !important;
    padding: 22px 18px 18px 18px;
    margin: 0 auto 36px auto;
    max-width: 700px;
  }
  
  .video-section-box h2 {
    color: var(--primary-pink);
    margin-bottom: 8px;
    margin-top: 0;
    text-align: center;
  }
  
  .video-section-box .video-intro {
    color: #eee;
    font-size: 1em;
    margin-bottom: 18px;
    text-align: center;
  }
  
  .video-section-box .video-grid-1x3 {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0 auto;
    gap: 18px;
  }
  
  .video-section-box .video-card {
    background: var(--content-bg);
    border-radius: 14px;
    border: none;
    box-shadow: var(--glow-size), 0 0 0 var(--border-thickness) var(--primary-pink) !important;
  }
  
  .video-references-title {
    color: var(--primary-pink);
    text-align: center;
  }
  
  /* ==========================================================================
     31. CAMERA OPERATOR STYLES
     ========================================================================== */
  .camera-operator-box {
    margin-bottom: -65px;
    margin-top: 0;
    padding-top: 18px;
    padding-bottom: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: -47px;
    padding-left: 41px; /* Pushes text to the right for the logo */
  }
  
  .camera-operator-icon-container {
    position: absolute;
    top: 19px;
    left: 90px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: rgba(0,0,0,0.1);
  }
  
  .camera-operator-text {
    /* No specific styles needed unless you want to adjust the text further */
  }
  
  .video-section-box {
    margin-top: -45px !important;
  }
  
  /* ==========================================================================
     32. PORTFOLIO EXPERIENCE FLEX LAYOUT
     ========================================================================== */
  .portfolio-experience-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 36px;
    width: 100%;
    margin: 48px 0 0 0;
  }
  
  .hardware-tech-section {
    max-width: none !important;
    width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
  }
  
  .hardware-icon-container {
    position: absolute;
    top: 15px;
    left: 179px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: rgba(0,0,0,0.1);
  }
  @media (max-width: 900px) {
    .portfolio-experience-flex {
      flex-direction: column;
      gap: 24px;
      align-items: center;
    }
    .software-tech-section,
    .hardware-tech-section {
      margin-left: 0 !important;
      margin-right: 0 !important;
      text-align: center;
    }
  }
  
  /* ==========================================================================
     33. SOFTWARE TECH SECTION STYLES
     ========================================================================== */
  .software-text-column {
    display: flex;
    flex-direction: column;
    gap: 13px;
    flex: 1;
    width: 50%;
  }
  
  .software-tech-section,
  .software-tech-section-2,
  .software-tech-section-3 {
    margin: 0 !important;
    text-align: center;
    padding: 15.9px;
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box;
    flex-shrink: 0;
  }
  
  .software-tech-title {
    color: var(--primary-pink);
    text-align: center;
    margin-bottom: 8px;
    margin-top: 16px;
    font-size: 2.5em;
    padding-left: 46px;
    margin-bottom: 27px;
  }
  
  .software-tech-desc-1 {
    color: #eee;
    font-size: 1.1em;
    margin: 0;
    text-align: center;
    padding-top: 0;
    padding-bottom: 37px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .software-tech-desc-2 {
    color: #eee;
    font-size: 1.1em;
    margin: 0;
    text-align: center;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  
  .software-tech-desc-3 {
    color: #eee;
    font-size: 1.1em;
    margin: 0;
    text-align: center;
    padding-top: 32px;
    padding-bottom: 25px;
  }
  
  .software-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    width: 100%;
  }
  
  .software-logo-card {
    background: #181113;
    border-radius: 12px;
    border: none;
    box-shadow: var(--glow-size), 0 0 0 var(--border-thickness) var(--primary-pink) !important;
    padding: 12px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    min-height: 70px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .software-logo-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 32px 0 rgba(255,104,140,0.18);
  }
  
  .software-logo-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
  }
  
  /* ==========================================================================
     34. HARDWARE TECH SECTION STYLES
     ========================================================================== */
  .hardware-tech-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  
  .hardware-tech-title {
    color: var(--primary-pink);
    text-align: center;
    margin-bottom: -4px;
    margin-top: 0;
    font-size: 2.5em;
  }
  
  .hardware-tech-desc {
    color: #eee;
    font-size: 1.08em;
    line-height: 1.5;
    margin: 0;
    text-align: center;
  }
  
  .hardware-camera-list {
    margin: 12px 0 12px 0;
    padding-left: 20px;
    color: #fff;
  }
  
  .hardware-camera-list li {
    margin-bottom: 4px;
    font-size: 1em;
  }
  @media (max-width: 900px) {
    .portfolio-experience-flex {
      flex-direction: column;
      gap: 24px;
      align-items: center;
    }
    .hardware-tech-section {
      max-width: 100%;
      text-align: center;
    }
  }
  
  .portfolio-tech-box,
  .hardware-tech-section {
    max-width: 1200px !important;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
  }
  
  /* ==========================================================================
     35. AMP SUMMER STYLES
     ========================================================================== */
  .amp-summer-text {
    text-align: center; 
    font-size: 1.4em;
  }
  
  .amp-summer-title {
    color: var(--primary-pink);
    margin-bottom: 5px;
    font-size: 2.5em;
    text-align: center;
    position: relative;
    right: -54px;
    top: 8px;
  }
  
  .amp-summer-icon-container {
    position: absolute;
    top: 24px;
    left: 363px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: rgba(0,0,0,0.1);
  }
  /* ==========================================================================
     36. HARDWARE TECH & LOGOS CONTAINER
     ========================================================================== */
  .hardware-tech-and-logos-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
    margin-top: 38px;
  }
  
  .hardware-logos-section {
    flex: 0 0 15%;
    max-width: 15%;
    min-width: 80px;
    margin: 0;
    text-align: center;
    padding: 54px 4px;
    height: 100%;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    padding-top: 41px;
    padding-bottom: 41px;
  }
  
  .hardware-logo-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    height: 100%;
  }
  
  .hardware-text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 0px;
  }
  
  .hardware-cameras-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: -35px;
  }
  
  @media (max-width: 900px) {
    .hardware-tech-and-logos-container {
      flex-direction: column;
      gap: 24px;
    }
    .hardware-logos-section,
    .hardware-text-section,
    .hardware-cameras-section {
      max-width: 100%;
      width: 100%;
      min-width: 0;
      text-align: center;
      padding: 24px;
      min-height: unset;
      display: block;
      align-items: center;
    }
    .hardware-logo-col {
      flex-direction: row;
      gap: 18px;
      min-height: auto;
      height: auto;
      justify-content: center;
      flex: unset;
    }
    .hardware-text-section,
    .hardware-cameras-section {
      text-align: center;
      padding: 24px;
    }
  }
  
  .hardware-logos-title, .hardware-cameras-title {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0.7em;
    font-size: 1.2em;
  }
  
  .hardware-tech-desc {
    color: #eee;
    font-size: 1.08em;
    line-height: 1.5;
    margin: 0;
    padding-left: 32px;
    padding-right: 32px;
  }
  
  .hardware-logo-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    min-height: 200px;
  }
  
  .hardware-logo-card {
    background: #181113;
    border-radius: 12px;
    border: none;
    box-shadow: var(--glow-size), 0 0 0 var(--border-thickness) var(--primary-pink) !important;
    padding: 12px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    min-height: 70px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .hardware-logo-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 32px 0 rgba(255,104,140,0.18);
  }
  
  .hardware-logo-card img {
    width: 99px;
    height: 99px;
    object-fit: contain;
    display: block;
  }
  
  /* ==========================================================================
     37. CAMERA IMAGES SECTION
     ========================================================================== */
  .camera-images-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
  }
  
  .camera-image-card {
    background: transparent;
    border-radius: 12px;
    border: none;
    box-shadow: var(--glow-size), 0 0 0 var(--border-thickness) var(--primary-pink) !important;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 140px;
  }
  
  .camera-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px 0 rgba(255,104,140,0.18);
  }
  
  .camera-image-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 8px;
    border-radius: 12px;
  }
  
  .camera-images-section a:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  
  .camera-images-section a:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  
  @media (max-width: 600px) {
    .camera-images-section {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, 1fr);
      gap: 10px;
      justify-items: center;
      align-items: center;
      padding-left: 10px;
      padding-right: 10px;
    }
    .camera-image-card {
      aspect-ratio: 1 / 1;
      width: 100%;
      min-width: 0;
      min-height: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .camera-image-card img {
      aspect-ratio: 1 / 1;
      width: 100%;
      height: 100%;
      min-width: 0;
      min-height: 0;
      object-fit: contain;
      border-radius: 12px;
    }
    .camera-images-section a:nth-child(4) {
      grid-column: 1 / 2;
      grid-row: 2 / 3;
    }
    .camera-images-section a:nth-child(5) {
      grid-column: 2 / 3;
      grid-row: 2 / 3;
    }
  }
  
  .camera-image-card h4 {
    color: #fff;
    font-size: 0.9em;
    margin: 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  @media (max-width: 900px) {
    .hardware-tech-and-logos-container {
      flex-direction: column;
      gap: 24px;
    }
    
    .hardware-text-section,
    .hardware-logos-section,
    .hardware-cameras-section {
      text-align: center;
    }
    
    .hardware-logo-col {
      flex-direction: row;
      gap: 18px;
      min-height: auto;
    }
    
    .camera-images-section {
      flex-direction: column;
      gap: 16px;
    }
  }
  
  /* ==========================================================================
     38. INDUSTRY CONNECTIONS SECTION
     ========================================================================== */
  .industry-connections-section {
    background: var(--content-bg);
    border-radius: 18px;
    border: none;
    box-shadow: var(--glow-size), 0 0 0 var(--border-thickness) var(--primary-pink) !important;
    padding: 28px 18px 18px 18px;
    margin: 36px auto 36px auto;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .industry-connections-title {
    color: var(--primary-pink);
    text-align: center;
    margin-bottom: 8px;
    margin-top: 0;
    font-size: 2.5em;
    font-family: 'crosswindsnowind';
    padding-top: 31px;
  }
  
  .industry-connections-desc {
    background: transparent;
    color: #eee;
    border-radius: 0;
    padding: 0 0 18px 0;
    font-size: 1.08em;
    line-height: 1.6;
    margin: 0 auto 18px auto;
    max-width: 900px;
    box-shadow: none;
    font-family: 'crosswindsnowind';
  }
  
  .industry-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
    flex-direction: column;
  }
  
  .industry-logo-card {
    background: #181113;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .Connections-icon-container {
    position: absolute;
    top: 15px;
    left: 290px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: rgba(0,0,0,0.1);
  }
  
  .industry-logo-card:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 32px 0 rgba(255,104,140,0.18);
  }
  
  .industry-logo-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
  }
  @media (max-width: 900px) {
    .industry-logos-row {
      gap: 18px;
    }
    .industry-logo-card {
      min-width: 80px;
      min-height: 60px;
      max-width: 100px;
      max-height: 70px;
      padding: 8px 8px;
    }
    .industry-logo-card img {
      max-width: 70px;
      max-height: 40px;
    }
    .industry-connections-desc {
      padding: 0 0 12px 0;
      font-size: 1em;
    }
  }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
  }
  
  .software-clip-embed {
    margin: 16px auto 0 auto;
    max-width: 600px;
  }
  .software-clip-title {
    color: #fff;
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 12px;
    font-family: 'crosswindsnowind';
  }
  
  .logo-spacer {
    flex: 1;
    min-height: 0;
  }
  
  .software-text-column > .portfolio-tech-box {
    display: block !important;
    width: 100% !important;
    min-width: 600px;
    align-self: stretch !important;
    box-sizing: border-box;
  }
  
  /* ==========================================================================
     39. ADMINISTRATIVE EXPERIENCE SECTION
     ========================================================================== */
  .administrative-experience-content {
    display: flex;
    gap: 36px;
    align-items: flex-start;
  }
  
  .administrative-experience-text {
    flex: 1;
  }
  
  .administrative-experience-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    min-width: 150px;
  }
  
  .admin-exp-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #23232b;
    border-radius: 12px;
    border: none;
    box-shadow: var(--glow-size), 0 0 0 var(--border-thickness) var(--primary-pink) !important;
    padding: 12px 16px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 140px;
  }
  
  .admin-exp-card:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 24px 0 rgba(255,104,140,0.18);
    border-color: #ff688c;
  }
  
  .admin-exp-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
    border: none;
    box-shadow: 0 0 8px 0 rgba(255,104,140,0.10), 0 0 0 var(--border-thickness) var(--primary-pink);
  }
  
  .admin-exp-card span {
    margin-top: 4px;
    font-size: 1em;
    color: #fff;
    text-align: center;
  }
  
  .administrative-experience-icon-container {
    position: absolute;
    top: 34px;
    left: 64px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: rgba(0,0,0,0.1);
  }
  
  @media (max-width: 900px) {
    .administrative-experience-content {
      flex-direction: column;
      gap: 24px;
    }
    .administrative-experience-cards {
      flex-direction: row;
      justify-content: center;
      min-width: 0;
      width: 100%;
    }
    .admin-exp-card {
      width: 100px;
      padding: 8px 6px;
    }
    .admin-exp-card img {
      width: 70px;
      height: 70px;
    }
  }
  
  /* Administrative Experience Section */
  .administrative-experience-title {
    color: var(--primary-pink);
    text-align: center;
    margin-bottom: 28px;
    font-size: 2.5em;
    margin-top: -110px;
  }
  
  .administrative-experience-desc {
    color: #eee;
    font-size: 1.3em;
    line-height: 1.6;
    margin: 13px auto -72px auto;
    max-width: 900px;
    text-align: center;
  }
  
  /* Administrative Experience Section - Flex Layout with YouTube Cards */
  .admin-exp-flex-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }
  .admin-exp-left {
    flex: 1 1 60%;
    min-width: 0;
  }
  .admin-exp-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
    flex: 0 0 320px;
    min-width: 220px;
    align-items: flex-end;
  }
  .admin-exp-yt-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    color: #fff;
    text-decoration: none;
    transition: none;
    width: auto;
    max-width: 100%;
  }
  .admin-exp-yt-card img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: none;
    background: var(--content-bg);
  }
  .admin-exp-yt-card span {
    font-size: 1.1em;
    color: #fff;
    text-align: left;
    font-family: 'crosswindsnowind';
    margin-left: 12px;
  }
  .admin-exp-yt-card:hover {
    transform: none;
    box-shadow: none;
    border-color: none;
  }
  
  @media (max-width: 900px) {
    .admin-exp-flex-row {
      flex-direction: column;
      gap: 24px;
    }
    .admin-exp-right {
      flex-direction: row;
      gap: 12px;
      align-items: flex-start;
      justify-content: center;
      width: 100%;
      min-width: 0;
    }
    .admin-exp-yt-card {
      width: 100%;
      min-width: 0;
      flex: 1;
      padding: 10px 8px;
      gap: 10px;
    }
    .admin-exp-yt-card img {
      width: 80px;
      height: 60px;
    }
    .admin-exp-yt-card span {
      font-size: 1em;
      margin-left: 8px;
    }
  }
  
  /* Industry Connections Flex Layout */
  .industry-connections-flex {
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 36px auto;
    align-items: flex-start;
  }
  
  .industry-connections-text-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .industry-connections-images-column {
    flex-shrink: 0;
    width: 320px;
  }
  
  .industry-connections-box-1,
  .industry-connections-box-2 {
    background: var(--content-bg);
    border-radius: 18px;
    border: none;
    box-shadow: var(--glow-size), 0 0 0 var(--border-thickness) var(--primary-pink) !important;
    padding: 28px 22px 22px 22px;
  }
  
  .industry-connections-box-1 .industry-connections-desc,
  .industry-connections-box-2 .industry-connections-desc {
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .industry-connections-box-1 p,
  .industry-connections-box-2 p {
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
  }
  
  .industry-connections-box-3 {
    background: var(--content-bg);
    border-radius: 18px;
    border: none;
    box-shadow: var(--glow-size), 0 0 0 var(--border-thickness) var(--primary-pink) !important;
    padding: 16px 12px 12px 12px;
  }
  
  @media (max-width: 900px) {
    .industry-connections-flex {
      flex-direction: column;
      gap: 24px;
    }
    
    .industry-connections-images-column {
      width: 100%;
    }
  }
  /* ==========================================================================
     40. ABOUT ME SECTION
     ========================================================================== */
  .about-me-section {
    background: var(--content-bg);
    border-radius: 18px;
    border: none;
    box-shadow: var(--glow-size), 0 0 0 var(--border-thickness) var(--primary-pink) !important;
    padding: 28px 22px 0px 22px;
    margin: 36px auto 36px auto;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .about-me-title {
    color: var(--primary-pink);
    text-align: center;
    margin-bottom: 24px;
    margin-top: 16px;
    font-size: 2.5em;
    font-family: 'crosswindsnowind';
  }
  
  .about-me-content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
  }
  
  .about-me-text {
    flex: 1;
    color: #eee;
    font-size: 1.08em;
    line-height: 1.6;
    font-family: crosswindsnowind';
  }
  
  .about-me-text p {
    margin-bottom: 16px;
    margin-top: 0;
    text-align: center;
  }
  
  .about-me-signature {
    font-style: italic;
    color: var(--primary-pink) !important;
    margin-top: 24px !important;
    font-size: 1.3em;
  }
  
  .about-me-images {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 320px;
  }
  
  .about-me-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    border: none;
    box-shadow: 0 0 8px 0 rgba(255,104,140,0.10), 0 0 0 var(--border-thickness) var(--primary-pink);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .about-me-icon-container {
    position: absolute;
    top: 27px;
    left: 400px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: rgba(0,0,0,0.1);
  }
  
  .about-me-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px 0 rgba(255,104,140,0.18);
  }
  
  @media (max-width: 900px) {
    .about-me-content {
      flex-direction: column;
      gap: 24px;
    }
    
    .about-me-images {
      width: 100%;
      flex-direction: row;
      justify-content: center;
    }
    
    .about-me-image {
      width: 200px;
      height: 150px;
    }
  }
  
  /* ==========================================================================
     41. YOUTUBE CHANNELS SECTION
     ========================================================================== */
  .youtube-channels-section {
    background: #18181b;
    border-radius: 18px;
    border: none;
    box-shadow: var(--glow-size), 0 0 0 var(--border-thickness) var(--primary-pink) !important;
    padding: 28px 22px 22px 22px;
    margin: 36px auto 36px auto;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .youtube-channels-title {
    color: var(--primary-pink);
    text-align: center;
    margin-bottom: 24px;
    margin-top: 0;
    font-size: 1.5em;
    font-family: 'crosswindsnowind';
  }
  
  .youtube-channels-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    width: 100%;
  }
  
  .youtube-channel-card {
    display: flex;
    align-items: center;
    background: #23232b;
    border-radius: 12px;
    border: none;
    box-shadow: var(--glow-size), 0 0 0 var(--border-thickness) var(--primary-pink) !important;
    padding: 10px 24px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 380px;
    max-width: 100%;
    gap: 18px;
  }
  
  .youtube-channel-card:hover {
    box-shadow: 0 0 15px var(--primary-pink), 0 8px 32px 0 rgba(255,104,140,0.18);
    transform: translateY(-6px) scale(1.03);
    z-index: 2;
  }
  
  .youtube-channel-card img {
    width: 120px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: none;
    box-shadow: 0 0 8px 0 rgba(255,104,140,0.10), 0 0 0 var(--border-thickness) var(--primary-pink);
    background: var(--content-bg);
  }
  
  .youtube-channel-card span {
    font-size: 1.1em;
    color: #fff;
    text-align: left;
    font-family: 'crosswindsnowind';
  }
  
  @media (max-width: 700px) {
    .youtube-channels-cards {
      gap: 12px;
    }
    .youtube-channel-card {
      width: 100%;
      flex-direction: column;
      align-items: center;
      padding: 10px 8px;
      gap: 8px;
    }
    .youtube-channel-card img {
      width: 100%;
      height: 90px;
    }
    .youtube-channel-card span {
      text-align: center;
    }
  }
  
  /* Admin Exp + YouTube Cards Flex Row Layout (diagram style) */
  .admin-exp-youtube-flex-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    margin-top: -25px;
    /* Consistent section spacing */
  }
  .admin-exp-youtube-flex-row > .portfolio-tech-box.administrative-experience-section {
    flex: 1 1 700px;
    min-width: 400px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .admin-exp-youtube-right-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 0 0 380px;
    min-width: 260px;
    align-items: stretch;
    margin-top: 2px;
  }
  .admin-exp-yt-card img {
    display: none;
  }
  @media (max-width: 1100px) {
    .admin-exp-youtube-flex-row {
      flex-direction: column;
      gap: 32px;
      align-items: stretch;
    }
    .admin-exp-youtube-right-col {
      flex-direction: row;
      gap: 16px;
      width: 100%;
      min-width: 0;
      align-items: flex-start;
      justify-content: center;
    }
    .youtube-channel-card {
      width: 100%;
      min-width: 0;
      flex: 1;
      height: 110px;
    }
    .admin-exp-yt-card span {
      font-size: 1em;
    }
  }
  
  /* Admin Experience YouTube channel cards: image-only visible as card */
  .admin-exp-youtube-right-col .youtube-channel-card.channel-1,
  .admin-exp-youtube-right-col .youtube-channel-card.channel-2,
  .admin-exp-youtube-right-col .youtube-channel-card.channel-3 {
    /* background: transparent !important; */
    /* border: none !important; */
    /* box-shadow: none !important; */
    padding: 0 !important;
    gap: 0 !important;
    margin: -3px 0 0 auto !important;
    width: auto !important;
    height: auto !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-end !important;
  }
  .admin-exp-youtube-right-col .youtube-channel-card.channel-1 img,
  .admin-exp-youtube-right-col .youtube-channel-card.channel-2 img,
  .admin-exp-youtube-right-col .youtube-channel-card.channel-3 img {
    display: block;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    border-radius: 18px !important;
    box-shadow: none !important;
    border: none !important;
  }
  
  /* Admin Experience YouTube channel cards: slide cards to the left */
  .admin-exp-youtube-right-col .youtube-channel-card.channel-1,
  .admin-exp-youtube-right-col .youtube-channel-card.channel-2,
  .admin-exp-youtube-right-col .youtube-channel-card.channel-3 {
    margin-left: -40px !important;
  }
  
  /* Admin Experience YouTube channel cards: force cards to the far left */
  .admin-exp-youtube-right-col {
    align-items: flex-start !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  .admin-exp-youtube-right-col .youtube-channel-card.channel-1,
  .admin-exp-youtube-right-col .youtube-channel-card.channel-2,
  .admin-exp-youtube-right-col .youtube-channel-card.channel-3 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .portfolio-experience-flex, .industry-connections-container {
    flex: 1;
    margin-top: 0;
  }
  
  .portfolio-hero {
    text-align: center;
    margin: 48px 0 32px 0;
  }
  
  .talent-grid-2x3 {
    gap: 18px;
    align-self: flex-start;
    margin-top: -32px;
  }
  
  .portfolio-hero h1 {
    font-size: 2.2em;
    color: var(--primary-pink);
    margin-bottom: 0.3em;
  }
  
  .portfolio-hero p {
    color: #eee;
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .talent-card {
    background: var(--content-bg);
    border-radius: 18px;
    border: none;
    box-shadow: var(--glow-size), 0 0 0 var(--border-thickness) var(--primary-pink) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 18px 22px 18px;
    min-height: 200px;
    transition: transform 0.18s;
    cursor: pointer;
  }
  
  .video-card {
    background: var(--content-bg);
    border-radius: 18px;
    border: none;
    box-shadow: var(--glow-size), 0 0 0 var(--border-thickness) var(--primary-pink) !important;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: auto;
  }
  
  .video-thumbnail img 
  {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px 0 rgba(255,104,140,0.18);
  }
  
  .video-thumbnail {
    position: relative;
    width: 100%;
    cursor: pointer;
  }
  
  .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 104, 140, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 104, 140, 0.4);
  }
  
  .video-card:hover .play-overlay {
    background: var(--primary-pink);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 104, 140, 0.6);
  }
  
  .video-info h3 {
    color: #fff;
    font-size: 1.3em;
    margin-bottom: 8px;
    padding: 20px;
    text-align: center;
  }
  
  .video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .video-modal.active {
    opacity: 1;
    visibility: visible;
  }
  
  .video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 104, 140, 0.3);
  }
  
  .video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--primary-pink);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .talent-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: none;
    margin-bottom: 18px;
    background: var(--content-bg);
    box-shadow: 0 0 16px 0 rgba(255,104,140,0.10);
    transition: all 0.3s ease;
  }
  
  
  
  .talent-card h3 {
    color: var(--primary-pink);
    font-size: 1.25em;
    margin-bottom: 0.3em;
    margin-top: 0;
    text-align: center;
  }
  
  .video-section-box {
    margin-top: -30px !important;
  }
  
  .software-tech-section {
    max-width: 50% !important;
    margin: 0 auto 24px auto;
  }
  
  .software-tech-and-logos-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 40px !important;
    width: 100%;
    margin-bottom: 24px;
  }
  
  .software-right-column {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    align-items: flex-start !important;
    margin-left: -18px !important;
  }
  
  .software-logos-box {
    background: var(--content-bg);
    border-radius: 18px;
    border: none;
    box-shadow: var(--glow-size), 0 0 0 var(--border-thickness) var(--primary-pink) !important;
    padding: 15px 20px 20px 20px !important;
    margin-top: 0px !important;
    margin-bottom: -48px !important;
  }
  
  .software-logos-box .software-logo-row {
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    height: 100% !important;
    display: flex !important;
    min-height: 150px !important;
    flex-direction: row !important;
  }
  
  .software-logos-box .software-logo-card {
    padding: 0px 0px !important;
    min-width: 115px !important;
    min-height: 115px !important;
  }
  
  .software-logos-box .software-logo-card img {
    width: 93px !important;
    height: 93px !important;
  }
  
  .software-clip-box {
    background: var(--content-bg);
    border-radius: 18px;
    border: none;
    box-shadow: var(--glow-size), 0 0 0 var(--border-thickness) var(--primary-pink) !important;
    padding: -5px 12px 22px 12px !important;
    margin-top: 40px !important;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
    min-width: auto !important;
    width: auto !important;
    flex-shrink: 0;
  }
  
  .software-clip-box .software-clip-embed {
    margin: 0 !important;
    max-width: 620px !important;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background: var(--primary-dark);
    font-size: 0.8em;
    margin-top: auto;
  }
  
  .portfolio-intro {
    font-size: 1.08em;
  }
  
  /* --- MOBILE LAYOUT IMPROVEMENTS --- */
  @media (max-width: 600px) {
    .portfolio-hero-talent-flex,
    .software-tech-and-logos-container,
    .hardware-tech-and-logos-container,
    .industry-connections-container,
    .admin-exp-youtube-flex-row,
    .about-me-section {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      width: 100%;
      margin-bottom: 32px;
      margin-top: 0;
      padding: 0 0 0 0;
      box-sizing: border-box;
    }
    .portfolio-hero-talent-flex > *,
    .software-tech-and-logos-container > *,
    .hardware-tech-and-logos-container > *,
    .industry-connections-container > *,
    .admin-exp-youtube-flex-row > *,
    .about-me-section > * {
      margin-bottom: 0;
      margin-top: 0;
    }
    .container {
      width: 100%;
      max-width: 100%;
      padding: 0 0 0 0;
      margin: 0 auto;
    }
    header {
      padding: 6px 0;
    }
    .header-logo-profile {
      flex-direction: column;
      gap: 12px;
      top: 80px;
    }
    .profile-picture {
      width: 80px;
      height: 80px;
    }
    .Logo {
      width: 90px;
    }
    .portfolio-hero-talent-flex {
      flex-direction: column;
      gap: 16px;
      margin-bottom: 24px;
    }
    .talent-grid-2x3 {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(6, 1fr);
      gap: 10px;
    }
    .talent-card {
      max-width: 98vw;
      padding: 10px 4px 8px 4px !important;
    }
    .talent-img {
      width: 60px;
      height: 60px;
      margin-bottom: 6px;
    }
    .portfolio-tech-box {
      padding: 10px 4px 10px 4px;
      max-width: 99vw;
    }
    .video-grid-1x3 {
      grid-template-columns: 1fr !important;
      grid-template-rows: repeat(3, 1fr) !important;
      gap: 10px;
    }
    .video-card {
      min-width: 0;
      max-width: 100vw;
      height: auto;
    }
    .video-thumbnail img {
      height: 120px;
    }
    .software-tech-and-logos-container,
    .hardware-tech-and-logos-container {
      flex-direction: column !important;
      gap: 12px !important;
      align-items: stretch !important;
    }
    .software-text-column,
    .software-right-column {
      width: 100% !important;
      gap: 10px !important;
    }
    .hardware-logo-col {
      flex-direction: row;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .hardware-logo-card {
      min-width: 60px;
      min-height: 60px;
      width: 60px;
      height: 60px;
      padding: 6px;
    }
    .hardware-logo-card img {
      width: 40px;
      height: 40px;
    }
    .camera-images-section {
      flex-direction: column;
      gap: 8px;
    }
    .camera-image-card {
      padding: 6px;
    }
    .camera-image-card img {
      width: 50px;
      height: 50px;
    }
    .industry-logos-row {
      flex-direction: row;
      gap: 8px;
      flex-wrap: wrap;
    }
    .industry-logo-card {
      min-width: 40px;
      min-height: 40px;
      max-width: 60px;
      max-height: 60px;
      padding: 4px;
    }
    .industry-logo-card img {
      max-width: 40px;
      max-height: 40px;
    }
    .admin-exp-youtube-flex-row {
      flex-direction: column;
      gap: 12px;
      align-items: stretch;
    }
    .admin-exp-youtube-right-col {
      flex-direction: row;
      gap: 6px;
      width: 100%;
      min-width: 0;
      align-items: flex-start;
      justify-content: center;
    }
    .youtube-channel-card {
      width: 100%;
      min-width: 0;
      flex: 1;
      height: 60px;
    }
    .admin-exp-yt-card img {
      width: 40px;
      height: 40px;
    }
    .about-me-content {
      flex-direction: column;
      gap: 10px;
    }
    .about-me-images {
      width: 100%;
      flex-direction: row;
      justify-content: center;
      gap: 8px;
    }
    .about-me-image {
      width: 80px;
      height: 60px;
    }
    .site-footer, footer {
      font-size: 0.9em;
      padding: 10px 2vw;
      width: 100vw;
      box-sizing: border-box;
      left: 0;
      right: 0;
      margin: 0;
    }
  }
  
  /* Hide mobile images on desktop */
  .mobile-section-image {
    display: none;
  }
  
  /* Mobile Popup Styles */
  .mobile-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
  }
  
  .mobile-popup.active {
    display: flex;
  }
  
  /* Prevent scrolling when popup is active */
  body.popup-active {
    overflow: hidden;
  }
  
  .mobile-popup-content {
    background: var(--content-bg);
    border: 2px solid var(--primary-pink);
    border-radius: 16px;
    padding: 32px;
    max-width: 90%;
    width: 400px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(255, 104, 140, 0.2);
    position: relative;
  }
  
  .mobile-popup-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: rgba(255, 104, 140, 0.1);
  }
  
  .mobile-popup-icon i {
    font-size: 36px;
    color: var(--primary-pink);
  }
  
  .mobile-popup-content h2 {
    color: var(--primary-pink);
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
  }
  
  .mobile-popup-content p {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
    opacity: 0.9;
  }
  
  .mobile-continue-btn {
    background: linear-gradient(135deg, var(--primary-pink), #ff6b9d);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 104, 140, 0.3);
  }
  
  .mobile-continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 104, 140, 0.4);
  }
  
  .mobile-continue-btn:active {
    transform: translateY(0);
  }
  
  /* Mobile Image Display - Force show on mobile and hide regular content */
  @media (max-width: 600px) {
    /* Hide all regular content on mobile */
    .portfolio-hero-talent-flex,
    .portfolio-experience-flex,
    .industry-connections-container,
    .admin-exp-youtube-flex-row,
    .portfolio-tech-box {
      display: none !important;
    }
    
    /* Show mobile images */
    .mobile-section-image {
      display: block !important;
      width: 100%;
      max-width: 100%;
      height: auto;
      margin-bottom: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    
    .mobile-section-image:last-child {
      margin-bottom: 40px;
    }
  }
  
  @media (max-width: 400px) {
    .header-text {
      font-size: 1.1em;
    }
    .main-nav {
      gap: 4px;
    }
    .nav-tab {
      padding: 4px 6px;
      font-size: 0.9em;
    }
    .profile-picture {
      width: 50px;
      height: 50px;
    }
    .Logo {
      width: 50px;
    }
  }
  
  @media (max-width: 600px) {
    .container {
      width: 100%;
      max-width: 100%;
      padding-left: 10px;
      padding-right: 10px;
      margin: 180px auto 0 auto;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .container > * {
      margin-left: auto;
      margin-right: auto;
      width: 100%;
      text-align: center;
    }
    .portfolio-hero-talent-flex,
    .software-tech-and-logos-container,
    .hardware-tech-and-logos-container,
    .industry-connections-container,
    .admin-exp-youtube-flex-row,
    .about-me-section {
      align-items: center;
      text-align: center;
      width: 100%;
    }
    .portfolio-hero-talent-flex > *,
    .software-tech-and-logos-container > *,
    .hardware-tech-and-logos-container > *,
    .industry-connections-container > *,
    .admin-exp-youtube-flex-row > *,
    .about-me-section > * {
      margin-left: auto;
      margin-right: auto;
      width: 100%;
      text-align: center;
    }
  }
  
  @media (max-width: 600px) {
    .header-logo-profile {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 18px;
      top: 150px !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      position: absolute;
      width: 100vw;
      z-index: 10;
    }
    .Logo {
      width: 120px !important;
      height: auto !important;
      display: block !important;
    }
    .profile-picture {
      width: 100px !important;
      height: 100px !important;
      display: block !important;
    }
  }
  
  @media (max-width: 600px) {
    .talent-card {
      max-width: 95vw;
      width: 100%;
      padding: 10px 4px 8px 4px;
      margin: 0 !important;
      box-sizing: border-box;
    }
    .talent-img {
      width: 60px;
      height: 60px;
      margin-bottom: 6px;
    }
  }
  
  @media (min-width: 601px) {
    .header-logo-profile {
      gap: 60px;
    }
    .Logo {
      width: 200px;
      height: auto;
      display: block;
    }
    .profile-picture {
      width: 170px;
      height: 170px;
      display: block;
    }
  }
  
  .about-me-images-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 120px;
    margin: -50px 0 0 0;
    width: 100%;
    margin-top: -25px;
  }
  .about-me-image-box {
    flex: 1 1 0;
    max-width: 320px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--content-bg) !important;
    border: none;
    box-shadow: 0 0 12px 0 rgba(255,104,140,0.10), 0 0 0 var(--border-thickness) var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .about-me-image-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }
  @media (max-width: 600px) {
    .about-me-images-row {
      flex-direction: column;
      gap: 24px;
      align-items: center;
    }
    .about-me-image-box {
      max-width: 95vw;
    }
  }
  
  .youtube-channel-card {
    transition: box-shadow 0.18s, transform 0.18s;
  }
  .youtube-channel-card:hover {
    box-shadow: 0 8px 32px 0 rgba(255,104,140,0.18);
    transform: translateY(-6px) scale(1.03);
    z-index: 2;
  }
  
  .admin-exp-pink-border {
    position: relative;
    top: 0;
    margin-top: 10px !important;
    border: 2px solid var(--primary-pink, #ff69b4);
    border-radius: 18px;
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .admin-exp-youtube-cards-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
  }
  
  .admin-exp-youtube-right-col {
    max-width: 1800px;
    width: 103%;
  }
  
  .portfolio-hero-talent-flex {
    margin-top: 0px !important;
    margin-bottom: 24px !important;
  }
  .software-tech-and-logos-container {
    margin-top: -10px !important;
    margin-bottom: 24px !important;
  }
  .industry-connections-container {
    margin-top: 0px !important;
    margin-bottom: 24px !important;
  }
  .admin-exp-youtube-flex-row {
    margin-top: 21px !important;
    margin-bottom: -7px !important;
  }
  
  .hardware-tech-and-logos-container {
    margin-top: 15px !important;
    margin-bottom: 24px !important;
  }
  
  .portfolio-tech-box.about-me-section {
    margin-top: -10px !important;
    margin-bottom: 24px !important;
  }
  
  .portfolio-experience-flex,
  .admin-exp-youtube-flex-row,
  .industry-connections-container {
    gap: 24px !important;
  }
  
  .industry-connections-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .industry-connections-box-1,
  .industry-connections-box-2,
  .industry-connections-box-3 {
    margin-top: 15px !important;
    padding-top: 0 !important;
    margin-bottom: 8px !important;
  }
  
  .portfolio-tech-box.industry-connections-box-2 {
    margin-top: -18px !important;
    padding-top: 8px !important;
  }
  
  .portfolio-tech-box.industry-connections-box-3 {
    margin-top: -18px !important;
    padding-top: 8px !important;
    padding-bottom: 15px !important;
  }
  
  /* --- Portfolio blocks: match main page border effect --- */
  .portfolio-tech-box,
  .portfolio-tech-box.video-section-box,
  .video-card,
  .talent-card,
  .software-logo-card,
  .hardware-logo-card,
  .camera-image-card,
  .industry-logo-card,
  .youtube-channel-card,
  .admin-exp-card,
  .about-me-image,
  .about-me-image-box,
  .brand-logo-card {
    border: var(--border-thickness) solid var(--primary-pink) !important;
    box-shadow: var(--glow-size) !important;
  }
  
  /* Hover effect for all major blocks */
  .portfolio-tech-box:hover,
  .portfolio-tech-box.video-section-box:hover,
  .video-card:hover,
  .talent-card:hover,
  .software-logo-card:hover,
  .hardware-logo-card:hover,
  .camera-image-card:hover,
  .industry-logo-card:hover,
  .youtube-channel-card:hover,
  .admin-exp-card:hover,
  .about-me-image:hover,
  .about-me-image-box:hover,
  .brand-logo-card:hover {
    box-shadow: 0 0 15px var(--primary-pink) !important;
  }
  
  /* Remove any old box-shadow or border rules for these classes below (if present) */
  .portfolio-tech-box.video-section-box .video-card,
  .video-section-box .video-card {
    border: none !important;
    box-shadow: 0 0 6px var(--primary-pink) !important;
  }
  .portfolio-tech-box.video-section-box .video-card:hover,
  .video-section-box .video-card:hover {
    box-shadow: 0 0 15px var(--primary-pink) !important;
  }
  
  .portfolio-tech-box.video-section-box .video-grid-1x3 {
    display: flex !important;
    justify-content: center;
    gap: 28px;
    padding: 0;
    margin: 0 auto;
  }
  .portfolio-tech-box.video-section-box .video-card,
  .video-section-box .video-card {
    max-width: 250px;
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
  .portfolio-tech-box.video-section-box .video-card img,
  .video-section-box .video-card img {
    height: 140px;
  }
  @media (max-width: 700px) {
    .portfolio-tech-box.video-section-box .video-grid-1x3 {
      flex-direction: column !important;
      align-items: center;
      gap: 18px;
    }
    .portfolio-tech-box.video-section-box .video-card,
    .video-section-box .video-card {
      max-width: 98vw;
      height: auto;
    }
    .portfolio-tech-box.video-section-box .video-card img,
    .video-section-box .video-card img {
      height: 110px;
    }
  }
  
  /* Streaming Stats Section */
  .stats-section {
    margin-top: 18px;
    margin-bottom: -5px;
    padding: 15px 0px;
    text-align: center;
    background: var(--content-bg);
    border-radius: 18px;
    max-width: 900px;
    border: none !important;
    box-shadow: none !important;
  }
  .stats-title {
    color: var(--primary-pink);
    font-size: 2em;
    margin-bottom: 24px;
    font-family: 'crosswindsnowind';
  }
  .stats-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .stat-card {
    background: #1a1a1a;
    border-radius: 15px;
    box-shadow: var(--glow-size);
    padding: 16px 18px;
    min-width: 120px;
    margin: 8px 0;
  }
  .stat-number {
    color: #fff;
    font-size: 1.9em;
    font-family: 'crosswindsnowind';
    font-weight: bold;
    margin-bottom: 8px;
    transition: color 0.3s;
    display: inline-block;
    position: relative;
    min-width: 8ch;
  }
  
  .stat-number.counting {
    color: #7CFC98 !important;
    transition: color 0.3s;
  }
  .stat-number::after {
    content: '99,999,999';
    visibility: hidden;
    pointer-events: none;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    position: absolute;
    left: 0;
    top: 0;
    white-space: pre;
  }
  .stat-label {
    color: var(--primary-pink);
    font-size: 1.05em;
    font-family: 'crosswindsnowind';
  }
  @media (max-width: 700px) {
    .stats-grid {
      gap: 18px;
    }
    .stat-card {
      padding: 18px 8px;
      min-width: 110px;
    }
    .stat-number {
      font-size: 1.5em;
    }
    .stats-title {
      font-size: 1.3em;
    }
  }
  
  .software-logo-row img {
    background: #181113;
    border-radius: 12px;
    padding: 0px;
    display: block;
  }
  
  .software-logo-img-wrap {
    position: relative;
    display: inline-block;
    width: 93px;
    height: 93px;
  }
  .software-logo-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    border-radius: 12px;
    background: #181113;
    transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
  }
  .software-logo-img.default {
    opacity: 1;
    z-index: 1;
  }
  .software-logo-img.hover {
    opacity: 0;
    z-index: 2;
  }
  .software-logo-card:hover .software-logo-img.hover {
    opacity: 1;
  }
  .software-logo-card:hover .software-logo-img.default {
    opacity: 0;
  }
  
  .former-clients-box {
    background: var(--content-bg);
    border-radius: 18px;
    border: var(--border-thickness) solid var(--primary-pink);
    box-shadow: var(--glow-size);
    text-align: center;
    width: 360px;
    box-sizing: border-box;
    padding: 15px 0px 708px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    top: -44px;
    margin-top: 24px;
  }
  .former-clients-title {
    font-size: 1.7em;
    margin-bottom: 8px;
    font-family: 'crosswindsnowind';
  }
  .former-clients-list {
    color: #eee;
    font-size: 1.08em;
    font-family: 'crosswindsnowind';
  }
  @media (max-width: 900px) {
    .former-clients-box {
      max-width: 98vw;
      min-width: 0;
      padding: 12px 6px 8px 6px;
    }
    .former-clients-title {
      font-size: 1.1em;
    }
  }
  
  .portfolio-hero-talent-flex > .talent-grid.talent-grid-2x3 {
    margin-top: 20px !important;
  }
  
  .hardware-logo-img-wrap {
    position: relative;
    display: block;
    width: 99px;
    height: 99px;
    background: #181113;
  }
  .hardware-logo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    background: #181113;
    transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    display: block;
    margin: 0;
  }
  
  .hardware-logo-img.default {
    opacity: 1;
    z-index: 1;
  }
  .hardware-logo-img.hover {
    opacity: 0;
    z-index: 2;
  }
  .hardware-logo-card:hover .hardware-logo-img.hover {
    opacity: 1;
  }
  .hardware-logo-card:hover .hardware-logo-img.default {
    opacity: 0;
  }
  
  .industry-logo-img-wrap {
    position: relative;
    display: block;
    width: 85px;
    height: 85px;
    background: #181113;
  }
  .industry-logo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    background: #181113;
    transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    display: block;
    margin: 0;
  }
  .industry-logo-img.default {
    opacity: 1;
    z-index: 1;
  }
  .industry-logo-img.hover {
    opacity: 0;
    z-index: 2;
  }
  .industry-logo-card:hover .industry-logo-img.hover {
    opacity: 1;
  }
  .industry-logo-card:hover .industry-logo-img.default {
    opacity: 0;
  }
  
  .talent-grid-2x3 {
    padding-top: 55px;
  }
  
  .amp-summer-box {
    margin-top: -46px;
    margin-bottom: 65px;
    background-color: #352b2d;
    border-color: #ffffff !important;
    position: relative; /* Needed for absolute positioning of the logo */
    padding-left: 10px; /* Pushes text to the right to make space for the logo */
  }
  
  .clock-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 70px;
    height: auto;
  }
  
  .portfolio-tech-box.specialized-hardware-section {
    margin-top: -35px;
  }
  
  .specialized-hardware-section {
    text-align: center;
    position: relative;
    width: calc(100% + 200px); /* Makes the box 100px wider */
    left: -200px; /* Shifts the box 100px to the left */
    margin-bottom: -5px;
  }
  
  .hardware-list {
    list-style: none;
    padding: 0;
    margin: 1em 0 0 0;
    display: inline-block;
    text-align: left;
  }
  
  .hardware-list li {
    background: rgba(255, 104, 140, 0.1);
    padding: 0.5em 1em;
    margin-bottom: 0.5em;
    border-radius: 8px;
    border-left: 4px solid var(--primary-pink);
  }
  
  .specialized-hardware-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
  }
  
  .specialized-hardware-image-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    padding: 10px;
    border-radius: 18px;
    border: var(--border-thickness) solid var(--primary-pink);
    box-shadow: var(--glow-size);
  }
  
  .specialized-hardware-image-card:hover {
    transform: translateY(-5px);
  }
  
  .specialized-hardware-image-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
  }
  
  .specialized-hardware-image-card h4 {
    color: #fff;
    font-size: 0.9em;
    text-align: center;
    margin: 0;
    white-space: nowrap;
  }
  
  .brand-deals-section {
    text-align: center;
  }
  
  .brand-deals-title {
    color: var(--primary-pink);
    margin-bottom: 1em;
    font-size: 2.5em;
  }
  
  .brand-deals-icon-container {
    position: absolute;
    top: 16px;
    left: 216px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: rgba(0,0,0,0.1);
  }
  
  .brand-list {
    font-style: italic;
    color: #ccc;
    margin: 1em 0;
  }
  
  .brand-icons-container {
    margin-top: 1.5em;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
  }
  
  .brand-logo-card {
    position: relative;
    background: var(--content-bg);
    border-radius: 18px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    min-width: 100px;
    max-width: 110px;
    min-height: 100px;
    max-height: 110px;
  }
  
  .brand-logo-card:hover {
    transform: translateY(-5px);
  }
  
  .brand-logo-img-wrap {
    position: relative;
    display: inline-block;
    width: 85px;
    height: 85px;
  }
  
  .brand-logo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
  }
  
  .brand-logo-img.hover {
    opacity: 0;
  }
  
  .brand-logo-card:hover .brand-logo-img.hover {
    opacity: 1;
  }
  
  .brand-logo-card:hover .brand-logo-img.default {
    opacity: 0;
  }
  
  .content-metrics-section {
    margin-top: 11px;
    margin-bottom: 30px;
    background: var(--content-bg);
    border-radius: 18px;
    padding: 29px 18px 18px 18px;
    max-width: 900px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .content-metrics-analytics {
    display: flex;
    flex-direction: row;
    gap: 36px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .content-metrics-block {
    background: #23232b;
    border-radius: 12px;
    border: none;
    box-shadow: 0 0 8px 0 rgba(255,104,140,0.10), 0 0 0 var(--border-thickness) var(--primary-pink);
    padding: 18px 24px;
    min-width: 220px;
    max-width: 280px;
    flex: 1 1 220px;
    margin-bottom: 0;
    text-align: left;
  }
  
  .Metrics-icon-container {
    position: absolute;
    top: 15px;
    left: 336px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: rgba(0,0,0,0.1);
  }
  
  @media (max-width: 900px) {
    .content-metrics-analytics {
      flex-direction: column;
      gap: 18px;
      align-items: stretch;
    }
    .content-metrics-block {
      max-width: 100%;
      min-width: 0;
      width: 100%;
      text-align: left;
    }
  }
  
  .collaborations-section {
    margin-top: 15px;
    margin-bottom: 32px;
    background: var(--content-bg);
    border-radius: 18px;
    padding: 28px 18px 22px 18px;
    max-width: 900px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border: var(--border-thickness) solid var(--primary-pink) !important;
    box-shadow: var(--glow-size) !important;
  }
  .collaborations-title {
    color: var(--primary-pink);
    font-size: 2.5em;
    margin-bottom: 18px;
    font-family: 'crosswindsnowind';
  }
  .collaborations-videos {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }
  .collab-video-embed {
    flex: 1 1 320px;
    max-width: 400px;
    min-width: 280px;
    margin-bottom: 0;
  }
  
  .collaborations-icon-container {
    position: absolute;
    top: 15px;
    left: 347px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: rgba(0,0,0,0.1);
  }
  @media (max-width: 900px) {
    .collaborations-section {
      padding: 18px 4vw 18px 4vw;
    }
    .collaborations-videos {
      flex-direction: column;
      gap: 24px;
      align-items: center;
    }
    .collab-video-embed {
      max-width: 98vw;
      min-width: 0;
      width: 100%;
    }
  }
  
  .youtube-subs-images-box {
    flex: 1;
    min-height: 300px;
    width: 600px;
    background: var(--content-bg);
    border-radius: 12px;
    border: 1px solid var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 0px;
    margin-left: 0px;
  }
  
  .youtube-stats-container {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
    padding: 0px 20px -1px 10px;
  }
  
  .youtube-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }
  
  .youtube-stat-item:hover {
    background-color: rgba(255, 104, 140, 0.1);
  }
  
  .youtube-stat-pfp {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }
  
  .youtube-stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  
  .youtube-stat-name {
    color: #fff;
    font-size: 1.1em;
    font-weight: bold;
    white-space: nowrap;
  }
  
  .youtube-stat-number {
    color: var(--primary-pink);
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
  }

  /* YouTube subscriber count states */
  .youtube-stat-number.loading {
    color: #888;
    opacity: 0.7;
  }

  .youtube-stat-number.error {
    color: #ff6b6b;
    opacity: 0.8;
  }

  .youtube-stat-number.live {
    color: var(--primary-pink);
    opacity: 1;
  }
  
  .youtube-stat-label {
    color: #ccc;
    font-size: 0.9em;
    white-space: nowrap;
  }
  
  .youtube-stat-additional-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-left: -13px;
    margin-top: -64px;
  }
  
  .portfolio-tech-box.administrative-experience-section {
    position: relative;
    flex: 0.5;
  }
  
  /* Recent Work Section Responsive Scaling */
  .recent-work-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .recent-work-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    position: relative;
    right: -53px;
  }
  
  .amp-summer-box .amp-summer-icon-container {
    transition: all 0.3s ease;
  }
  
  .amp-summer-box .amp-summer-icon-container img {
    transition: all 0.3s ease;
  }
  
  .amp-summer-box .amp-summer-title {
    transition: all 0.3s ease;
  }
  
  .recent-work-image {
    transition: all 0.3s ease;
  }
  
  @media (max-width: 1200px) {
    .amp-summer-box .amp-summer-icon-container {
      transform: scale(0.95);
    }
    
    .amp-summer-box .amp-summer-icon-container img {
      width: 52px !important;
      height: 52px !important;
    }
    
    .amp-summer-box .amp-summer-title {
      font-size: 0.95em;
    }
    
    .recent-work-image {
      width: 76px !important;
      height: 76px !important;
      right: -50px !important;
    }
  }
  
  @media (max-width: 900px) {
    .amp-summer-box .amp-summer-icon-container {
      transform: scale(0.9);
    }
    
    .amp-summer-box .amp-summer-icon-container img {
      width: 50px !important;
      height: 50px !important;
    }
    
    .amp-summer-box .amp-summer-title {
      font-size: 0.9em;
    }
    
    .recent-work-image {
      width: 72px !important;
      height: 72px !important;
      right: -47px !important;
    }
  }
  
  @media (max-width: 768px) {
    .amp-summer-box .amp-summer-icon-container {
      transform: scale(0.85);
    }
    
    .amp-summer-box .amp-summer-icon-container img {
      width: 47px !important;
      height: 47px !important;
    }
    
    .amp-summer-box .amp-summer-title {
      font-size: 0.85em;
    }
    
    .recent-work-image {
      width: 68px !important;
      height: 68px !important;
      right: -44px !important;
    }
  }
  
  @media (max-width: 600px) {
    .amp-summer-box .amp-summer-icon-container {
      transform: scale(0.8);
    }
    
    .amp-summer-box .amp-summer-icon-container img {
      width: 44px !important;
      height: 44px !important;
    }
    
    .amp-summer-box .amp-summer-title {
      font-size: 0.8em;
    }
    
    .recent-work-image {
      width: 64px !important;
      height: 64px !important;
      right: -41px !important;
    }
  }
  
  @media (max-width: 480px) {
    .amp-summer-box .amp-summer-icon-container {
      transform: scale(0.75);
    }
    
    .amp-summer-box .amp-summer-icon-container img {
      width: 41px !important;
      height: 41px !important;
    }
    
    .amp-summer-box .amp-summer-title {
      font-size: 0.75em;
    }
    
    .recent-work-image {
      width: 60px !important;
      height: 60px !important;
      right: -38px !important;
    }
  }
  
  @media (max-width: 400px) {
    .amp-summer-box .amp-summer-icon-container {
      transform: scale(0.7);
    }
    
    .amp-summer-box .amp-summer-icon-container img {
      width: 39px !important;
      height: 39px !important;
    }
    
    .amp-summer-box .amp-summer-title {
      font-size: 0.7em;
    }
    
    .recent-work-image {
      width: 56px !important;
      height: 56px !important;
      right: -35px !important;
    }
  }

    /* ==========================================================================
     43. PAGE TOGGLE BUTTON
     ========================================================================== */
  .page-toggle-btn {
    position: absolute;
    top: 144px;
    right: 10px;
    background: var(--primary-pink);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-family: 'crosswindsnowind';
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 10px var(--primary-pink);
    z-index: 1003;
  }
  
  .page-toggle-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--primary-pink);
  }

  .page-toggle-btn i {
    font-size: 20px;
  }
  
  /* YouTube icon for page toggle button */
  .page-toggle-btn .youtube-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }