body { font-family: system-ui, Arial, sans-serif; margin:0; background-color: #1a1a2e; color: #ffffff; padding-top: 80px; }
.navbar { 
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 14px; 
  padding: 16px 40px; 
  border-bottom: 1px solid rgba(0, 234, 255, 0.3); 
  background-color: rgba(21, 21, 49, 0.95); 
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0, 234, 255, 0.15);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
}

.navbar-brand a {
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 1.5rem;
  font-weight: 900;
}

.navbar-brand a:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}

.navbar-brand a:visited {
  color: #ffffff !important;
  text-decoration: none !important;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-nav a {
  text-decoration: none; 
  color: rgba(255, 255, 255, 0.9); 
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav a:hover {
  color: #00eaff;
  background: rgba(0, 234, 255, 0.1);
  transform: translateY(-1px);
}

.navbar-nav a.active {
  color: #00eaff;
  background: rgba(0, 234, 255, 0.2);
}
.btn-cv { 
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 20px !important; 
  border: 2px solid #00eaff !important; 
  border-radius: 25px !important; 
  background: linear-gradient(135deg, #00eaff 0%, #0090ff 100%) !important; 
  color: #1a1a2e !important; 
  font-weight: 600 !important; 
  text-decoration: none !important;
  text-align: center !important;
  white-space: nowrap !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0, 234, 255, 0.3) !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: inherit !important;
}

.btn-cv:hover {
  background: linear-gradient(135deg, #0090ff 0%, #0066cc 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 234, 255, 0.4) !important;
}
.container { max-width:960px; margin:24px auto; padding:0 16px; background-color: #1a1a2e; }
.footer { 
  text-align: center; 
  padding: 32px 40px; 
  color: rgba(255, 255, 255, 0.8); 
  border-top: 1px solid rgba(0, 234, 255, 0.3); 
  margin-top: 60px; 
  background-color: #1a1a2e; 
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0, 234, 255, 0.1);
  font-weight: 500;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #00eaff 0%, #0090ff 100%);
}
.alert { padding:10px 12px; background:rgba(255, 233, 168, 0.2); border:1px solid rgba(224, 199, 115, 0.5); border-radius:8px; margin:12px 0; color: #ffffff; }
.alert.success { background:rgba(215, 255, 217, 0.2); border-color:rgba(158, 215, 160, 0.5); color: #ffffff; }

/* Mobile Responsive Navbar Styles */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .navbar {
    padding: 12px 20px;
    flex-wrap: wrap;
  }
  
  .navbar-brand {
    font-size: 1.3rem;
    font-weight: 900;
    color: #ffffff;
  }
  
  .navbar-brand a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 1.3rem;
    font-weight: 900;
  }
  
  .navbar-nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .navbar-nav a {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
  
  .btn-cv {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 7px 14px !important;
    font-size: 0.8rem !important;
    text-align: center !important;
    min-width: 110px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    border-radius: 25px !important;
    box-shadow: 0 4px 15px rgba(0, 234, 255, 0.3) !important;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 110px;
  }
  
  .navbar {
    padding: 10px 15px;
    flex-direction: column;
    gap: 10px;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 5px;
  }
  
  .navbar-brand a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 1.2rem;
    font-weight: 900;
  }
  
  .navbar-nav {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  
  .navbar-nav a {
    padding: 5px 10px;
    font-size: 0.85rem;
  }
  
  .btn-cv {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 7px 14px !important;
    font-size: 0.8rem !important;
    margin-top: 5px !important;
    text-align: center !important;
    min-width: 110px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    border-radius: 25px !important;
    box-shadow: 0 4px 15px rgba(0, 234, 255, 0.3) !important;
    width: auto !important;
    max-width: none !important;
  }
}

/* Scrolled state for better visibility */
.navbar.scrolled {
  background-color: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 6px 25px rgba(0, 234, 255, 0.2);
}
