/* links.css */
:root {
    --un-blue: #009edb;
    --un-dark: #405266;
    --un-gray: #4c4c4c;
    --transition-speed: 0.2s;
  }
  
  body {
    font-family: "Roboto", system-ui, -apple-system, sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
  }
  
  .card {
    max-width: 500px;
    width: 100%;
    margin: auto;
    background-color: white;
    border-radius: 12px;
  }
  
  .un-logo {
    max-height: 60px;
    width: auto;
  }
  
  .symbol-style {
    color: var(--un-dark);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .language-buttons {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
  
  .btn-un {
    background-color: var(--un-gray);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
  }
  
  .btn-un:hover {
    background-color: var(--un-blue);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .btn-un:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* RTL Support */
  [lang="ar"] {
    font-family: "Dubai", "Roboto", system-ui, -apple-system, sans-serif;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .card {
      margin: 1rem;
    }
    
    .symbol-style {
      font-size: 1.25rem;
    }
    
    .btn-un {
      font-size: 1rem;
      padding: 0.625rem 1.25rem;
    }
  }
  
  /* Accessibility improvements */
  .btn-un:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 158, 219, 0.3);
  }
  
  /* Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .card {
    animation: fadeIn 0.3s ease-out;
  }