@font-face {
  font-family: 'NeueMachina';
  src: url(/4739fc0703c02a47c10a.otf) format('opentype');
  font-weight: normal;
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #27FF7D;
    --secondary-green: #18994B;
    --dark-green: #217442;
    --bg-dark: #000000;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.1);
    --text-white: #FFFFFF;
    --text-gray: #A3A3A3;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-green: linear-gradient(90deg, #27FF7D, #18994B);
}

body {
    background-color: #000000;
    color: #FFFFFF;
}

/* Custom scrollbar for dark theme */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(39, 255, 125, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(39, 255, 125, 0.5);
}

/* Selection highlight */
::selection {
    background: rgba(39, 255, 125, 0.3);
    color: #FFFFFF;
}


/*# sourceMappingURL=main.473d2a32.css.map*/