* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
    color: #111;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }
  
  .container {
    max-width: 600px;
    width: 100%;
  }
  
  .logo {
    width: 300px;
    margin-bottom: 20px;
  }
  
  .animated-texts {
    position: relative;
    height: 50px;
    margin-bottom: 40px;
  }
  
  .fade-text {
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: fadeInOut 9s infinite;
  }
  
  .fade-text:nth-child(1) {
    animation-delay: 0s;
  }
  .fade-text:nth-child(2) {
    animation-delay: 3s;
  }
  .fade-text:nth-child(3) {
    animation-delay: 6s;
  }
  
  @keyframes fadeInOut {
    0% { opacity: 0; }
    10% { opacity: 1; }
    30% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; }
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  
  .social-links img {
    width: 30px;
    height: 30px;
    filter: invert(0);
    transition: transform 0.3s;
  }
  
  .social-links a:hover img {
    transform: scale(1.2);
  }
  
  /* Mobile Optimization */
  @media (max-width: 480px) {
    .logo {
      width: 100px;
    }
  
    .animated-texts {
      height: 40px;
    }
  
    .fade-text {
      font-size: 1.5rem;
    }
  
    .social-links img {
      width: 25px;
      height: 25px;
    }
  }
  