* {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}  

/* Consolidated base styles for html and body */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #000;
    overflow: hidden;
    user-select: none;
    cursor: none;
  }
  
  /* Ripple animation effects */
  .wave {
    position: absolute;
    border-radius: 50%;
    background: none;
    animation: ripple 3s ease-out forwards;
    transform: scale(0);
    opacity: 0.6;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
                0 0 10px rgba(0, 0, 255, 0.3),
                0 0 15px rgba(0, 0, 255, 0.2),
                0 0 20px rgba(0, 0, 255, 0.1);
  }
  
  .wave-clicked {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8),
                0 0 25px rgba(0, 255, 255, 0.6),
                0 0 35px rgba(0, 255, 255, 0.4),
                0 0 45px rgba(0, 255, 255, 0.3);
    animation: ripple 3s ease-out forwards;
  }
  
  @keyframes ripple {
    0% {
      transform: scale(0);
      opacity: 0.6;
    }
    100% {
      transform: scale(3);
      opacity: 0;
    }
  }
  
  /* Text styling */
  .intro-text {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.4;
    z-index: 2;
  }
  
  .highlight {
    font-size: 48px;
  }
  
  .additional-text {
    color: white;
    text-align: center;
    position: absolute;
    width: 100%;
    font-family: Arial, sans-serif;
    font-size: 18px;
    z-index: 2;
  }
  
  /* Button styles */
  .button-container {
    text-align: center;
    position: absolute;
    bottom: 30px;
    width: 100%;
    z-index: 2;
  }
  
  .button {
    padding: 10px 20px;
    margin: 0 10px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .button:hover {
    background-color: #000;
    color: #fff;
  }
  
  /* Layout containers */
  .container {
    display: flex;
    height: 100vh;
    align-items: flex-start;
    color: white;
    font-family: Arial, sans-serif;
    background: rgba(0, 0, 0, 0.5);
    max-width: 100vw;
    overflow: hidden;
  }
  
  /* Consolidated .column rules */
  .column {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    padding: 20px;
  }
  
  .about-title {
    align-items: flex-start;
    margin-left: 20px;
  }
  
  .about-content {
    align-items: flex-start;
    font-size: 18px;
  }
  
  /* Navigation styles */
  .top-nav {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
  }
  
  .nav-link {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 18px;
    transition: color 0.3s;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: #ccc;
  }
  
  /* Link styles */
  .underline-link {
    color: blue;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .underline-link:hover {
    color: #a1c4fd;
    opacity: 0.7;
  }
  
  /* Copyright and resume */
  #copyright-column p {
    font-size: 14px;
    text-align: center;
    color: #666;
    margin-top: auto;
    padding: 20px;
  }

  #copyright-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  
  .resume-link {
    display: inline-block;
    background-color: #f2f2f2;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .resume-link:hover {
    background-color: #000;
    color: #fff;
  }
  
  /* Custom cursor elements */
  #dot, #circumference {
    position: fixed;
    pointer-events: none;
  }
  
  #dot {
    width: 15px;
    height: 15px;
    background-color: rgb(162, 162, 162);
    border-radius: 50%;
    opacity: 0.8;
  }
  
  #circumference {
    width: 50px;
    height: 50px;
    border: 2px solid rgb(162, 162, 162);
    border-radius: 50%;
    transition: transform 0.5s ease-out;
    transform: translate(-31.415926535%, -31.415926535%);
    opacity: 0.8;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .intro-text {
      font-size: 22px;
    }
  
    .highlight {
      font-size: 28px;
    }
  
    .container {
      flex-direction: column;
      align-items: flex-start;
      height: 100%;
      width: 100%;
      overflow: hidden;
    }
  
    .column {
      margin-top: 0;
      order: 2;
    }
  
    .about-title, .contact-title {
      order: 1;
      margin-left: 0;
      width: 100%;
      margin-top: 40px;
    }
  
    .about-content, .contact-content {
      margin-top: 10px;
      font-size: 16px;
      padding: 0 20px;
    }
  
    #dot, #circumference {
      display: none;
    }
  }
  