*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html, body {
    height: 100%;
    overflow-x: hidden;
  }
  ul, ol {
    list-style: none;
  }
  blockquote, q {
    quotes: none;
  }
  blockquote::before, blockquote::after,
  q::before, q::after {
    content: '';
  }
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
  }
  input, button, textarea, select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
    appearance: none;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  body {
    font-family: Poppins, sans-serif;
    background-color: #000000;
  
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
  }
  
  p {
    margin-bottom: 1em;
  }
  
  a {
    color: #0366d6;
    transition: color 0.2s ease;
  }
  a:hover {
    color: #014c9e;
  }
  
  .container {
    max-width: 1280px; 
    margin: 0 auto;
    padding: 0 16px; 
    box-sizing: border-box;
    width: 100%;
  }
  
  button {
    display: inline-block;
    padding: 0.5em 1em;
    background-color: #0366d6;
    color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  button:hover {
    background-color: #024e9c;
  }
  button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
  }
  
  input, textarea, select {
    display: block;
    width: 100%;
    padding: 0.5em;
    border: 1px solid #cccccc;
    border-radius: 4px;
    margin-bottom: 1em;
  }
  input:focus, textarea:focus, select:focus {
    border-color: #0366d6;
    box-shadow: 0 0 0 3px rgba(3, 102, 214, 0.2);
  }
  
  .text-center {
    text-align: center;
  }
  .mt-1 {
    margin-top: 1rem;
  }
  .mb-1 {
    margin-bottom: 1rem;
  }

::-webkit-scrollbar {
  width: 12px;
}


::-webkit-scrollbar-track {
  background: #111; 
}

::-webkit-scrollbar-thumb {
  background-color: #444; 
  border-radius: 6px;
  border: 2px solid #111; 
}


::-webkit-scrollbar-thumb:hover {
  background-color: #666;
}
