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

body, html {
  width: 100%;
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

.background-carousel {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  overflow: hidden;
}

.bg-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.bg-slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay-content {
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 0 0 5px rgba(0,0,0,0.8);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto; /* this will perfectly center the container */
}


header {
  padding: 10px 15px;
  background-color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: space-between; /* pushes logo and nav apart */
}

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


.logo {
  height: 32px;
  margin-left: 0; /* removes extra spacing; aligns logo tight-left */
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #aaa;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
}

nav a:hover {
  color: #fff;
}

.hero {
  padding: 120px 20px 60px;
  text-align: center;
}

.tagline {
  font-size: 18px;
  color: #ddd;
  margin-top: 10px;
  margin-bottom: 30px;
}

.button-group {
  display: flex;
  justify-content: center; /* this ensures perfect horizontal centering */
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  color: white;
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
  min-width: 220px;
  text-align: center;
  gap: 10px;
  font-weight: 500;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.action-button:hover {
  transform: scale(1.05);
}

/* PLATFORM COLORS */
.windows {
  background-color: #00adef; /* Windows blue */
}
.windows:hover {
  background-color: #3e8c54; /* OSRS deep green */
}

.macos {
  background-color: #999999; /* Apple gray */
}
.macos:hover {
  background-color: #b3903c; /* OSRS gold */
}

.github {
  background-color: #333; /* GitHub black */
}

.github:hover {
  background-color: #1e4c2f; /* OSRS stone-green */
}
.wiki {
  background-color: #6c757d; /* neutral grey */
}
.wiki:hover {
  background-color: #495057; /* darker grey on hover */
}

.button-icon {
  width: 20px;
  height: 20px;
}



footer {
  padding: 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  color: #aaa;
}

.button-group {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero h1 {
  font-size: 56px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.9);
  margin-bottom: 15px;
}

.tagline {
  font-size: 20px;
  color: #eee;
  text-shadow: 0 3px 8px rgba(0,0,0,0.9);
  margin-top: 10px;
  margin-bottom: 35px;
}

.background-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25); /* slight darkening */
  z-index: 1;
}

.bg-slide.active {
  z-index: 0; /* ensure overlay stays on top */
}


.hero h1, .tagline, .button-group {
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tagline {
  animation-delay: 0.3s;
}

.button-group {
  animation-delay: 0.6s;
}


.youtube {
  background-color: #FF0000; /* YouTube Red */
}
.youtube:hover {
  background-color: #c4302b; /* Slightly darker red for hover */
}

.description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #fff;
  text-align: left;
  max-width: 800px;
  margin: 20px auto;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.description p {
  margin-bottom: 15px;
}

.description strong {
  color: #e0c068; /* Highlight important words in OSRS gold */
}

.description em {
  color: #a8c9ff; /* Emphasis color for client names */
}

.about-header {
  font-size: 48px;
  color: #fff;
  display: inline-block;
  padding: 12px 25px;
  margin-bottom: 2px;
  background-color: rgba(0, 0, 0, 0.7); /* Dark transparent background */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  text-shadow: 0 3px 8px rgba(0,0,0,0.7);
}


/* Changelog container styling */
.changelog {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  font-size: 14px;
  color: #fff; /* Ensuring all text is white by default */
}

/* Orange titles with high specificity */
.changelog .changelog-entry .changelog-title {
  color: #f89131; /* RuneLite orange */
  font-weight: bold;
  margin-right: 6px;
}

/* Links explicitly styled white */
.changelog .changelog-entry a,
.changelog .changelog-entry a:visited {
  color: #ffffff !important; /* Force white */
  text-decoration: none;
}

/* Links hover state */
.changelog .changelog-entry a:hover {
  text-decoration: underline;
}

/* Muted text styling */
.changelog .text-muted,
.changelog .text-muted a {
  color: #aaa !important; /* Consistently muted gray */
  font-style: italic;
}

.release-date {
  color: #aaa; /* Muted grey color */
  font-size: 0.9em;
  margin-left: 8px;
}





