    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: 'Georgia', 'Times New Roman', serif;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
      color: #ffffff;
      line-height: 1.6;
      overflow-x: hidden;
      min-height: 100vh;
      -webkit-tap-highlight-color: transparent;
    }

    /* Global Page Scrollbar (matches dark theme) */
    html {
      scrollbar-width: thin; /* Firefox */
      scrollbar-color: rgba(128, 128, 128, 0.35) rgba(20, 20, 20, 0.9); /* Firefox */
    }

    /* Chrome/Edge/Safari */
    html::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }
    html::-webkit-scrollbar-track {
      background: rgba(20, 20, 20, 0.9);
    }
    html::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, rgba(128,128,128,0.6), rgba(176,176,176,0.7));
      border-radius: 8px;
      border: 2px solid rgba(20, 20, 20, 0.9);
    }
    html::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, rgba(160,160,160,0.7), rgba(200,200,200,0.8));
    }

    /* Slimmer scrollbars on mobile */
    @media (max-width: 768px) {
      html::-webkit-scrollbar {
        width: 4px;
        height: 4px;
      }
    }

    /* Custom Dark Navigation Scrollbar */
    nav {
      scrollbar-width: thin; /* Firefox */
      scrollbar-color: rgba(128, 128, 128, 0.3) rgba(20, 20, 20, 0.8); /* Firefox */
    }
    
    nav::-webkit-scrollbar {
      height: 3px !important;
      background: rgba(20, 20, 20, 0.8) !important;
    }
    
    nav::-webkit-scrollbar-track {
      background: rgba(20, 20, 20, 0.8) !important;
      border-radius: 3px !important;
    }
    
    nav::-webkit-scrollbar-thumb {
      background: rgba(128, 128, 128, 0.4) !important;
      border-radius: 3px !important;
      border: none !important;
    }
    
    nav::-webkit-scrollbar-thumb:hover {
      background: rgba(128, 128, 128, 0.6) !important;
    }

    /* Navigation - Professional Responsive Style */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      padding: 0;
      z-index: 1000;
      transition: all 0.3s ease;
      border-bottom: 2px solid rgba(128, 128, 128, 0.3);
      background: rgba(20, 20, 20, 0.98);
      backdrop-filter: blur(10px);
    }

    nav.scrolled {
      background: rgba(20, 20, 20, 0.99);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    nav ul {
      display: flex;
      justify-content: center;
      align-items: center;
      list-style: none;
      margin: 0;
      padding: 0;
      flex-wrap: wrap;
    }

    nav li {
      position: relative;
    }

    nav li:last-child {
      border-right: none;
    }

    nav a {
      display: block;
      color: #e0e0e0;
      text-decoration: none;
      font-weight: 500;
      padding: 18px 30px;
      transition: all 0.3s ease;
      position: relative;
      font-size: 15px;
      text-transform: capitalize;
      letter-spacing: 0.5px;
      white-space: nowrap;
    }

    nav a:hover {
      background: rgba(128, 128, 128, 0.2);
      color: #ffffff;
    }

    nav a::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, #808080, #ffffff);
      transition: width 0.3s ease;
    }

    nav a:hover::before {
      width: 100%;
    }

    nav a.active {
      color: #ffffff;
      background: rgba(128, 128, 128, 0.15);
    }

    nav a.active::before {
      width: 100%;
    }

    /* Sections - OPTIMIZED FOR MINIMAL GAPS */
    section {
      margin: 0;
      padding: 3rem 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transform: translateY(50px);
      animation: fadeInUp 1s ease forwards;
      min-height: auto;
    }

    /* First section needs top padding for fixed nav */
    section:first-of-type {
      padding-top: 6rem;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .container {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      padding: 0;
    }

    /* Prevent horizontal overflow and ensure mobile stability */
    section,
    .container,
    .youtube-grid,
    .articles-scroll-container,
    .content-grid-container,
    .expertise-grid,
    .contact-grid {
      max-width: 100%;
      overflow-x: hidden;
    }
    
    /* Mobile-specific container improvements */
    @media (max-width: 768px) {
      .container {
        width: 100%;
        box-sizing: border-box;
      }
      
      /* Ensure images don't break layout */
      img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
      }
      
      /* Prevent layout shifts */
      .profile-image img,
      .article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    h1 {
      font-size: 3.8rem;
      margin-bottom: 1rem;
      background: linear-gradient(45deg, #ffffff, #b0b0b0);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-align: center;
      animation: slideIn 1s ease 0.2s both;
      font-family: 'Georgia', serif;
      font-weight: 400;
    }

    h2 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
      text-align: center;
      color: #ffffff;
      animation: slideIn 1s ease 0.4s both;
      font-family: 'Georgia', serif;
      font-weight: 300;
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Profile Section */
    .profile-content {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 4rem;
      align-items: center;
    }

    .profile-image {
      position: relative;
    }

    .profile-image img {
      width: 300px;
      height: 300px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #666666;
      transition: all 0.3s ease;
      animation: float 3s ease-in-out infinite;
      will-change: transform;
    }

    /* Image Performance Optimization */
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
} */

    .profile-image img:hover {
      transform: scale(1.05);
      border-color: #ffffff;
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    }

    .profile-text {
      animation: slideIn 1s ease 0.6s both;
    }

    .profile-text h3 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: #cccccc;
    }

    .profile-text p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #aaaaaa;
      margin-bottom: 1rem;
    }

    .credentials {
      display: flex;
      gap: 2rem;
      margin-top: 2rem;
    }

    .credential-item {
      background: rgba(128, 128, 128, 0.1);
      padding: 1rem 1.5rem;
      border-radius: 8px;
      border-left: 4px solid #808080;
    }

    .credential-item strong {
      color: #ffffff;
    }

    /* YouTube Channel Section */
    .youtube-showcase {
      margin-top: 1rem;
    }

    .youtube-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
      margin-bottom: 2rem;
    }

    .youtube-screenshot-container {
      position: relative;
      aspect-ratio: 16/9;
      border-radius: 20px;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(80, 80, 80, 0.3), rgba(60, 60, 60, 0.6));
      border: 3px solid rgba(128, 128, 128, 0.3);
      transition: all 0.5s ease;
      cursor: pointer;
    }

    .youtube-screenshot-container:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 25px 60px rgba(255, 0, 0, 0.2);
      border-color: rgba(255, 0, 0, 0.6);
    }

    .youtube-screenshot-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.1), transparent);
      transform: translateX(-100%);
      transition: transform 0.8s ease;
      z-index: 1;
    }

    .youtube-screenshot-container:hover::before {
      transform: translateX(100%);
    }

    .youtube-screenshot-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      padding: 2rem;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .upload-icon {
      font-size: 4rem;
      margin-bottom: 1.5rem;
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.05);
      }
    }

    .youtube-screenshot-placeholder p {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #ffffff;
      font-family: 'Georgia', serif;
    }

    .youtube-screenshot-placeholder span {
      font-size: 1rem;
      color: #cccccc;
      line-height: 1.6;
    }

    .youtube-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 2rem;
    }

    .stat-item {
      background: rgba(128, 128, 128, 0.1);
      padding: 2rem;
      border-radius: 15px;
      text-align: center;
      border: 2px solid rgba(128, 128, 128, 0.2);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .stat-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
      transition: left 0.6s ease;
    }

    .stat-item:hover::before {
      left: 100%;
    }

    .stat-item:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 0, 0, 0.4);
      box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2);
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: bold;
      color: #ffffff;
      margin-bottom: 0.5rem;
      font-family: 'Georgia', serif;
    }

    .stat-label {
      font-size: 1rem;
      color: #cccccc;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Additional content styling with transparent box */
    .additional-content {
      margin-top: 1rem;
    }

    .beyond-youtube-box {
      background: linear-gradient(135deg, rgba(40, 40, 40, 0.8), rgba(60, 60, 60, 0.6));
      backdrop-filter: blur(15px);
      border: 1px solid rgba(128, 128, 128, 0.2);
      border-radius: 16px;
      padding: 1.5rem 2.5rem;
      margin-top: 0.5rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      width: 100%;
      max-width: 100%;
    }

    .beyond-youtube-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent, rgba(128, 128, 128, 0.02));
      pointer-events: none;
    }

    .beyond-youtube-box h3 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: #ffffff;
      font-family: 'Georgia', serif;
      font-weight: 600;
      background: linear-gradient(135deg, #ffffff, #e0e0e0);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      position: relative;
      z-index: 1;
    }

    .beyond-youtube-box p {
      color: #d0d0d0;
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 0.8rem;
      position: relative;
      z-index: 1;
    }

    .beyond-youtube-box p:last-child {
      margin-bottom: 0;
    }

    .beyond-youtube-box strong {
      color: #ffffff;
      font-weight: 700;
      background: linear-gradient(135deg, #ffffff, #f0f0f0);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Articles Scroll Container - Horizontal Scrollbar */
    .articles-scroll-container {
      position: relative;
      margin-top: 1rem;
      width: 100%;
    }

    .articles-scroll-wrapper {
      overflow-x: auto;
      overflow-y: hidden;
      padding-bottom: 1.5rem;
      scrollbar-width: thin;
      scrollbar-color: rgba(128, 128, 128, 0.6) rgba(40, 40, 40, 0.3);
      cursor: grab;
      user-select: none;
    }

    .articles-scroll-wrapper:active {
      cursor: grabbing;
    }

    /* Custom Webkit Scrollbar for Articles */
    .articles-scroll-wrapper::-webkit-scrollbar {
      height: 14px;
    }

    .articles-scroll-wrapper::-webkit-scrollbar-track {
      background: rgba(40, 40, 40, 0.4);
      border-radius: 7px;
      margin: 0 20px;
    }

    .articles-scroll-wrapper::-webkit-scrollbar-thumb {
      background: linear-gradient(90deg, rgba(128, 128, 128, 0.7), rgba(160, 160, 160, 0.9));
      border-radius: 7px;
      border: 3px solid rgba(40, 40, 40, 0.4);
      transition: background 0.3s ease;
    }

    .articles-scroll-wrapper::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(90deg, rgba(128, 128, 128, 0.9), rgba(180, 180, 180, 1));
    }

    .articles-slider {
      display: flex;
      gap: 2rem;
      width: fit-content;
      padding: 0 20px;
    }

    /* Hide old slider navigation elements */
    .slider-nav,
    .slider-indicators {
      display: none !important;
    }

    .article-card {
      background: rgba(60, 60, 60, 0.9);
      border-radius: 20px;
      overflow: hidden;
      min-width: 350px;
      max-width: 350px;
      flex-shrink: 0;
      transition: all 0.4s ease;
      position: relative;
      cursor: pointer;
      border: 2px solid rgba(128, 128, 128, 0.3);
    }

    .article-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(128, 128, 128, 0.3);
      border-color: rgba(128, 128, 128, 0.6);
    }

    .article-image {
      height: 200px;
      overflow: hidden;
      position: relative;
    }

    .article-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.3s ease;
    }

    .article-card:hover .article-image img {
      transform: scale(1.05);
    }

    .article-content {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      height: calc(100% - 200px);
    }

    .article-content h4 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: #ffffff;
      font-family: 'Georgia', serif;
      line-height: 1.3;
    }

    .article-content p {
      color: #cccccc;
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 1rem;
      flex-grow: 1;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }


    .article-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #b0b0b0;
      font-size: 0.8rem;
      font-weight: 500;
      margin-bottom: 1rem;
      min-height: 20px;
    }

    .read-more-btn {
      background: linear-gradient(135deg, #e53e3e, #c53030);
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      justify-content: center;
    }

    .read-more-btn:hover {
      background: linear-gradient(135deg, #c53030, #9c2626);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(229, 62, 62, 0.3);
    }

    .read-more-btn svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    /* Content Management Section - 4x3 Grid with Horizontal Scroll */
    .content-grid-container {
      margin-top: 1rem;
      width: 100%;
      position: relative;
    }

    .content-grid-wrapper {
      overflow-x: auto;
      overflow-y: hidden;
      padding-bottom: 1rem;
      scrollbar-width: thin;
      scrollbar-color: rgba(128, 128, 128, 0.6) rgba(40, 40, 40, 0.3);
    }

    /* Custom Webkit Scrollbar */
    .content-grid-wrapper::-webkit-scrollbar {
      height: 12px;
    }

    .content-grid-wrapper::-webkit-scrollbar-track {
      background: rgba(40, 40, 40, 0.3);
      border-radius: 6px;
    }

    .content-grid-wrapper::-webkit-scrollbar-thumb {
      background: linear-gradient(90deg, rgba(128, 128, 128, 0.6), rgba(160, 160, 160, 0.8));
      border-radius: 6px;
      border: 2px solid rgba(40, 40, 40, 0.3);
    }

    .content-grid-wrapper::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(90deg, rgba(128, 128, 128, 0.8), rgba(160, 160, 160, 1));
    }

    /* Grid Layout */
    .content-grid {
      display: grid;
      grid-template-rows: repeat(2, 1fr);
      grid-auto-flow: column;
      grid-auto-columns: 280px;
      gap: 1.5rem;
      min-height: 600px;
      width: fit-content;
      padding-right: 2rem;
      background-size: cover;

    }

    /* Content Items */
    .content-item {
      background: linear-gradient(135deg, rgba(60, 60, 60, 0.8), rgba(80, 80, 80, 0.5));
      border-radius: 15px;
      overflow: hidden;
      transition: all 0.4s ease;
      border: 2px solid rgba(128, 128, 128, 0.2);
      position: relative;
      aspect-ratio: 1;
      /* keeps the div square */
      width: 100%;
      height: auto;
      display: flex;
      /* make it a flex container */
      justify-content: center;
      /* center the image horizontally */
      align-items: center;
      /* center the image vertically */
      background-size: cover;
    }




    .content-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #606060, #ffffff, #606060);
      transform: translateX(-100%);
      transition: transform 0.6s ease;
      z-index: 2;
    }

    .content-item:hover::before {
      transform: translateX(0);
    }

    .content-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(128, 128, 128, 0.2);
      border-color: rgba(128, 128, 128, 0.5);
    }

    /* Image Styling */
    .content-item img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      /* ensures the entire image is visible */
      display: block;
    }

    .content-item:hover img {
      transform: scale(1.05);
    }

    /* Video Styling */
    .content-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: rgba(40, 40, 40, 0.9);
    }

    /* Video Controls Styling */
    .content-item video::-webkit-media-controls-panel {
      background-color: rgba(0, 0, 0, 0.8);
    }

    .content-item video::-webkit-media-controls-play-button,
    .content-item video::-webkit-media-controls-mute-button {
      background-color: rgba(128, 128, 128, 0.8);
      border-radius: 50%;
    }

    .content-item video::-webkit-media-controls-timeline {
      background-color: rgba(128, 128, 128, 0.3);
      border-radius: 25px;
    }

    /* Expertise/Featured Work Section */
    .expertise-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin-top: 1rem;
    }

    .expertise-card {
      position: relative;
      height: 400px;
      border-radius: 15px;
      overflow: hidden;
      transition: all 0.4s ease;
      border: 2px solid rgba(128, 128, 128, 0.2);
      display: block;
      cursor: pointer;
    }

    .expertise-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(128, 128, 128, 0.25);
      border-color: rgba(128, 128, 128, 0.5);
    }

    .expertise-bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s ease;
    }

    .expertise-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
      opacity: 1;
      transition: all 0.5s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .expertise-card:hover .expertise-bg {
      filter: blur(8px);
      transform: scale(1.1);
    }


    .expertise-content {
      text-align: center;
      transform: translateY(0);
      transition: transform 0.5s ease;
      position: relative;
      z-index: 2;
    }


    .expertise-content h4 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: #ffffff;
      font-family: 'Georgia', serif;
      font-weight: 600;
    }

    .expertise-content p {
      color: #e0e0e0;
      line-height: 1.7;
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }

    .expertise-content .read-more-btn {
      margin-top: auto;
      align-self: flex-start;
    }

    /* Contact Section */
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 1rem;
    }

    .contact-item {
      background: rgba(50, 50, 50, 0.6);
      padding: 2.5rem;
      border-radius: 15px;
      text-align: center;
      transition: all 0.4s ease;
      border: 2px solid rgba(128, 128, 128, 0.2);
      position: relative;
      overflow: hidden;
    }

    .contact-item:hover {
      transform: translateY(-8px);
      border-color: #b0b0b0;
      box-shadow: 0 15px 35px rgba(128, 128, 128, 0.2);
    }

    .contact-icon {
      font-size: 2.8rem;
      margin-bottom: 1.5rem;
      color: #b0b0b0;
      transition: all 0.3s ease;
    }

    .contact-item:hover .contact-icon {
      color: #ffffff;
      transform: scale(1.15);
    }

    .contact-item h4 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
      color: #ffffff;
      font-family: 'Georgia', serif;
    }

    .contact-item p {
      color: #d4d4d4;
      font-size: 1rem;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-top: 2rem;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      background: rgba(128, 128, 128, 0.1);
      border-radius: 12px;
      color: #b0b0b0;
      font-size: 1.8rem;
      text-decoration: none;
      transition: all 0.4s ease;
      border: 2px solid rgba(128, 128, 128, 0.2);
    }

    .social-link:hover {
      background: linear-gradient(45deg, rgba(128, 128, 128, 0.2), rgba(160, 160, 160, 0.2));
      color: #ffffff;
      transform: translateY(-5px) scale(1.05);
      border-color: #b0b0b0;
      box-shadow: 0 10px 25px rgba(128, 128, 128, 0.3);
    }

    /* Particle background */
    .particles {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: -1;
    }

    .particle {
      position: absolute;
      width: 2px;
      height: 2px;
      background: rgba(128, 128, 128, 0.4);
      border-radius: 50%;
      animation: float-particle 8s linear infinite;
    }

    /* @keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
} */

    #yt1 {
      background-image: url("youtube1.png");
      background-repeat: no-repeat;
      background-size: cover;
    }

    #yt2 {
      background-image: url("youtube2.png");
      background-repeat: no-repeat;
      background-size: cover;
    }

    /* Scroll animations */
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease;
    }

    .animate-on-scroll.animated {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .content-grid {
        grid-auto-columns: 250px;
      }

      .content-item {
        width: 250px;
        height: 250px;
      }
    }

    @media (max-width: 900px) {
      .content-grid {
        grid-auto-columns: 220px;
        grid-template-rows: repeat(2, 1fr);
        min-height: 460px;
      }

      .content-item {
        width: 220px;
        height: 220px;
      }

      .youtube-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .youtube-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
      }

      .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
      }

      .expertise-card {
        height: 350px;
      }
    }

    /* Tablet Responsive - iPad and similar */
    @media (max-width: 1024px) {
      nav a {
        padding: 16px 25px;
        font-size: 14px;
        min-height: 48px;
        /* Minimum touch target */
      }

      h1 {
        font-size: 3.2rem;
      }

      h2 {
        font-size: 2.4rem;
      }

      .container {
        padding: 0 1.5rem;
      }

      .profile-content {
        gap: 3rem;
        grid-template-columns: 1fr 1.5fr;
      }

      .article-card {
        min-width: 320px;
        max-width: 320px;
      }

      .content-grid {
        grid-auto-columns: 220px;
      }

      .content-item {
        width: 220px;
        height: 220px;
      }
    }

    /* Mobile Responsive - Smartphones */
    @media (max-width: 768px) {

      /* Enhanced Mobile Body Optimizations */
      body {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
        touch-action: manipulation;
      }
      
      /* Mobile Navigation Scroll Indicator */
      nav::after {
        
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        font-size: 10px;
        color: rgba(255, 255, 255, 0.4);
        pointer-events: none;
        z-index: 1;
        font-weight: normal;
        letter-spacing: 1px;
      }

      /* Mobile Navigation - Horizontal Scroll Fixed */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        background: rgba(20, 20, 20, 0.98);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 0;
        border-bottom: 2px solid rgba(128, 128, 128, 0.3);
      }
      
      /* Completely hide all scrollbars */
      nav::-webkit-scrollbar {
        width: 0px !important;
        height: 0px !important;
        display: none !important;
        background: transparent !important;
      }
      
      nav::-webkit-scrollbar-track {
        display: none !important;
      }
      
      nav::-webkit-scrollbar-thumb {
        display: none !important;
      }
      
      nav::-webkit-scrollbar-corner {
        display: none !important;
      }

      nav ul {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
        min-width: fit-content;
        width: fit-content;
        height: 56px;
      }

      nav li {
        flex-shrink: 0;
        display: inline-block;
        height: 56px;
      }

      nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #e0e0e0;
        text-decoration: none;
        font-weight: 500;
        padding: 0 18px;
        transition: all 0.3s ease;
        position: relative;
        font-size: 13px;
        text-transform: capitalize;
        letter-spacing: 0.3px;
        white-space: nowrap;
        height: 56px;
        min-width: fit-content;
        box-sizing: border-box;
        border-right: 1px solid rgba(128, 128, 128, 0.2);
      }
      
      nav li:first-child a {
        padding-left: 20px;
      }
      
      nav li:last-child a {
        padding-right: 20px;
        border-right: none;
      }

      nav a::before {
        height: 2px;
      }

      /* Typography */
      h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
      }

      h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
      }

      /* Sections */
      section {
        padding: 2.5rem 1rem;
      }

      section:first-of-type {
        padding-top: 4.5rem;
      }

      .container {
        padding: 0 1rem;
      }

      /* Profile Section */
      .profile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
      }

      .profile-image img {
        width: 220px;
        height: 220px;
        margin: 0 auto;
      }

      .profile-text {
        text-align: left;
      }

      .profile-text p {
        font-size: 0.95rem;
        line-height: 1.7;
      }

      /* Credentials */
      .credentials {
        flex-direction: column;
        gap: 1rem;
      }

      .credential-item {
        font-size: 0.9rem;
      }

      /* Social Links */
      .social-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
      }

      .social-link {
        font-size: 1.5rem;
        padding: 12px;
      }

      /* YouTube Section */
      .youtube-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .youtube-screenshot-placeholder {
        min-height: 200px;
      }

      .youtube-screenshot-placeholder p {
        font-size: 1rem;
      }

      .upload-icon {
        font-size: 2.5rem;
      }

      .youtube-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .stat-item {
        padding: 1.5rem 1rem;
      }

      .stat-number {
        font-size: 2rem;
      }

      .stat-label {
        font-size: 0.9rem;
      }

      /* Content Grid */
      .content-grid {
        grid-auto-columns: 180px;
        grid-template-rows: repeat(2, 1fr);
        min-height: 380px;
        gap: 10px;
      }

      .content-item {
        width: 180px;
        height: 180px;
      }

      /* Articles Slider */
      .articles-scroll-wrapper {
        padding-bottom: 1rem;
      }

      .articles-scroll-wrapper::-webkit-scrollbar {
        height: 8px;
      }

      .articles-slider {
        gap: 1.2rem;
        padding: 0 10px;
      }

      .article-card {
        min-width: 280px;
        max-width: 280px;
      }

      .article-image {
        height: 160px;
      }

      .article-content {
        padding: 1.2rem;
      }

      .article-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
      }

      .article-content p {
        font-size: 0.85rem;
        line-height: 1.5;
      }

      .read-more-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
      }

      /* Expertise Grid */
      .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .expertise-card {
        height: auto;
        min-height: 280px;
      }

      .expertise-content h4 {
        font-size: 1.4rem;
      }

      .expertise-content p {
        font-size: 0.9rem;
      }

      /* Gallery Tabs */
      .tabs-nav {
        overflow-x: auto;
        gap: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
      }

      .tab-btn {
        font-size: 0.9rem;
        padding: 14px 20px;
        white-space: nowrap;
        flex-shrink: 0;
      }

      .stacked-grid,
      .theatre-grid,
      .hex-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

      .stacked-item,
      .theatre-item,
      .hex-item {
        min-height: 150px;
        border-radius: 10px;
      }

      /* Modal on mobile */
      .modal img {
        max-width: 95%;
        max-height: 85%;
      }

      .modal-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 35px;
      }

      /* Contact Section */
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .contact-item {
        padding: 2rem 1.5rem;
      }

      .contact-icon {
        font-size: 2.2rem;
        margin-bottom: 1rem;
      }

      .contact-item h4 {
        font-size: 1.1rem;
      }

      .contact-item p {
        font-size: 0.95rem;
      }

      .contact-form {
        padding: 2rem 1.5rem;
      }

      .contact-form input,
      .contact-form textarea {
        font-size: 0.95rem;
        padding: 12px;
      }

      .contact-form button {
        padding: 14px 30px;
        font-size: 0.95rem;
      }

      /* Beyond YouTube Box */
      .beyond-youtube-box {
        padding: 1.5rem;
      }

      .beyond-youtube-box p {
        font-size: 0.95rem;
      }

      /* Additional Content */
      .additional-content {
        padding: 1.5rem 1rem;
      }
    }

    /* Enhanced Touch and Performance Optimizations for Mobile */
    @media (max-width: 768px) {
      /* Prevent zoom on form inputs */
      input[type="text"],
      input[type="email"],
      input[type="tel"],
      textarea {
        font-size: 16px;
      }
      
      /* Improve scrolling performance */
      .articles-scroll-wrapper,
      .content-grid-wrapper,
      nav {
        -webkit-overflow-scrolling: touch;
        will-change: scroll-position;
      }
      
      /* Enhanced button touch targets */
      .read-more-btn,
      .social-link,
      .tab-btn,
      nav a {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      /* Prevent text selection on UI elements */
      .read-more-btn,
      .tab-btn,
      nav a,
      .article-card,
      .content-item {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
      }
    }
    
    /* Small Mobile Devices */
    @media (max-width: 480px) {
      nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
      }
      
      /* Hide scrollbars on small mobile */
      nav::-webkit-scrollbar {
        width: 0px !important;
        height: 0px !important;
        display: none !important;
      }
      
      nav ul {
        padding: 0;
        min-width: fit-content;
        width: fit-content;
        height: 52px;
      }
      
      nav li {
        height: 52px;
      }
      
      nav a {
        padding: 0 15px;
        font-size: 12px;
        height: 52px;
        border-right: 1px solid rgba(128, 128, 128, 0.2);
        white-space: nowrap;
        min-width: fit-content;
      }
      
      nav li:first-child a {
        padding-left: 16px;
      }
      
      nav li:last-child a {
        padding-right: 16px;
        border-right: none;
      }

      h1 {
        font-size: 1.75rem;
      }

      h2 {
        font-size: 1.4rem;
      }

      section {
        padding: 2rem 0.75rem;
      }

      section:first-of-type {
        padding-top: 4rem;
      }

      .container {
        padding: 0 0.75rem;
      }

      .profile-image img {
        width: 180px;
        height: 180px;
      }

      .profile-text p {
        font-size: 0.9rem;
      }

      /* Articles for small mobile */
      .article-card {
        min-width: 260px;
        max-width: 260px;
      }

      .article-image {
        height: 140px;
      }

      .article-content {
        padding: 1rem;
      }

      .article-content h4 {
        font-size: 1rem;
      }

      /* Content Grid */
      .content-grid {
        grid-auto-columns: 140px;
        min-height: 300px;
        gap: 8px;
      }

      .content-item {
        width: 140px;
        height: 140px;
      }

      /* YouTube Section */
      .youtube-screenshot-placeholder {
        min-height: 180px;
      }

      /* Gallery */
      .stacked-grid,
      .theatre-grid,
      .hex-container {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .tab-btn {
        font-size: 0.8rem;
        padding: 12px 16px;
      }

      /* Expertise Cards */
      .expertise-card {
        min-height: 240px;
        padding: 1.5rem;
      }

      .expertise-content h4 {
        font-size: 1.2rem;
      }

      .expertise-content p {
        font-size: 0.85rem;
      }

      /* Contact */
      .contact-item {
        padding: 1.5rem 1rem;
      }

      .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
      }

      /* Beyond YouTube Box */
      .beyond-youtube-box {
        padding: 1.2rem;
      }

      .beyond-youtube-box p {
        font-size: 0.9rem;
      }
    }

    /* Large Desktop */
    @media (min-width: 1400px) {
      .container {
        max-width: 1400px;
      }

      nav a {
        padding: 18px 45px;
        font-size: 17px;
      }

      h1 {
        font-size: 4.2rem;
      }

      h2 {
        font-size: 3.2rem;
      }
    }

    @keyframes ripple {
      to {
        transform: scale(4);
        opacity: 0;
      }
    }



    .gallery-compact {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Tabs Navigation */
    .tabs-nav {
      display: flex;
      gap: 0;
      margin-bottom: 40px;
      border-bottom: 2px solid rgba(128, 128, 128, 0.3);
      padding-bottom: 0;
    }

    .tab-btn {
      background: none;
      border: none;
      color: #e0e0e0;
      font-size: 1.1rem;
      font-weight: 500;
      padding: 18px 40px;
      cursor: pointer;
      position: relative;
      transition: all 0.3s ease;
      text-transform: capitalize;
      letter-spacing: 0.5px;
      font-family: 'Georgia', 'Times New Roman', serif;
      text-decoration: none;
      display: block;
    }

    .tab-btn:hover {
      color: #ffffff;
      background: rgba(128, 128, 128, 0.2);
    }

    /* Tab Content */
    .tab-content {
      display: none;
    }

    .tab-content:target {
      display: block;
      animation: fadeIn 0.6s ease;
    }

    /* Show first tab by default */
    #anchoring:not(:target)~#theatre:not(:target)~#folio:not(:target),
    #anchoring:target {
      display: block;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Active tab styling */
    #anchoring:target~.tabs-nav a[href="#anchoring"],
    #theatre:target~.tabs-nav a[href="#theatre"],
    #folio:target~.tabs-nav a[href="#folio"],
    .tabs-nav a[href="#anchoring"]:not(:target) {
      color: #ffffff;
    }

    #anchoring:target~.tabs-nav a[href="#anchoring"]::before,
    #theatre:target~.tabs-nav a[href="#theatre"]::before,
    #folio:target~.tabs-nav a[href="#folio"]::before,
    body:not(:has(:target)) .tabs-nav a[href="#anchoring"]::before {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #808080, #ffffff);
    }

    /* Grid Layout - All Tabs */
    .stacked-grid,
    .theatre-grid,
    .hex-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    /* Grid Items */
    .stacked-item,
    .theatre-item,
    .hex-item {
      aspect-ratio: 1;
      overflow: hidden;
      border-radius: 15px;
      position: relative;
      cursor: pointer;
      border: 2px solid rgba(128, 128, 128, 0.2);
      transition: all 0.4s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      background: rgba(60, 60, 60, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }

    .stacked-item::before,
    .theatre-item::before,
    .hex-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(128, 128, 128, 0.1), transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 1;
    }

    .stacked-item:hover,
    .theatre-item:hover,
    .hex-item:hover {
      border-color: rgba(176, 176, 176, 0.6);
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(128, 128, 128, 0.25);
    }

    .stacked-item:hover::before,
    .theatre-item:hover::before,
    .hex-item:hover::before {
      opacity: 1;
    }

    .stacked-item img,
    .theatre-item img,
    .hex-shape img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.4s ease;
      display: block;
      border-radius: inherit;
    }

    .stacked-item:hover img,
    .theatre-item:hover img,
    .hex-item:hover .hex-shape img {
      transform: scale(1.05);
    }

    .stacked-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Labels - Hidden */
    .stacked-tag,
    .theatre-tag,
    .hex-label {
      display: none;
    }

    .hex-shape {
      width: 100%;
      height: 100%;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Ensure all gallery images fill their containers properly */
    .stacked-item,
    .theatre-item,
    .hex-item {
      min-height: 200px;
    }

    .stacked-item img,
    .theatre-item img,
    .hex-item img {
      min-width: 100%;
      min-height: 100%;
    }

    /* Ensure images load properly and handle errors */
    .stacked-item img,
    .theatre-item img,
    .hex-shape img {
      background-color: rgba(80, 80, 80, 0.3);
      background-image: linear-gradient(45deg, rgba(100, 100, 100, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(100, 100, 100, 0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(100, 100, 100, 0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(100, 100, 100, 0.1) 75%);
      background-size: 20px 20px;
      background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    }

    /* Loading state */
    .stacked-item img[src=""],
    .theatre-item img[src=""],
    .hex-shape img[src=""] {
      opacity: 0.5;
    }

    /* Loaded state */
    .stacked-item img:not([src=""]),
    .theatre-item img:not([src=""]),
    .hex-shape img:not([src=""]) {
      background: none;
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(10px);
    }

    .modal:target {
      display: flex;
      animation: modalFadeIn 0.3s ease;
    }

    @keyframes modalFadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    /* Remove all scrollbars globally (keeps scrolling functional) */
    html,
    body,
    nav,
    .articles-scroll-wrapper,
    .content-grid-wrapper,
    .tabs-nav,
    .articles-scroll-container,
    .content-grid-container,
    .articles-slider,
    .gallery-compact,
    .stacked-grid,
    .theatre-grid,
    .hex-container {
      scrollbar-width: none !important; /* Firefox */
      -ms-overflow-style: none !important; /* IE/Edge */
    }

    /* Explicitly hide scrollbars on html and body for WebKit */
    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
      width: 0 !important;
      height: 0 !important;
      display: none !important;
      background: transparent !important;
    }

    /* Chrome/Edge/Safari - hide on all elements as fallback */
    *::-webkit-scrollbar {
      width: 0 !important;
      height: 0 !important;
      display: none !important;
      background: transparent !important;
    }
    
    /* Ultimate removal for any WebKit scrollbar parts */
    *::-webkit-scrollbar-thumb,
    *::-webkit-scrollbar-track,
    *::-webkit-scrollbar-track-piece,
    *::-webkit-scrollbar-corner,
    *::-webkit-resizer,
    *::-webkit-scrollbar-button {
      display: none !important;
      width: 0 !important;
      height: 0 !important;
      background: transparent !important;
      border: none !important;
    }
    
    /* Firefox global removal */
    *, *::before, *::after {
      scrollbar-width: none !important;
      -ms-overflow-style: none !important;
    }

    .modal img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 15px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
      border: 2px solid rgba(128, 128, 128, 0.3);
    }

    .modal-close {
      position: absolute;
      top: 30px;
      right: 40px;
      font-size: 45px;
      color: #ffffff;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(128, 128, 128, 0.2);
      border-radius: 50%;
      border: 2px solid rgba(128, 128, 128, 0.3);
      text-decoration: none;
    }

    .modal-close:hover {
      color: #b0b0b0;
      background: rgba(128, 128, 128, 0.3);
      transform: rotate(90deg);
    }

    /* Responsive */
    @media (max-width: 768px) {

      .stacked-grid,
      .theatre-grid,
      .hex-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }

      .tabs-nav {
        gap: 0;
        overflow-x: auto;
      }

      .tab-btn {
        font-size: 0.95rem;
        padding: 15px 25px;
        white-space: nowrap;
      }

      .stacked-tag,
      .theatre-tag,
      .hex-label {
        font-size: 0.8rem;
        padding: 8px 14px;
        bottom: 10px;
        left: 10px;
      }
    }

    /* Tab Navigation Styles */
    .tabs-nav {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 40px;
      border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    }

    .tab-btn {
      padding: 15px 30px;
      background: transparent;
      color: #fff;
      text-decoration: none;
      font-size: 18px;
      font-weight: 500;
      transition: all 0.3s ease;
      border-bottom: 3px solid transparent;
      position: relative;
      bottom: -2px;
    }

    .tab-btn:hover {
      color: #ccc;
    }

    .tab-btn.active {
      color: #fff;
      border-bottom-color: #fff;
      background-color: rgba(255, 255, 255, 0.1);
    }

    /* Tab Content - CRITICAL */
    .tab-content {
      display: none !important;
      /* Force hide all tabs by default */
    }

    .tab-content.active {
      display: block !important;
      /* Only show active tab */
    }

    /* Grid Styles */
    .stacked-grid,
    .theatre-grid,
    .hex-container {
      display: grid;
      gap: 20px;
      padding: 20px 0;
    }

    .stacked-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .theatre-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .hex-container {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }



    #on {
      width: 100%;
      /* or a fixed width like 400px */
      height: auto;
      /* or fixed height */
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      border-radius: 10px;
      /* Optional: for rounded corners */
      border: 1px solid #ccc;
      /* Optional: border styling */
    }

    #on img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      /* Keeps full image visible */
      display: block;
    }