:root {
  --primary-color: #e53935;
  --dark-color: #333333;
  --light-color: #f5f5f5;
  --secondary-color: #444444;
}

.logo-text-gradient {
  font-family: 'Exo', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  letter-spacing: 2.5px;
  text-transform: lowercase;
  background: linear-gradient(90deg, #ff8c00 0%, #e53935 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
  margin: 0 1.5rem;
}

.custom-header {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(245, 245, 245, 0.85);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--primary-color);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.logo a {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  letter-spacing: 2px;
  text-decoration: none;
  background: linear-gradient(90deg, #ff8c00, #ff2d55, #007aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo span {
  font-weight: 300;
  opacity: 0.7;
}
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li a {
  text-decoration: none;
  color: var(--dark-color);
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.nav-menu li a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff8c00, #ff2d55, #007aff);
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
.nav-menu li a:hover {
  color: var(--primary-color);
}
.nav-menu li a:hover::after {
  width: 100%;
}
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: 1rem;
}
.burger span {
  width: 28px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 70px;
  right: 20px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  z-index: 2000;
  gap: 1.2rem;
  min-width: 180px;
  animation: fadeIn 0.3s;
}
.mobile-menu a {
  color: #222;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: #ff2d55;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }
  .burger {
    display: flex;
  }
}
body {
  padding-top: 70px;
} 

.logo, .nav-menu li a {
  font-family: 'Audiowide', 'Questrial', Arial, Helvetica, sans-serif;
  letter-spacing: 1px;
} 