/* RESET */
#protect-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(30, 64, 175, 0.95);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

#protect-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* THEME */
:root {
  --blue-primary: #1e40af;
  --blue-secondary: #3b82f6;
  --blue-light: #eff6ff;
  --white: #ffffff;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
}

/* BODY */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  height: auto;
  min-height: 100%;
  margin: 0;
}

/* LINKS */
a {
  text-decoration: none;
  color: inherit;
}

/* ===== HEADER ===== */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  gap: 16px;
  align-items: center;
  position: sticky;
}

.brand-name {
  position: relative;
  padding: 6px 10px;
  font-size: 1.9rem;
  font-weight: 650;
  color: var(--blue-primary);
  border-radius: 999px;
  white-space: nowrap;
  z-index: 1;
  font-family: "Segoe Print", serif;
  letter-spacing: 0.3px;
  flex: 1;
  text-align: center;
  line-height: 2rem;
}

.glow-border::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  z-index: -1;

  background: linear-gradient(
    90deg,
    transparent 40%,
    rgba(22, 107, 243, 0.5),
    transparent 60%
  );

  background-size: 300% 100%;
  animation: glowMove 5s linear infinite;
  opacity: 0.4;
}

@keyframes glowMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

.logo {
  height: 60px;
  width: 60px;
  align-items: center;
  display: flex;
  border-radius: 50%;
  align-items: left;
  justify-content: center;
  box-shadow:
    0 0 13px rgba(98, 156, 248, 0.6),
    0 0 18px rgba(67, 135, 245, 0.4),
    0 0 20px rgba(17, 105, 247, 0.2);
}

.logo img {
  height: 85%;
  width: 85%;
  object-fit: contain;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-size: 1.1rem;
  color: var(--text-dark);
  padding: 5px 8px 5px 8px;
  border-radius: 10px;
}

.nav-links a:hover {
  color: var(--blue-secondary);
  transform: scale(1.05) translateY(-2px);
  transition: 0.4s ease;
  background-color: var(--blue-light);
}

.nav-links a.active {
  color: var(--white);
  font-weight: 600;
  border-bottom: 1px solid var(--blue-secondary);
  padding-bottom: inherit;
  background-color: var(--blue-secondary);
}

/* ===== MAIN CONTENT ===== 
   =========================*/

.main-content {
  max-width: 100%;
  margin: 0;
  padding-top: 0;
  /*background: linear-gradient(180deg, #e7e8ef 0%, #e6f0ff 50%, #ffffff 100%);*/
  background: #fdfdfd;
  min-height: unset;
  padding-bottom: 0;
}

.main-content > * {
  max-width: 95%;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--blue-primary);
  color: var(--white);
  margin-top: 0px;
}

.footer-left {
  padding: 14px 15px 5px 15px;
  text-align: center;
  font-size: 1.2rem;
}
.Cybroxin {
  padding-top: 5px;
  padding-bottom: 14px;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  }

  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
  }
  .logo {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .nav-links a {
    font-size: 1.1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 999px;
    padding: 6px 14px;
  }
}

@media (min-width: 481px) and (max-width: 1024px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
  }

  .brand-name {
    font-size: 1.4rem;
    padding: 6px 16px;
  }

  .logo {
    width: 48px;
    height: 48px;
  }
  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 0.95rem;
    padding: 6px 14px;
  }
}
