@font-face {
  font-family: 'Funnel Display';
  src: url('/Funnel-Display.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

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

body {
  font-family: 'Funnel Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #1a1a2e;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.site-header {
  background: black;
  padding: 15px 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  margin-bottom: 30px;
}


.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.hamburger-menu {
  margin-left: auto;
  cursor: pointer;
  padding: 8px;
  transition: opacity 0.2s ease;
}

.hamburger-menu:hover {
  opacity: 0.7;
}

.hamburger-icon {
  width: 28px;
  height: 28px;
  filter: invert(1);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  min-width: 200px;
  display: none;
  z-index: 1000;
}

.nav-dropdown.show {
  display: block;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s ease;
  cursor: pointer;
}

.nav-item:first-child {
  border-radius: 8px 8px 0 0;
}

.nav-item:last-child {
  border-radius: 0 0 8px 8px;
}

.nav-item:hover {
  background: #f5f5f5;
}

.nav-icon {
  width: 20px;
  height: 20px;
}

.nav-label {
  font-weight: 600;
  font-size: 0.95em;
}

.logo {
  height: 40px;
  width: 40px;
}

.brand-name {
  color: #9500ff;
  font-size: 1.8em;
  font-weight: 200;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.3);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.loading {
  color: white;
  text-align: center;
  padding: 40px;
  font-size: 1.2em;
}

.error {
  background: #ff4444;
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin: 20px 0;
}

.back-button {
  background: #000;
  color: #667eea;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

h1 {
  color: white;
  font-size: 2.2em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
