/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and General Layout */
  body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #fff;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* Header */
  .site-header {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
  }
  
  .site-header .logo img {
    width: 150px;
    height: auto;
  }
  
  /* Particle Canvas */
  #particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  /* Footer */
  .site-footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
  }
  
  .site-footer .footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .site-footer p {
    margin: 10px 0;
  }
  
  .site-footer a {
    color: #fff;
    text-decoration: none;
  }
  
  .site-footer a:hover {
    text-decoration: underline;
  }
  
  /* Social Links - Placeholder */
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
  }
  
  .social-links a:hover {
    color: #ff6600; /* Add color on hover for social icons */
  }
  
  /* Button in Bottom-Right Corner */
  .corner-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    z-index: 20;
    transition: background-color 0.3s ease;
  }
  
  .corner-button:hover {
    background-color: #e65c00;
  }
  
  .corner-button:focus {
    outline: none;
  }
  