@font-face {
  font-family: 'Open Sans';
  src: url('OpenSans.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
   :root {
  --blue: #0056B3;
  --purple: #6f42c1;
  --gray: #44476A;
  --white: #ECF0F3;
  --black: #262833;
  --soft: #e6e7ee;
  --broken: #606060;
  --dark-bg: #31344b;
  --light-bg: #ffffff;
}

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

html {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
}

body {
  background-color: var(--broken);
  color: var(--white);
  text-align: center;
  padding: 0;
  margin: 0;
  transition: background-color 0.8s ease, color 0.8s ease;
}

header {
  background-color: var(--dark-bg);
  padding: 0.75rem 1rem;
}

.navbar-custom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding-right: 20px;

}

.brand-logo {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
}

.brand-text {
  font-size: 1.25rem;
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links li a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: var(--soft);
}

.main-section {
  padding: 3rem 1rem;
}

.container {
  max-width: 720px;
  margin: 0 auto;
}

.SATitle {
  font-size: 2.5rem;
  color: #999999;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  cursor: pointer;
}

h2, h3 {
  margin-bottom: 0.75rem;
  color: var(--white);
}

p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.closed {
  color: #ff0000;
}

.open-text {
  color: #00a000;
}

body.closed {
  background-color: #000000;
  color: #ffffff;
}

body.pre-market {
  background-color: #0857A6;
  color: #ffffff;
}

body.open {
  background-color: #ffffff;
  color: #000000;
}

body.after-hours {
  background-color: #924011;
  color: #ffffff;
}

.text-center {
  text-align: center;
}

/* ver. 4.1 */
/* © Michael Rivera (Peeps40836) | 2025. All rights reserved, unless otherwise noted. */