/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* We use overflow: hidden on body, so override it later as needed */
  }
  
  /* Welcome Screen */
  #welcome {
    height: 100vh;
    width: 100vw;
    background-image: url('assets/welcome.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  /* Blurred Overlay for Welcome */
  #welcome::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(10px);
    z-index: 0;
  }
  
  /* Enter Text */
  #enter {
    font-size: 150%;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    cursor: pointer;
    z-index: 1;
    color: white;
    transition: font-size 0.5s ease-in-out;
  }
  
  #enter:hover {
    font-weight: bold;
    animation: smoothRGB 3s infinite linear;
    font-size: 155%;
    background-image: linear-gradient(90deg, pink, cyan, magenta);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  /* Smooth RGB Animation for Hover */
  @keyframes smoothRGB {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
  }
  
  /* Fade-to-Black Overlay */
  .fade-to-black {
    animation: fadeToBlack 2s ease-in-out forwards;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
  }
  
  @keyframes fadeToBlack {
    0% { opacity: 1; background-color: transparent; }
    100% { opacity: 1; background-color: black; }
  }
  
  /* Fade-In for GIF Background */
  .fade-in-gif {
    animation: fadeIn 1s ease-in-out forwards;
  }
  
  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  /* Centered Profile Box */
  #profile-container {
    width: 350px;
    padding: 20px;
    background-color: rgba(14, 14, 14, 0.45);
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    text-align: center;
    backdrop-filter: blur(10px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
  }
  
  /* Social Container */
  #social-container {
    background-color: rgba(14, 14, 14, 0.45);
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 67%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    display: none;
    /* Flex to align icons horizontally */
    display: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
    overflow: visible;
  }
  
  /* Icon Styling */
  #social-container i {
    color: #ffffff;
    font-size: 2rem; /* Increase as needed */
  } 
  
  /* Fade-In Effect for Profile Box and Social Container */
  @keyframes fadeInProfile {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  /* Shake Animation */
  .shake-animation {
    animation: shake 0.5s ease-in-out forwards;
  }
  
  @keyframes shake {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    20% { transform: translate(-48%, -50%) rotate(-2deg); }
    40% { transform: translate(-52%, -50%) rotate(2deg); }
    60% { transform: translate(-49%, -50%) rotate(-1deg); }
    80% { transform: translate(-51%, -50%) rotate(1deg); }
    100% { transform: translate(-50%, -50%) rotate(0deg); }
  }
  
  /* Profile Picture */
  #profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgb(239, 68, 68);
  }
  
  /* Profile Name */
  #profile-name {
    font-family: Arial, sans-serif;
    font-size: 22px;
    text-shadow: 0 0 5px white;
    background-image: linear-gradient(90deg, rgb(46, 255, 255), rgb(255, 78, 107));
    animation: smoothRGB 3s infinite linear;
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 10px 0 5px;
  }
  
  /* Profile Description */
  #profile-description {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: white;
    opacity: 0.8;
  }
  