@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 1rem;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 4rem 1rem;
  }

  .hero-logo {
    width: 150px;
  }

  .kofi-container {
    flex-direction: column;
    gap: 1rem;
  }
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #0a0a0a;
  color: #f44336;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 10%;
  background: #111;
  border-bottom: 2px solid #f44336;
}

header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f44336;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #f44336;
  transition: 0.3s;
}

nav a:hover {
  color: #ff6659;
}

/* Hero */
.hero {
  background: #0d0d0d;
  color: #f44336;
  text-align: center;
  padding: 5rem 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 90vh;
}

.hero-logo {
  width: 200px;
  margin-bottom: 1.5rem;
  /* filter: drop-shadow(0 0 15px rgba(244, 67, 54, 0.7)); */
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #f44336;
}

.hero .tagline {
  color: #ff7f7f;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero .stats {
  color: #ccc;
  line-height: 1.6;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero .highlight {
  color: #f44336;
  font-weight: bold;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.btn {
  background: #f44336;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(244, 67, 54, 0.4);
}

.btn:hover {
  background: #ff4f4f;
  box-shadow: 0 0 15px rgba(244, 67, 54, 0.7);
}

/* Ko-fi button wrapper */
#kofi-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Features Section */
.features {
  padding: 4rem 1rem;
  background: #111;
  color: #f44336;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #f44336;
  text-shadow: 0 0 10px rgba(244, 67, 54, 0.5);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: #1a1a1a;
  border: 1px solid #f44336;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 0 12px rgba(244, 67, 54, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(244, 67, 54, 0.5);
}

/* Footer */
footer {
  background: #0a0a0a;
  color: #888;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ff6659;
}

.btn {
  background: #f44336;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(244, 67, 54, 0.4);
}

.btn:hover {
  background: #ff6659;
  box-shadow: 0 0 15px rgba(255, 102, 89, 0.6);
  transform: scale(1.05);
}

/* Ko-fi + Invite button container */
.kofi-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Features */
.features {
  padding: 4rem 10%;
  text-align: center;
  background: #0a0a0a;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #f44336;
  text-shadow: 0 0 8px rgba(244, 67, 54, 0.5);
}

.cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  width: 280px;
  border: 1px solid #f44336;
  box-shadow: 0 0 15px rgba(244, 67, 54, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #f44336;
  cursor: pointer;
}

.card h3 {
  margin-bottom: 1rem;
  color: #ff6659;
}

.card p {
  color: #ff857a;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background: #0a0a0a;
  border-top: 2px solid #f44336;
  font-size: 0.9rem;
  color: #ff6659;
}

/* Logo in navbar */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}

.logo img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 6px rgba(244, 67, 54, 0.6));
}

.logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f44336;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(244, 67, 54, 0.4);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(244, 67, 54, 0.6);
}

/* --- FIX HEADER FOR MOBILE VIEW --- */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
    border-bottom: 2px solid #f44336;
  }

  .logo {
    justify-content: center;
    margin-bottom: 0.5rem;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 0.6rem 0;
    color: #f44336;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
  }

  nav a:hover {
    background: rgba(244, 67, 54, 0.1);
    color: #ff6659;
  }

  .logout-btn {
    background: #f44336;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(244, 67, 54, 0.4);
  }

  .logout-btn:hover {
    background: #ff6659;
    box-shadow: 0 0 15px rgba(255, 102, 89, 0.6);
    transform: scale(1.05);
  }
}

/* --- HAMBURGER MENU --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 24px;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #f44336;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate to X when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Hide nav by default on mobile */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #111;
    border-top: 2px solid #f44336;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    z-index: 1000;
  }

  nav.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hamburger {
    display: flex;
  }

  header {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- TEST --- */

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 1rem;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #0a0a0a; /* dark black */
  color: #f44336; /* glowing red */
  line-height: 1.6;
}

/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 10%;
  background: #111;
  border-bottom: 2px solid #f44336;
}

header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f44336;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #f44336;
  transition: 0.3s;
}

nav a:hover {
  background: rgba(244, 67, 54, 0.1);
  color: #ff6659;
}

/* Hero */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #111, #0a0a0a);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ff6659;
}

.btn {
  background: #f44336;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #ff6659;
}

/* Features */
.features {
  padding: 4rem 10%;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  width: 280px;
  border: 1px solid #f44336;
  box-shadow: 0 0 15px rgba(244, 67, 54, 0.4);
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #f44336;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}


.card h3 {
  margin-bottom: 1rem;
}

/* Invite */
.invite {
  text-align: center;
  padding: 4rem 2rem;
  background: #111;
}

.invite .btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

.invite h2 {
  margin-bottom: 2rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background: #0a0a0a;
  border-top: 2px solid #f44336;
  font-size: 0.9rem;
}

/* Logo in navbar */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}

.logo img {
  width: 40px;
  height: 40px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f44336;
}

/* Hero logo */
.hero-logo {
  width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
  
}

/* Dashboard Section */
.dashboard {
  padding: 4rem 10%;
  text-align: center;
  background: #0a0a0a;
}

.dashboard h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #f44336;
}

.dashboard-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.dashboard-card {
  background: #111;
  border: 1px solid #f44336;
  border-radius: 10px;
  padding: 2rem;
  width: 260px;
  box-shadow: 0 0 15px rgba(244, 67, 54, 0.4);
  text-align: left;
  transition: transform 0.3s;
}

.dashboard-card:hover {
  transform: translateY(-5px);
}

.dashboard-card h3 {
  color: #f44336;
  margin-bottom: 1rem;
}

.dashboard-card p {
  margin-bottom: 1.5rem;
  color: #ff6659;
}

/* Server Selector */
.server-selector {
  text-align: center;
  padding: 4rem 2rem;
  background: #111;
}

.server-slider {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 0;
  justify-content: center;
}

.server-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #f44336;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.server-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px #f44336;
}

/* Customization Panel */
.customization-panel {
  padding: 3rem 10%;
  background: #0a0a0a;
  color: #fff;
}

.customization-panel h2 {
  margin-bottom: 2rem;
  color: #f44336;
}

.xp-settings {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #f44336;
}

.xp-settings label {
  display: flex;
  flex-direction: column;
  color: #ff6659;
}

.xp-settings input[type="number"],
.xp-settings input[type="text"] {
  padding: 0.5rem;
  background: #0a0a0a;
  color: white;
  border: 1px solid #f44336;
  border-radius: 5px;
}

.hidden {
  display: none;
}

/* Customization Dashboard */
.customization-dashboard {
  padding: 4rem 10%;
  background: #0a0a0a;
  color: white;
}

.customization-dashboard h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #f44336;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 0.6rem 1.2rem;
  background: #111;
  color: #f44336;
  border: 1px solid #f44336;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
  background: #f44336;
  color: white;
}

/* Tab Panels */
.tab-panel {
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #f44336;
  margin-bottom: 2rem;
}

.tab-panel h3 {
  color: #ff6659;
  margin-bottom: 1rem;
}

.tab-panel label {
  display: block;
  margin-bottom: 1rem;
  color: #ff6659;
}

.tab-panel input[type="number"],
.tab-panel input[type="text"] {
  padding: 0.4rem;
  background: #0a0a0a;
  border: 1px solid #f44336;
  border-radius: 5px;
  color: white;
  margin-top: 0.4rem;
}

.save-btn {
  display: block;
  margin: 0 auto;
  margin-top: 1rem;
}

/* Hidden Utility */
.hidden {
  display: none;
}

.server-icon.selected {
  border: 3px solid #ff6659;
  box-shadow: 0 0 10px #ff6659;
}

.dashboard-card:hover {
  cursor: pointer;
  transform: scale(1.05);
  box-shadow: 0 0 10px #f44336;
}

.plus-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  filter: drop-shadow(0 0 2px #f44336);
  transition: transform 0.3s, filter 0.3s;
  border-radius: 50%;
}

.plus-icon:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 5px #ff6659);
}

.command-list {
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #f44336;
  margin-bottom: 2rem;
}

.command-list h3 {
  color: #ff6659;
  margin-bottom: 1rem;
}

.command-list label {
  display: block;
  margin-bottom: 1rem;
  color: #ff6659;
}

.command-list input[type="number"],
.command-list input[type="text"] {
  padding: 0.4rem;
  background: #0a0a0a;
  border: 1px solid #f44336;
  border-radius: 5px;
  color: white;
  margin-top: 0.4rem;
}


/* Scrollbar Styling */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(244, 67, 54, 0.4);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(244, 67, 54, 0.6);
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 1rem;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 4rem 1rem;
  }

  .hero-logo {
    width: 150px;
  }

  .kofi-container {
    flex-direction: column;
    gap: 1rem;
  }
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #0a0a0a;
  color: #f44336;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 10%;
  background: #111;
  border-bottom: 2px solid #f44336;
}

header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f44336;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #f44336;
  transition: 0.3s;
}

nav a:hover {
  color: #ff6659;
}

/* Hero */
.hero {
  text-align: center;
  padding: 8rem 2rem 6rem 2rem;
  background: linear-gradient(to bottom, #111, #0a0a0a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(244, 67, 54, 0.5));
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #f44336;
  text-shadow: 0 0 10px rgba(244, 67, 54, 0.6);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ff6659;
}

.btn {
  background: #f44336;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(244, 67, 54, 0.4);
}

.btn:hover {
  background: #ff6659;
  box-shadow: 0 0 15px rgba(255, 102, 89, 0.6);
  transform: scale(1.05);
}

/* Ko-fi + Invite button container */
.kofi-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Features */
.features {
  padding: 4rem 10%;
  text-align: center;
  background: #0a0a0a;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #f44336;
  text-shadow: 0 0 8px rgba(244, 67, 54, 0.5);
}

.cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  width: 280px;
  border: 1px solid #f44336;
  box-shadow: 0 0 15px rgba(244, 67, 54, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #f44336;
  cursor: pointer;
}

.card h3 {
  margin-bottom: 1rem;
  color: #ff6659;
}

.card p {
  color: #ff857a;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background: #0a0a0a;
  border-top: 2px solid #f44336;
  font-size: 0.9rem;
  color: #ff6659;
}

/* Logo in navbar */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}

.logo img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 6px rgba(244, 67, 54, 0.6));
}

.logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f44336;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(244, 67, 54, 0.4);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(244, 67, 54, 0.6);
}

/* --- FIX HEADER FOR MOBILE VIEW --- */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
    border-bottom: 2px solid #f44336;
  }

  .logo {
    justify-content: center;
    margin-bottom: 0.5rem;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 0.6rem 0;
    color: #f44336;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
  }

  nav a:hover {
    background: rgba(244, 67, 54, 0.1);
    color: #ff6659;
  }

  .logout-btn {
    background: #f44336;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(244, 67, 54, 0.4);
  }

  .logout-btn:hover {
    background: #ff6659;
    box-shadow: 0 0 15px rgba(255, 102, 89, 0.6);
    transform: scale(1.05);
  }
}

/* --- HAMBURGER MENU --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 24px;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #f44336;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate to X when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Hide nav by default on mobile */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #111;
    border-top: 2px solid #f44336;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    z-index: 1000;
  }

  nav.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hamburger {
    display: flex;
  }

  header {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
