body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(135deg, #f0f4ff, #d9e6ff);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
  }
  
  .container {
    text-align: center;
    background: #fff;
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    max-width: 600px;
  }
  
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 36px;
    font-weight: bold;
    color: #d32f2f;
    margin-bottom: 5px;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  
  .fullname {
    font-size: 28px;
    margin: 0;
    color: #222;
  }
  
  .photo-wrapper {
    margin: 25px 0;
  }
  
  .photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #3f51b5;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  
  .nickname {
    margin-top: 10px;
    font-weight: 600;
    color: #444;
  }
  
  .title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #222;
  }
  
  .nav {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .nav a {
    text-decoration: none;
    color: #3f51b5;
    font-weight: 600;
    transition: color 0.3s, transform 0.2s;
  }
  
  .nav a:hover {
    color: #1a237e;
    transform: scale(1.1);
  }
  