* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #2c3e50;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

nav img {
    border-radius: 50%;
    margin-right: 1rem;
}

nav span {
    color: white;
    font-size: 1.2rem;
    margin-right: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #34495e;
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

h1 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

input[type="file"],
input[type="text"] {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    background-color: #3498db;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2980b9;
}

ul {
    list-style: none;
    margin: 2rem 0;
}

.welcome-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin-bottom: 2rem;
    animation: fadeInScale 1s ease forwards;
  }
  
  .profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(114, 137, 218, 0.3);
    border: 3px solid var(--discord-blue);
  }
  
  .satellite-container {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    animation: rotate 20s linear infinite;
  }
  
  .satellite {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--discord-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--discord-blue);
  }
  
  .satellite::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--discord-blue), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .satellite:nth-child(1) {
    top: 50%;
    left: 0;
    animation: pulse 2s ease-in-out infinite;
  }
  
  .satellite:nth-child(2) {
    top: 0;
    left: 50%;
    animation: pulse 2s ease-in-out infinite 0.5s;
  }
  
  .satellite:nth-child(3) {
    top: 50%;
    right: 0;
    animation: pulse 2s ease-in-out infinite 1s;
  }
  
  .satellite:nth-child(4) {
    bottom: 0;
    left: 50%;
    animation: pulse 2s ease-in-out infinite 1.5s;
  }
  
  .orbit {
    position: absolute;
    width: 180%;
    height: 180%;
    top: -40%;
    left: -40%;
    border: 2px dashed rgba(114, 137, 218, 0.2);
    border-radius: 50%;
    animation: fadeIn 1s ease forwards;
  }
  
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.5);
      opacity: 0.5;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.5);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .signal-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(114, 137, 218, 0.2);
    border-radius: 50%;
    animation: signalWave 2s ease-out infinite;
  }
  
  .signal-wave:nth-child(2) {
    animation-delay: 0.5s;
  }
  
  .signal-wave:nth-child(3) {
    animation-delay: 1s;
  }
  
  @keyframes signalWave {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scale(2);
      opacity: 0;
    }
  }

ul li {
    background-color: white;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}


.profile-img {
    display: block;
    margin: 2rem auto;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.message {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    nav span {
        margin: 1rem 0;
    }

    ul li {
        flex-direction: column;
        text-align: center;
    }

    form {
        padding: 1rem;
    }
}
