html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  body {
    overflow-x: hidden;
  }
}

@media (max-width: 767.98px) {
  html,
  body {
    scrollbar-width: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    height: 0;
    width: 0;
  }
}

img,
svg {
  max-width: 100%;
  vertical-align: middle;
}

a {
  text-decoration-thickness: from-font;
}

.skip-link {
  background: #0f172a;
  color: #ffffff;
  font-weight: 800;
  left: 1rem;
  padding: 0.55rem 0.8rem;
  position: absolute;
  top: 0.5rem;
  transform: translateY(-140%);
  z-index: 10000;
}

.skip-link:focus {
  transform: translateY(0);
}

main:focus {
  outline: none;
}

/* SOURCE_CHROME_START */
/* NAVBAR */
  .navbar-custom {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 60%, #0ea5e9 100%);
    border-bottom: 3px solid var(--secondary);
    box-shadow: 0 2px 16px rgba(14,165,233,0.18);
    padding: 0.5rem 1rem;
  }

.navbar-custom .navbar-brand img { height: 44px; }

.navbar-custom .nav-link {
    color: #e0f2fe !important;
    font-weight: 500;
    font-size: 0.93rem;
    padding: 0.45rem 0.7rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
  }

.navbar-custom .nav-link:hover,
  .navbar-custom .nav-link.active {
    background: var(--secondary);
    color: #fff !important;
  }

.navbar-toggler { border-color: #e0f2fe; }

.navbar-toggler-icon { filter: invert(1); }

.btn-nav-login {
    background: transparent;
    border: 1.5px solid #e0f2fe;
    color: #e0f2fe !important;
    border-radius: 20px;
    padding: 0.35rem 1rem;
    font-size: 0.88rem;
    transition: all 0.2s;
  }

.btn-nav-login:hover { background: #e0f2fe; color: var(--bg-dark) !important; }

.btn-nav-register {
    background: var(--secondary);
    border: none;
    color: #fff !important;
    border-radius: 20px;
    padding: 0.35rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s;
  }

.btn-nav-register:hover { background: #16a34a; color: #fff !important; }

/* FOOTER */
  .footer-main {
    background: linear-gradient(135deg, #0c4a6e 0%, #0f172a 100%);
    color: #cbd5e1;
    padding: 3.5rem 0 1.5rem;
    border-top: 3px solid var(--divider);
  }

.footer-logo img { height: 40px; margin-bottom: 1rem; }

.footer-desc { font-size: 0.88rem; color: #94a3b8; line-height: 1.7; max-width: 280px; }

.footer-heading { font-weight: 700; color: #e0f2fe; font-size: 1rem; margin-bottom: 1rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--divider); }

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 0.5rem; }

.footer-links li a { color: #94a3b8; font-size: 0.88rem; transition: color 0.2s; }

.footer-links li a:hover { color: var(--secondary); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.2rem; margin-top: 2rem; }

.footer-bottom p { font-size: 0.82rem; color: #64748b; margin: 0; }

.footer-email a { color: var(--primary); font-size: 0.88rem; }

.sticky-top { position: sticky; top: 0; z-index: 1020; }
.flex-wrap { flex-wrap: wrap !important; }

.footer-main a,
footer a {
  text-decoration: none;
}

.footer-main a:hover,
footer a:hover {
  text-decoration: none;
}
/* SOURCE_CHROME_END */
