  body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background-color: #121212;
    color: #e0e0e0;
  }

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

  .hero {
    text-align: center;
    margin-bottom: 3rem;
    background: radial-gradient(ellipse at center, #1f1f1f 0%, #121212 100%);
  }

  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .hero p {
    font-size: 1.3rem;
    color: #bbb;
  }

  #avatar-wrapper {
    width: 100%;
    max-width: 680px;
    margin: 2rem auto;
  }

  #avatar-wrapper [data-avatar-widget] {
    width: 100%;
    aspect-ratio: 680 / 480;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 150, 0.1);
    background-color: #000;
  }

  section {
    max-width: 800px;
    width: 100%;
    margin: 0 auto 3rem auto;
  }

  section h2 {
    margin-bottom: 1rem;
  }

  section p,
  section li {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  ul {
    padding-left: 1.2rem;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  input,
  textarea {
    background: #1e1e1e;
    border: 1px solid #444;
    color: white;
    padding: 0.75rem;
    border-radius: 0.4rem;
    font-size: 1rem;
    flex: 1;
  }

  button[type="submit"] {
    align-self: flex-start;
    background: #333;
    border: 1px solid #555;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.4rem;
    cursor: pointer;
  }

  button[type="submit"]:hover {
    background: #444;
  }

  button {
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
  }

  @media (max-width: 600px) {
    .hero {
      margin-top: 0;
      padding-top: 0;
    }

    .container {
      padding-top: 0;
      margin-top: 0;
    }

    body {
      margin-top: 0;
    }

    .project-card .project-details,
    .project-card .project-details p,
    .project-card .project-details li {
      font-size: 0.75rem !important;
    }

    .project-card {
      margin: 0 auto 2rem auto !important;
    }

    .project-title {
      font-size: 1.2rem !important;
    }
  }

  .project-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 3rem auto;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 0.6rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }

  .project-media {
    width: 100%;
    height: auto;
    border-radius: 0.4rem;
    object-fit: cover;
    cursor: pointer;
    display: block;
  }

  #projects {
    margin: 0;
    padding: 0;
  }

  #projects ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
  }

  .video-placeholder {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
  }

  .video-placeholder.silk {
    padding-bottom: 0%;
  }

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

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 60px;
    background-color: red;
    border-radius: 16px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    pointer-events: none;
  }

  .play-button::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 24px solid white;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 4px;
    background: none;
    z-index: 3;
  }

  .project-card.vr360 {
    text-align: center;
  }

  .video-thumb-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 0.5rem;
  }

  .video-thumb-wrapper iframe,
  .video-thumb-wrapper .video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 0.5rem;
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  .branding-tagline {
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ff3860;
    text-align: center;
  }

  .hidden-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    font-family: inherit;
    animation: fadeIn 0.3s ease forwards;
  }

  .modal-content {
    background: #1f1f1f;
    color: #f0f0f0;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  }

  .modal-content section {
    margin: 0;
    padding: 0;
  }

  .modal-content h2 {
    margin-top: 0;
    font-size: 1.5rem;
  }

  .modal-content textarea {
    padding: 0.75rem;
    margin: 1rem 0;
    border: none;
    border-radius: 6px;
    background: #2b2b2b;
    color: #f0f0f0;
    font-size: 1rem;
    resize: vertical;
  }

  .modal-content button[type="submit"] {
    background: #4CAF50;
    color: #000;
    border: none;
    padding: 0.65rem 1.2rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .modal-content button[type="submit"]:hover {
    background: #00a57c;
  }

  .modal-content button[onclick] {
    background: none;
    border: none;
    font-size: 1.2rem;
    float: right;
    color: #999;
    cursor: pointer;
    margin-bottom: 0.5rem;
  }

  .modal-content button[onclick]:hover {
    color: #fff;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .hidden {
    display: none !important;
  }

  .project-header {
    position: relative;
    text-align: center;
    margin-bottom: 0.5rem;
    padding: 0 2rem;
  }

  .project-title {
    margin: 1.2rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    padding: 0 1rem;
  }

  .toggle-details-bar {
    text-align: center;
    margin-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .details-toggle {
    font-size: 0.95rem;
    color: #fff;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.2s;
    opacity: 0.85;
  }

  .details-toggle:hover {
    opacity: 1;
  }

  .project-details {
    padding: 0 1rem 1rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #ccc;
  }

  .project-details ul {
    list-style: disc !important;
    padding-left: 1.5em !important;
    margin: 1em 0;
    color: white;
  }

  .project-details li {
    margin-bottom: 0.5em;
  }

  .project-details a {
    color: #4FA7FF;
    text-decoration: underline;
  }
