/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --primary: #1a73e8;
    --primary-hover: #1557b0;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: #121212;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
  }
  
  .container {
    background: #1e1e1e;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    padding: 30px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    border: 1px solid #2d2d2d;
  }
  
  .profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid var(--primary);
    box-shadow: 0 0 15px rgba(26, 115, 232, 0.2);
  }
  
  h1 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
  
  p {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 1rem;
  }
  
  .social-links a {
    display: block;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .social-links a:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
  }
  
  .social-links i {
    font-size: 1.2rem;
  }
  
  /* Optional: Dark mode transition animation */
  body {
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  /* Jika ingin responsive untuk tema sistem */
  @media (prefers-color-scheme: dark) {
    /* Warna sudah di-set manual, tidak perlu perubahan tambahan */
  }