html, body {height: 100%;margin: 0;padding: 0;}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #0f172a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: white;
  overflow: auto;
}

#bg-img {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -1;
}

.navbar, .footer {
  width: 100%;
  padding: 15px 50px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 10;
  position: relative;
}

.footer {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
}

.logo {
  display: inline-block;
  max-height: 50px;
  width: auto;
  vertical-align: middle;
  font-size: 20px; 
  font-weight: bold; 
  color: white;
  text-decoration: none;
  cursor: pointer;
}
.nav-links, .footer-links { display: flex; list-style: none; gap: 20px; margin: 0; padding: 0; cursor: pointer;}
.nav-links a, .footer-links a { color: white; text-decoration: none; opacity: 0.8; font-size: 14px; }
.nav-links a:hover, .footer-links a:hover { opacity: 1; }

.menu-btn {
  display: none;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-size: 14px;
}

.main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.profile-container {
  text-align: center;
  width: 90%;
  max-width: 400px;
  z-index: 1;
  cursor: default;
}

.profile-img { width: 144px; height: 144px; border-radius: 50%; object-fit: cover; margin: 0 auto 15px; display: block; box-shadow: 0 0 10px rgba(0,0,0,0.1);}
h1{font-size: 28px;color: white;font-weight: bold;margin: 10px 0 5px;}
.info-text{color: white;margin-bottom: 5px;}


#feedback { text-align: center; margin-bottom: 15px; font-size: 14px; color: #34d399; min-height: 20px;}

.link-btn{display: flex;align-items: center;width: 100%;height: 55px;margin-bottom: 15px;background: rgba(255, 255, 255, 0.1);backdrop-filter: blur(10px);-webkit-backdrop-filter: blur(10px);border: 1px solid rgba(255, 255, 255, 0.2);border-radius: 50px; color: white;text-decoration: none;font-weight: 600;cursor: pointer;box-sizing: border-box;transition: all 0.3s ease;padding: 0;font-family: inherit;}
.link-btn:hover{background: white;color: black;transform: scale(1.02);}
.btn-icon{width: 45px;height: 45px;border-radius: 50%;object-fit: cover;margin-left: 5px;}
.btn-text{flex-grow: 1;text-align: center;font-size: 16px;padding-right: 50px;}

@media(max-height: 600px){.profile-img { width: 100px; height: 100px; }
h1 { font-size: 22px; }
.link-btn { height: 45px; margin-bottom: 10px; }
.profile-container { margin-bottom: 20px; }}

@media (max-width: 768px) {
  .navbar { padding: 15px 20px; flex-direction: row; justify-content: space-between; }
  .nav-links { display: none; }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px;
    text-align: left;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .menu-btn { display: block; }
  .footer { padding: 15px 20px; flex-direction: column; gap: 15px; text-align: center; }
  .footer-links { gap: 15px; padding: 0; }
}