html {
  scroll-behavior: smooth;
}

/* General Styles */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #ddd;
  background-color: #000;
}

h1, h2, h3 {
  color: #ddd;
}

a {
  color: #007BFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  background: #000;
  color: #fff;
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  position: fixed;
  width: 100vw;
  top: 0;
}

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

.site-header .logo {
  max-height: 50px;
  margin-left: 1rem;
}

.site-header .site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.site-header .site-nav ul li {
  margin: 0 10px;
}

.site-header .site-nav ul li a {
  color: #fff;
  font-weight: bold;
}

/* Hero Section */
.hero-text {
  text-align: center;
  padding: 2rem 1rem;
  background-image: radial-gradient(circle, rgba(0, 123, 255, 0.2) 0%, rgba(0, 123, 255, 0.1) 100%);
  box-shadow: 0 4px 20px rgba(0,123,255,0.2);
  color: #fff;
  margin-top: 6rem;
}

.hero-text h1 {
  margin: 0;
  font-size: 2.5rem;
}

.hero-text p {
  margin: 0.5rem 0 0;
  font-size: 1.2rem;
}

/* Main Content */
.main-content {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Records Sections */
.records-section {
  padding: 2rem 1rem;
  background-image: linear-gradient(rgba(50, 50, 50, 0.2) 0%, rgba(116, 40, 161, 0.1) 100%);
  margin: 1rem 0;
  border-radius: 5px;
  max-width: 800px;
}

.records-section h2 {
  margin-top: 0;
  font-size: 1.8rem;
}

.records-section ul {
  list-style: none;
  padding: 0;
}

.records-section ul li {
  margin: 0.5rem 0;
}

.records-section ul li a {
  color: #007BFF;
  font-weight: bold;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 1rem 0;
  color: #fff;
  font-size: 0.9rem;
}


@media(prefers-color-scheme: light) {
  body {
    background-color: #f0f0f0;
    color: #000;
  }

  .site-header .site-nav ul li a {
    color: #000;
  }

  h1, h2, h3 {
    color: #000;
  }

  .site-header {
    background: #fff;
    color: #000;
  }

  .hero-text {
    background-image: radial-gradient(circle, rgba(0, 123, 255, 0.2) 0%, rgba(0, 123, 255, 0.1) 100%);
    color: #000;
  }

  .records-section {
    background-image: linear-gradient(rgba(50, 50, 50, 0.2) 0%, rgba(116, 40, 161, 0.1) 100%);
    color: #000;
  }
}
