/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #131313;
  color: #fff;
}

/* Layout */
.container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 230px;
  background-color: #1b1b1b;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-box {
  text-align: center;
  margin-bottom: 2rem;
}
.logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}
.logo-box h1 {
  font-size: 1.5rem;
  color: #fff;
}
.tagline {
  font-size: 0.85rem;
  color: #bbb;
}
.nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 2rem;
}
.nav-buttons a {
  text-decoration: none;
  text-align: center;
  padding: 0.75rem;
  border-radius: 10px;
  color: #fff;
  background-color: #2e2e2e;
  transition: all 0.2s ease;
}
.nav-buttons a.active,
.nav-buttons a:hover {
  background-color: #ff1e42;
  color: #fff;
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 2rem 3rem;
}
.top-links {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
}
.invite-link,
.support-link {
  text-decoration: none;
  color: #ff1e42;
  font-weight: bold;
  transition: opacity 0.3s ease;
}
.invite-link:hover,
.support-link:hover {
  opacity: 0.75;
}

/* Section Headings */
#about h2,
#features h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.red-line {
  width: 40px;
  height: 4px;
  background-color: #ff1e42;
  border: none;
  margin-bottom: 1rem;
}

/* About Text */
#about p {
  margin-bottom: 1rem;
  color: #ccc;
  line-height: 1.6;
  font-size: 1rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.feature-card {
  background-color: #1f1f1f;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #2d2d2d;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.feature-card strong {
  color: #ff1e42;
}
