* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    opacity: 0;
  }

  body {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    padding: 40px 60px;
    font-family: 'Ubuntu', sans-serif;
    overflow: hidden;
    position: relative;
  }

  #particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  nav {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
  }

  h1 {
    font-family: 'Ubuntu', sans-serif;
    color: #FF5252;
    font-size: 50px;
    cursor: pointer;
    transition: all 300ms ease;
  }

  h1:hover {
    color: #ff7070;
    transform: scale(1.05);
  }

  h2 {
    font-family: 'Ubuntu', sans-serif;
    color: #FF5252;
    font-size: 40px;
    font-weight: lighter;
  }

  h3 {
    font-family: 'Ubuntu', sans-serif;
    color: #FF5252;
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 20px;
  }

  p {
    font-family: 'Ubuntu', sans-serif;
    color: #ffaaaa;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
  }

  .tabHover {
    cursor: pointer;
    transition: all 300ms ease;
  }

  .tabHover:hover {
    color: #ff4141;
    text-decoration: underline;
    transform: translateY(-2px);
  }

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

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }

  .project-card {
    background: rgba(255, 82, 82, 0.1);
    border: 2px solid #FF5252;
    border-radius: 10px;
    padding: 30px;
    transition: all 400ms ease;
    cursor: pointer;
  }

  .project-card:hover {
    background: rgba(255, 82, 82, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 82, 82, 0.3);
  }

  .project-card h4 {
    font-family: 'Ubuntu', sans-serif;
    color: #FF5252;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .project-card p {
    font-size: 16px;
  }

  .center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    width: 80%;
    z-index: 1;
    gap: 60px;
  }

  .left-section {
    width: 100%;
    text-align: center;
  }

  .right-section {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-family: 'Ubuntu', sans-serif;
    color: #FF5252;
    font-size: 60px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-align: center;
  }

  .section-content {
    font-family: 'Ubuntu', sans-serif;
    color: #ff8888;
    font-size: 20px;
    margin: 10px 0;
    text-decoration: none;
    transition: all 300ms ease;
    cursor: pointer;
    display: block;
  }

  .section-content:hover {
    color: #ff4141;
    text-decoration: underline;
    transform: translateX(10px);
  }

  .section-content.static {
    cursor: default;
    pointer-events: none;
  }


  .quote-footer {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1;
  }

  .quote {
    font-size: 16px;
    font-style: italic;
    color: #ff8888;
    margin-bottom: 5px;
    font-weight: 300;
    opacity: 0.7;
  }

  .author {
    font-size: 14px;
    color: #ff8888;
    opacity: 0.6;
  }

  @media (max-width: 768px) {
    body {
      padding: 20px 30px;
    }

    nav {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 60px;
    }

    h1 {
      font-size: 40px;
    }

    h2 {
      font-size: 30px;
      margin-left: 0 !important;
      margin-top: 0 !important;
    }

    .center-content {
      width: 90%;
      gap: 40px;
    }

    .section-title {
      font-size: 40px;
    }

    .section-content {
      font-size: 18px;
    }

    .quote {
      font-size: 14px;
    }

    .author {
      font-size: 12px;
    }
  }
