/* style.css */

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #121212;
  color: #f0c419;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

header {
  background: #1f1f1f;
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  border-bottom: 1px solid #333;
  flex-shrink: 0;
}

main {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1rem;
}

footer {
  background: #1f1f1f;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #333;
  flex-shrink: 0;
}

footer button {
  background: none;
  border: none;
  color: #f0c419;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0;
  cursor: pointer;
  flex-grow: 1;
  transition: background-color 0.3s ease;
}

footer button svg {
  width: 24px;
  height: 24px;
  fill: #f0c419;
  margin-bottom: 4px;
}

footer button.active,
footer button:hover {
  background: #f0c419;
  color: #121212;
  border-radius: 8px 8px 0 0;
}

section.page {
  display: none;
}

section.page.active {
  display: block;
}

.profile {
  text-align: center;
  margin-bottom: 1rem;
}

.profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #f0c419;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.profile-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0