@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: linear-gradient(to bottom right, #2c3e50, #3498db);
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .container {
    text-align: center;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  }
  
  .profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid white;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }
  
  p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 2rem;
  }
  
  .links {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .link-btn {
    text-decoration: none;
    background-color: white;
    color: #2c3e50;
    padding: 14px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .link-btn:hover {
    background-color: #ecf0f1;
    transform: translateY(-3px);
  }
  