/* === Dark Mode Theme Variables === */
:root {
    --bg-color: #121212;
    --text-color: #f5f5f5;
    --accent-color: #4f46e5;
    --link-bg: #1e1e1e;
    --link-text: #f5f5f5;
    --link-hover-bg: var(--accent-color);
    --link-hover-text: #ffffff;
  }
  
  /* === Global Styles === */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 2rem;
  }
  
  /* === Container === */
  .container {
    width: 100%;
    max-width: 480px;
    text-align: center;
  }
  
  /* === Profile Section === */
  .profile {
    margin-bottom: 2rem;
  }
  
  .avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid var(--accent-color);
  }
  
  /* === Links Section === */
  .links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .link {
    text-decoration: none;
    background-color: var(--link-bg);
    color: var(--link-text);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
  }
  
  .link:hover {
    background-color: var(--link-hover-bg);
    color: var(--link-hover-text);
    transform: translateY(-2px);
  }

  p{
    margin-top: 1rem;
  }
  