
      @import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap");

      body {
        margin: 0;
        padding: 0;
        background-color: #050505;
        color: white;
        font-family: "Inter", sans-serif;
        overflow-x: hidden;
      }

      #loading-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #050505 0%, #1a1a1a 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        backdrop-filter: blur(10px);
      }

      .loading-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
      }

      .loading-text {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.6);
        animation: fadeInOut 2.5s ease-in-out;
        text-align: center;
      }

      @keyframes fadeInOut {
        0%,
        100% {
          opacity: 0.5;
        }
        50% {
          opacity: 1;
        }
      }

      .loading-dots {
        display: flex;
        gap: 0.5rem;
      }

      .dot {
        width: 6px;
        height: 6px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        animation: dotBounce 1.2s ease-in-out infinite;
      }

      .dot:nth-child(2) {
        animation-delay: 0.2s;
      }

      .dot:nth-child(3) {
        animation-delay: 0.4s;
      }

      @keyframes dotBounce {
        0%,
        100% {
          transform: translateY(0);
          opacity: 0.5;
        }
        50% {
          transform: translateY(-8px);
          opacity: 1;
        }
      }

      .loading-hidden {
        animation: fadeOutUp 1s ease-out forwards;
        pointer-events: none;
      }

      @keyframes fadeOutUp {
        0% {
          opacity: 1;
          transform: translateY(0);
        }
        100% {
          opacity: 0;
          transform: translateY(-20px);
        }
      }

      #canvas-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
      }

      .glass {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 1rem;
      }

      .text-gradient {
        background: linear-gradient(to right, #fff, #666);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        padding-bottom: 0.15em;
        display: inline-block;
      }

      section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 4rem 2rem;
        position: relative;
      }

      .custom-cursor {
        width: 20px;
        height: 20px;
        border: 2px solid white;
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.1s ease;
      }

      @media (hover: none) and (pointer: coarse) {
        .custom-cursor {
          display: none;
        }
      }

      .skill-bar {
        height: 4px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
        overflow: hidden;
      }

      .skill-progress {
        height: 100%;
        background: linear-gradient(to right, #fff, #666);
        border-radius: 2px;
        transform-origin: left;
      }

      .timeline-line {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 1px;
        background: linear-gradient(
          to bottom,
          transparent,
          rgba(255, 255, 255, 0.3),
          transparent
        );
      }

      .timeline-dot {
        position: absolute;
        left: -4px;
        top: 0;
        width: 9px;
        height: 9px;
        background: white;
        border-radius: 50%;
      }

      .service-image-container {
        width: 100%;
        height: 160px;
        overflow: hidden;
        border-radius: 0.75rem;
        margin-bottom: 1.5rem;
      }

      .service-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: all 0.5s ease;
      }

      @media (hover: hover) and (pointer: fine) {
        .service-card:hover .service-image {
          transform: scale(1.1);
        }
      }

      .project-image-container {
        height: 200px;
      }

      @media (min-width: 768px) {
        .project-image-container {
          height: 320px;
        }
      }

      .project-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.7s ease;
        transform: scale(1.1);
      }

      @media (hover: hover) and (pointer: fine) {
        .project-image {
          filter: grayscale(100%);
        }

        .group:hover .project-image {
          filter: grayscale(0%);
          transform: scale(1);
        }
      }

      @media (hover: none) and (pointer: coarse) {
        .project-image {
          filter: grayscale(0%);
          transform: scale(1);
        }
      }

      .award-banner {
        background: linear-gradient(
          135deg,
          rgba(255, 215, 0, 0.1) 0%,
          rgba(255, 140, 0, 0.1) 50%,
          rgba(255, 215, 0, 0.05) 100%
        );
        border: 1px solid rgba(255, 215, 0, 0.3);
        position: relative;
        overflow: hidden;
      }

      .award-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 215, 0, 0.1),
          transparent
        );
        animation: shimmer 3s infinite;
      }

      @keyframes shimmer {
        0% {
          left: -100%;
        }
        100% {
          left: 100%;
        }
      }

      .trophy-glow {
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
        animation: trophyPulse 2s ease-in-out infinite;
      }

      @keyframes trophyPulse {
        0%,
        100% {
          filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
        }
        50% {
          filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
        }
      }

      .sparkle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: #ffd700;
        border-radius: 50%;
        animation: sparkle 2s ease-in-out infinite;
      }

      .sparkle:nth-child(1) {
        top: 20%;
        left: 10%;
        animation-delay: 0s;
      }

      .sparkle:nth-child(2) {
        top: 30%;
        right: 15%;
        animation-delay: 0.5s;
      }

      .sparkle:nth-child(3) {
        bottom: 25%;
        left: 20%;
        animation-delay: 1s;
      }

      .sparkle:nth-child(4) {
        bottom: 20%;
        right: 10%;
        animation-delay: 1.5s;
      }

      @keyframes sparkle {
        0%,
        100% {
          opacity: 0;
          transform: scale(0);
        }
        50% {
          opacity: 1;
          transform: scale(1);
        }
      }

      @media (max-width: 768px) {
        .loading-text {
          font-size: 0.65rem;
          letter-spacing: 0.15em;
        }

        .dot {
          width: 5px;
          height: 5px;
        }
      }

      .bento-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      @media (min-width: 768px) {
        .bento-grid {
          grid-template-columns: repeat(3, 1fr);
          grid-template-rows: auto auto auto;
          gap: 1.25rem;
        }
      }

      .bento-item {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 1.25rem;
        padding: 1.25rem;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        position: relative;
        overflow: hidden;
        display: flex;
        text-decoration: none;
        color: inherit;
      }

      .bento-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.05) 0%,
          transparent 50%
        );
        opacity: 0;
        transition: opacity 0.4s ease;
      }

      @media (hover: hover) {
        .bento-item:hover {
          background: rgba(255, 255, 255, 0.06);
          border-color: rgba(255, 255, 255, 0.15);
          transform: translateY(-4px);
        }

        .bento-item:hover::before {
          opacity: 1;
        }
      }

      .bento-large {
        grid-column: 1 / -1;
        padding: 2rem;
        flex-direction: column;
      }

      @media (min-width: 768px) {
        .bento-large {
          grid-column: span 2;
          grid-row: span 2;
          padding: 2.5rem;
        }
      }

      .bento-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        flex: 1;
      }

      @media (min-width: 768px) {
        .bento-content {
          flex-direction: row;
          align-items: flex-start;
        }
      }

      .bento-icon-large {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
      }

      @media (min-width: 768px) {
        .bento-icon-large {
          width: 120px;
          height: 120px;
        }
      }

      .bento-icon-large img {
        width: 100%;
        height: 100%;
        border-radius: 24px;
        object-fit: cover;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        transition: transform 0.4s ease;
      }

      @media (hover: hover) {
        .bento-large:hover .bento-icon-large img {
          transform: scale(1.05) rotate(-2deg);
        }
      }

      .bento-text {
        flex: 1;
      }

      .bento-badge {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 999px;
        font-size: 0.65rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.75rem;
      }

      .bento-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
      }

      @media (min-width: 768px) {
        .bento-title {
          font-size: 1.75rem;
        }
      }

      .bento-desc {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
      }

      .bento-stats {
        display: flex;
        gap: 1rem;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.5);
      }

      .bento-arrow {
        position: absolute;
        bottom: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        color: rgba(255, 255, 255, 0.6);
      }

      @media (hover: hover) {
        .bento-large:hover .bento-arrow {
          background: white;
          color: black;
          transform: rotate(45deg);
        }
      }

      .bento-content-small {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex: 1;
      }

      .bento-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        object-fit: cover;
        flex-shrink: 0;
        transition: transform 0.3s ease;
      }

      @media (hover: hover) {
        .bento-item:hover .bento-icon {
          transform: scale(1.1);
        }
      }

      .bento-title-sm {
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 0.15rem;
      }

      .bento-cat {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.5);
      }

      .bento-arrow-sm {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        align-self: center;
      }

      @media (hover: hover) {
        .bento-item:hover .bento-arrow-sm {
          color: white;
          transform: translateX(4px);
        }
      }

      .bento-stats-box {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.05) 0%,
          rgba(255, 255, 255, 0.02) 100%
        );
      }

      .stats-number {
        font-size: 3rem;
        font-weight: 900;
        background: linear-gradient(135deg, #fff 0%, #666 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1;
      }

      .stats-label {
        font-size: 0.9rem;
        font-weight: 600;
        margin-top: 0.5rem;
      }

      .stats-sub {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.4);
        margin-top: 0.25rem;
      }

      .organizer-logo-container {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 215, 0, 0.15);
        border-radius: 0.75rem;
        padding: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        aspect-ratio: 16/10;
        overflow: hidden;
      }

      .organizer-logo-container:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 215, 0, 0.4);
        transform: translateY(-2px);
      }

      .organizer-logo {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: grayscale(100%) brightness(0.8);
        opacity: 0.7;
        transition: all 0.3s ease;
      }

      .organizer-logo-container:hover .organizer-logo {
        filter: grayscale(0%) brightness(1);
        opacity: 1;
      }

      @media (max-width: 768px) {
        .organizer-logo-container {
          padding: 0.5rem;
        }
      }

      .model-bottom-fade {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 180px;
        background: linear-gradient(
          to bottom,
          transparent 0%,
          rgba(5, 5, 5, 0.3) 30%,
          rgba(5, 5, 5, 0.7) 60%,
          rgba(5, 5, 5, 0.95) 85%,
          rgba(5, 5, 5, 1) 100%
        );
        pointer-events: none;
        z-index: 10;
        border-radius: 0 0 1rem 1rem;
      }

      /* Clickable highlight cards */
      .highlight-card {
        display: block;
        text-decoration: none;
        color: inherit;
        transition: all 0.4s ease;
      }

      @media (hover: hover) {
        .highlight-card:hover {
          transform: translateY(-4px);
        }

        .highlight-card:hover .glass {
          border-color: rgba(255, 255, 255, 0.2);
          background: rgba(255, 255, 255, 0.05);
        }
      }
 