/* styles.css */
/* Base */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background-color: #111;
  color: #f4f4f4;
}

/* Header */
.nav-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  vertical-align: middle;
}
.site-header {
  background-color: #222;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.site-header h1 {
  margin: 0;
  font-size: 1.5rem;
}
.site-header nav a {
  color: #f4f4f4;
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.site-header nav a:hover {
  color: #1abc9c;
}

/* Hero */
.hero {
  position: relative;
  text-align: center;
  padding: 6rem 2rem;
  background: url('hero.jpg') center/cover no-repeat;
  background-color: rgba(0,0,0,0.5);
  background-blend-mode: multiply;
  color: #fff;
}
.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Button */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #1abc9c;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn:hover {
  background-color: #16a085;
  transform: translateY(-2px);
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #222;
  color: #aaa;
  font-size: 0.875rem;
}

/* Profile Page */
.profile {
  text-align: center;
  padding: 2rem;
}
.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #1abc9c;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.stats {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.stats li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}
.progress-bar {
  width: 80%;
  max-width: 400px;
  height: 20px;
  background-color: #333;
  border-radius: 10px;
  margin: 1rem auto;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}
.progress {
  height: 100%;
  background-color: #1abc9c;
  transition: width 0.5s ease;
}
/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
  margin: 0 1rem;
}
/* The button that toggles the menu */
.dropbtn {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
}
/* Hidden by default */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  z-index: 100;
}
/* Items */
.dropdown-content a {
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}
/* Hover state */
.dropdown-content a:hover {
  background-color: #333;
}
/* Show on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
/* Optional arrow tweak */
.dropbtn::after {
  content: '';
  margin-left: 4px;
}
/* style.css */

.discord-link {
  margin: 0 1rem;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.discord-link:hover {
  text-decoration: underline;
}
.prestige-btn {
  background: #DAA520;
  color: #111;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
}
.prestige-btn:hover {
  background: #c1941c;
}
