@charset "utf-8";
/* CSS Document */
	:root {
  --bg: #0f172a;
  --nav: #1e293b;
  --accent: #38bdf8;
  --muted: #cbd5e1;
  --text: #e2e8f0;
}

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

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--nav);
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px; margin: 0!important;
}

.menu li a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 6px;
  padding: 6px 10px;
}

.menu li a:hover,
.menu li a.active {
  color: var(--accent);
  background: rgba(56,189,248,0.1);
}

.menu-icon {
  display: none;
  color: var(--accent);
  font-size: 1.5rem;
  cursor: pointer;
}

		main#content {
    min-height: calc(100% - 150px);
}
		
		main#content h2{ color:#fff!important}
/*
.page-content {
  padding: 40px 20px;
  min-height: 70vh;
}
*/

/* Mobile */
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    display: none;
    background: var(--nav);
    position: absolute;
    top: 56px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }

  .menu.active { display: flex; }
  .menu-icon { display: block; }
}

/* Loader */
.loader {
  text-align: center;
  padding: 40px;
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: 1px;
}

.load-error {
  background: rgba(255, 67, 67, 0.08);
  border-left: 4px solid #ff4343;
  padding: 16px;
  border-radius: 6px;
  color: #ffd7d7;
}
