.page-header {
    background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)), url('../img/banner5.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    position: relative;
    overflow: hidden;
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 12, 32, 0.12) 0%, rgba(6, 12, 32, 0.18) 100%);
    pointer-events: none;
}

.page-title {
    position: relative;
    z-index: 2;
    font-family: 'Heebo', 'Nunito', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 10px 30px rgba(6, 12, 32, 0.45);
    font-size: clamp(1.8rem, 2.4rem + 1.6vw, 3.6rem);
    margin-bottom: .5rem;
}

.page-title .text-accent {
    display: inline-block;
    padding: 0 .14rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.page-subtitle {
    position: relative;
    z-index: 2;
    max-width: 840px;
    margin: 0 auto 1rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(.98rem, .95rem + .6vw, 1.05rem);
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 6px 18px rgba(6, 12, 32, 0.28);
}

.page-header .btn-lg {
    position: relative;
    z-index: 2;
    border-radius: 8px;
    padding: .65rem 1.15rem;
    box-shadow: 0 8px 24px rgba(11, 42, 102, 0.12);
    font-weight: 700;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.06);
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.28);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.72);
}

.breadcrumb .active {
    color: #fff;
}

@media (max-width: 576px) {
    .page-header {
        padding-top: 2.25rem;
        padding-bottom: 2.25rem;
    }

    .page-subtitle {
        padding: 0 1rem;
        font-size: .95rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: .5rem .9rem;
        font-size: .95rem;
    }
}

.stats-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00fbff 0%, #15bedbf9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.stat-label { margin-top:8px; font-size:0.95rem; color:#475569; font-weight:600 }

.stat-suffix { margin-right:8px; font-weight:700; color: rgba(11,17,32,0.85); }

.confetti {
  pointer-events: none;
  will-change: transform, opacity;
  width:10px;
  height:14px;
  opacity:0;
  transform-origin: center;
  z-index: 9999;
}

.confetti.rect { border-radius:2px; }
.confetti.circle { border-radius:50%; width:10px; height:10px; }

@keyframes confetti-pop {
  0% { opacity: 1; transform: translate(-50%,-50%) scale(0.2) rotate(0deg); }
  12% { transform: translate(-50%,-50%) scale(1.05) rotate(45deg); }
}
@keyframes confetti-flight {
  0% { transform: translate(var(--tx,0px), var(--ty,0px)) rotate(var(--rot,0deg)); opacity:1; }
  100% { transform: translate(var(--tx,0px), var(--ty-end,200px)) rotate(calc(var(--rot,0deg) + 720deg)); opacity:0; }
}
.confetti.anim {
  animation: confetti-pop 180ms ease-out 0ms forwards,
             confetti-flight var(--dur, 1200ms) cubic-bezier(.12,.9,.2,1) var(--delay,0ms) forwards;
  opacity:1;
}
.confetti::after {
  content:"";
  position:absolute;
  inset:0;
  box-shadow: 0 6px 12px rgba(2,6,23,0.06);
  border-radius:inherit;
  z-index:-1;
}

@media (max-width:560px){
  .stat-number { font-size:1.6rem; padding:6px 8px; }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.nodes-map-placeholder {
  width: 100%;
  height: 540px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, rgba(6,12,32,0.06), rgba(6,12,32,0.02));
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(6,12,32,0.12);
  text-align:center;
  padding: 18px;
}

.nodes-map-placeholder .placeholder-inner { max-width:720px; }

.map-load-spinner {
  position: absolute;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(6,12,32,0.22);
  z-index: 30;
}

.map-spinner {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.12);
  border-top-color: rgba(255,255,255,0.92);
  animation: map-spin .9s linear infinite;
}
@keyframes map-spin{ to{ transform: rotate(360deg); } }

.nodes-map { width:100%; height: 540px; border-radius:10px; overflow:hidden; }

@media (max-width:992px){ .nodes-map-placeholder, .nodes-map { height: 420px; } }
@media (max-width:576px){ .nodes-map-placeholder, .nodes-map { height: 320px; } }

.map-loading-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  transition: opacity .22s ease;
}
.map-loading-overlay.visible {
  opacity: 1;
  background: rgba(6,12,32,0.20);
  pointer-events: auto;
}

.leaflet-tile {
  opacity: 1;
}

.scroll-indicator { text-align: center; margin-top: 36px; padding: 8px 0; }

.scroll-arrow {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(43,110,246,0.08), rgba(122,57,216,0.06));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 10px 30px rgba(11,42,102,0.12);
  backdrop-filter: blur(4px);
  cursor: pointer;
  position: relative;
  transition: transform .16s ease, box-shadow .16s ease;
  margin: 12px auto 0;
}

.scroll-arrow svg { display:block; width:34px; height:34px; }

.scroll-halo {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,110,246,0.12) 0%, rgba(122,57,216,0.06) 40%, transparent 60%);
  filter: blur(6px);
  opacity: 0.0;
  transform: scale(.9);
  transition: opacity .32s ease, transform .6s cubic-bezier(.2,.9,.3,1);
  pointer-events: none;
}

@keyframes floatUp {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
@keyframes haloPulse {
  0% { opacity: 0.0; transform: scale(.95); }
  50% { opacity: 0.46; transform: scale(1.12); }
  100% { opacity: 0.0; transform: scale(.95); }
}

.scroll-arrow {
  animation: floatUp 3.2s ease-in-out infinite;
}
.scroll-arrow .scroll-halo {
  animation: haloPulse 2.6s ease-in-out infinite;
}

.scroll-arrow:hover,
.scroll-arrow:focus {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 36px rgba(11,42,102,0.18);
  outline: none;
}
.scroll-arrow:active { transform: translateY(-2px) scale(.99); }

.scroll-arrow:focus-visible {
  box-shadow: 0 0 0 4px rgba(43,110,246,0.12), 0 10px 30px rgba(11,42,102,0.12);
}

@media (max-width:576px) {
  .scroll-arrow { width:52px; height:52px; }
  .scroll-arrow svg { width:28px; height:28px; }
  .scroll-indicator { margin-top: 20px; }
}

.node-status {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px 6px 48px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  min-width: 96px;
  box-shadow: 0 6px 14px rgba(2,6,23,0.06);
  text-align: center;
  transition: transform .12s ease, box-shadow .12s ease;
}

.node-status::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset;
  z-index: 1;
}

.node-status__label {
  position: relative;
  z-index: 2;
  text-transform: capitalize;
  line-height: 1;
}

@media (max-width:420px) {
  .node-status { padding: 6px 12px 6px 40px; min-width:78px; font-size:0.82rem; }
  .node-status::before { left:12px; width:10px; height:10px; }
}

.leaflet-popup-content .node-status {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 6px 14px 6px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  max-width: 100%;
  box-shadow: 0 6px 14px rgba(2,6,23,0.06);
  text-align: center;
  overflow: visible;
  position: relative;
  transition: transform .12s ease, box-shadow .12s ease;
}

.leaflet-popup-content .node-status::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset;
  z-index: 1;
  transition: transform .14s ease, opacity .14s ease;
}

.leaflet-popup-content .node-status__label {
  position: relative;
  z-index: 2;
  line-height: 1;
  text-transform: capitalize;
  margin: 0;
}

@media (max-width:420px) {
  .leaflet-popup-content .node-status {
    padding: 6px 10px 6px 32px;
    min-width: 80px;
    font-size: 0.82rem;
  }
  .leaflet-popup-content .node-status::before {
    left: 8px;
    width: 9px;
    height: 9px;
  }
}

:root{
  --eduroam-blue: #0b61ff;
  --icon-disabled: #9ea6ad;
  --eduroam-cyan: #04A4A5;
  --bg: #f6f8fb;
  --card-pad: 14px;
  --radius: 12px;
  --glass: rgba(255,255,255,0.95);
  --muted: #6b7785;
  --logo-w: 72px;
  --card-gap: 18px;
  --card-pad: 14px;
  --transition-fast: .14s ease;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.container-xxl { max-width:1200px; margin:0 auto; }
.partners-panel-wrap { padding: 10px 18px 26px; }

.partners-search { margin: 6px auto 18px; display:flex; justify-content:center; }
.search-box {
  display:flex; gap:8px; align-items:center;
  background: #fff;
  padding:8px; border-radius:10px;
  border:1px solid rgba(11,17,32,0.06);
  max-width: 960px; width:100%; box-sizing:border-box;
}
.search-box input[type="search"]{
  border:0; outline:none; background:transparent; color:#071024; font-size:0.96rem; flex:1 1 auto; padding:6px 6px;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; appearance: none; display: none; }
input[type="search"]::-ms-clear { display:none; }
input[type="search"]::-ms-reveal { display:none; }

.search-clear-btn {
  background:transparent; border:0; color: rgba(11,17,32,0.6); font-size:0.96rem; padding:6px; border-radius:8px; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}
.search-clear-btn[hidden] { display:none; }
.search-clear-btn:focus, .search-box input[type="search"]:focus { outline: 2px solid rgba(11,97,255,0.12); outline-offset:2px; }

.partners-grid {
  display: grid;
  gap: var(--card-gap);
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
  padding: 8px 12px 0;
  box-sizing: border-box;
}
@media (max-width: 992px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .partners-grid { grid-template-columns: 1fr; gap: 12px; padding: 6px 10px 0; } }

.partner-card {
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--card-pad);
  border-radius: 12px;
  background: linear-gradient(180deg,#ffffff 98%, #fbfdff 100%);
  box-shadow: 0 10px 30px rgba(11,42,102,0.06);
  border:1px solid rgba(11,17,32,0.04);
  overflow:hidden;
  box-sizing:border-box;
  min-height: 130px;
  transition: transform .18s, box-shadow .18s;
  position: relative;
}

.partner-card__header {
  display:flex;
  align-items:center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 8px;
}

.partner-compact {
  display:none;
  align-items:center;
  gap:10px;
}

.partner-actions { display:flex; gap:8px; align-items:center; }
.partner-actions .action {
  width:36px; height:36px; display:inline-grid; place-items:center;
  border-radius:8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,255,0.98));
  color: var(--eduroam-blue);
  border:1px solid rgba(11,17,32,0.06);
  font-size:14px; cursor:pointer;
  box-shadow: 0 6px 18px rgba(2,6,23,0.04);
  transition: transform .12s ease, box-shadow .12s ease, color .12s ease;
}
.partner-actions .action.enabled { color: var(--eduroam-blue); background: linear-gradient(180deg, rgba(11,97,255,0.06), rgba(11,97,255,0.02)); border-color: rgba(11,97,255,0.12); }
.partner-actions .action[aria-disabled="true"], .partner-actions .action.disabled { color: var(--icon-disabled); background:#fff; border-color: rgba(160,170,175,0.12); opacity:0.72; cursor:default; pointer-events:none; }

.partner-card__content { display:flex; gap:12px; align-items:center; width:100%; box-sizing:border-box; }
.partner-logo2 {
  flex: 0 0 var(--logo-w);
  width: var(--logo-w);
  height: var(--logo-w);
  border-radius: 10px;
  padding: 6px;
  box-sizing: border-box;
  display: inline-block;
  background: transparent !important;
  overflow: hidden;
  object-fit: contain;
  box-shadow: 0 6px 18px rgba(2,6,23,0.04);
}

.partner-body { display:flex; flex-direction:column; justify-content:center; min-width:0; }

.partner-title {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size:1rem; font-weight:700; color:#071024; line-height:1.08;
  margin:0;
  min-width:0;
  padding-right: 10px;
}
.partner-title.truncated::after {
  content: "…";
  margin-left: 6px;
  color: rgba(11,17,32,0.36);
  font-weight: 600;
  font-size: 0.95rem;
}
.partner-acronym { margin-top:6px; font-size:0.85rem; color: rgba(11,17,32,0.56); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

.partner-card::after {
  content:""; position:absolute; left:12px; top:20%; height:60%; width:3px; border-radius:3px;
  background: linear-gradient(180deg,#00bcd4,var(--eduroam-blue)); opacity:0.09; pointer-events:none;
}
.partner-card:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(11,42,102,0.12); }

@media (max-width: 992px) {
  :root { --logo-w: 64px; }
  .partner-card { min-height: 120px; }
  .partner-actions .action { width:34px; height:34px; font-size:13px; }
}

@media (max-width: 576px) {
  :root { --logo-w: 56px; }
  .partner-card { min-height: 72px; padding:10px; display:flex; align-items:center; }
  .partner-card__header { margin-bottom:0; width:100%; justify-content:space-between; }
  .partner-card__content { display:none; }
  .partner-compact { display:flex; align-items:center; gap:10px; }
  .partner-title { display:none; }
  .partner-acronym { font-size:1rem; font-weight:700; margin:0; color:#071024; }
  .partner-actions { margin-left:auto; }
  .partner-logo2 { margin-right:6px; }
}

.partners-empty { padding:18px; text-align:center; color: rgba(11,17,32,0.6); border-radius:10px; background: rgba(255,255,255,0.02); }
.partners-footer { margin-top:12px; font-size:0.9rem; color: rgba(11,17,32,0.6); text-align:center; }

.partners-tooltip {
  transition: opacity .12s ease, transform .12s ease;
  transform-origin: center top;
  position: fixed;
  z-index: 9999;
  padding: 8px 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow: 0 12px 30px rgba(11,42,102,0.12);
  border: 1px solid rgba(11,17,32,0.06);
  max-width: min(420px, 90vw);
  font-size: 0.95rem;
  color: #071024;
  display: none;
  pointer-events: none;
}

.partner-actions .action:focus { outline: 2px solid rgba(11,97,255,0.12); outline-offset:2px; border-radius:8px; }

.container-fluid.px-0 { padding-left:0 !important; padding-right:0 !important; max-width:100% !important; }

/*#######################################################*/

.modal-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(3,12,30,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1300;
  padding: 20px;
}

.modal{
  display: inline-block;
  vertical-align: middle;
  width: min(96vw, 960px);
  background: var(--glass);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(2,6,23,0.2);
  overflow: visible;
  border: 1px solid rgba(11,17,32,0.06);
  transform: translateY(10px);
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  position: relative;
  z-index: 1400;
  box-sizing: border-box;
  max-height: calc(100vh - 300px);
}

.modal[aria-hidden="true"]{ display:none; }
.modal[aria-hidden="false"]{ display:inline-block; }

.modal.show{ opacity:1; transform:none; }

.modal-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: flex-start;
}

@media (width:2560px){
  .modal{display: inline-block;
  vertical-align: middle;
  width: min(96vw, 960px);
  background: var(--glass);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(2,6,23,0.2);
  overflow: visible;
  border: 1px solid rgba(11,17,32,0.06);
  transform: translateY(10px);
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  position: relative;
  z-index: 1400;
  box-sizing: border-box;
  max-height: calc(100vh - 850px); }
}


@media (min-width:1024) and (max-width:1440px){
  .modal{display: inline-block;
  vertical-align: middle;
  width: min(96vw, 960px);
  background: var(--glass);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(2,6,23,0.2);
  overflow: visible;
  border: 1px solid rgba(11,17,32,0.06);
  transform: translateY(10px);
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  position: relative;
  z-index: 1400;
  box-sizing: border-box;
  max-height: calc(100vh);
}
}

@media (min-width:960px) and (max-width:1024px){
  .modal{display: inline-block;
  vertical-align: middle;
  width: min(96vw, 960px);
  background: var(--glass);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(2,6,23,0.2);
  overflow: visible;
  border: 1px solid rgba(11,17,32,0.06);
  transform: translateY(10px);
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  position: relative;
  z-index: 1400;
  box-sizing: border-box;
  max-height: calc(100vh - 950px);
}
}

@media (min-width:768px) and (max-width:960px){
  .modal-inner{ grid-template-columns:1fr; align-items:stretch; }
  .modal-left{ border-right:none; padding:18px; }
  .modal-right{ padding:16px; max-height:none; }
  .modal{max-height: calc(100vh - 500px); }
}

@media (min-width:480px) and (max-width:768px){
  .modal-inner{ grid-template-columns:1fr; align-items:stretch; }
  .modal-left{ border-right:none; padding:18px; }
  .modal-right{ padding:16px; max-height:none; }
  .modal{max-height: calc(100vh); }
}

@media (min-width:380px) and (max-width:480px){
  .modal-inner{ grid-template-columns:1fr; align-items:stretch; }
  .modal-left{ border-right:none; padding:18px; }
  .modal-right{ padding:16px; max-height:none; }
  .modal{max-height: calc(100vh - 135px); }
}

@media (min-width:320px) and (max-width:380px){
  .modal-inner{ grid-template-columns:1fr; align-items:stretch; }
  .modal-left{ border-right:none; padding:18px; }
  .modal-right{ padding:16px; max-height:none; }
  .modal{max-height: calc(100vh - 80px); }
  .profile-note { display: none; }
  .partner-acronym{font-size: 12px;}
}


.modal-left{
  padding: 22px 24px;
  border-right: 1px solid rgba(11,17,32,0.04);
  background: linear-gradient(180deg,#ffffff,#f7fcff);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.modal-left h2{margin:0 0 10px;font-size:1.2rem;color:#071024;font-weight:800;font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;}
.modal-left p.lead{margin:6px 0 18px;color:var(--muted);font-size:0.95rem}
.modal-left .logo-wrap{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.modal-left .logo-wrap img{width:84px;height:84px;object-fit:contain;border-radius:10px;box-shadow:0 10px 30px rgba(2,6,23,0.06)}
.modal-left .contact{margin-top:12px;color:var(--muted);font-size:0.95rem}

.modal-right{
  padding: 18px 20px;
  overflow: auto;
  max-height: calc(100vh - 160px);
  box-sizing: border-box;
}

.modal-left, .modal-right { box-sizing: border-box; }

.profile-group{margin-bottom:14px}
.profile-title{font-weight:700;color:#08324a;margin-bottom:8px}
.os-cards{display:flex;gap:10px;flex-wrap:wrap}
.os-card{width:72px;height:72px;border-radius:10px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(11,17,32,0.06);background:#fff;cursor:pointer;transition:transform .12s ease,box-shadow .12s ease}
.os-card:active{transform:translateY(1px)}
.os-card.disabled{opacity:.5;cursor:not-allowed;pointer-events:none}
.os-card .fa-stack{font-size:22px;color:var(--eduroam-blue)}
.profile-note{font-size:0.85rem;color:var(--muted);margin-top:8px}


.modal-header{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding:8px 12px;
  border-bottom:1px solid rgba(11,17,32,0.04);
}
.modal-close{ background:transparent; border:0; font-size:18px; cursor:pointer; color:var(--muted); padding:8px; border-radius:8px; }
.modal-close:focus{ outline:2px solid rgba(11,97,255,0.12); outline-offset:2px; }
.modal-inner, .modal-left, .modal-right { width: 100%; }

.kv{font-weight:600;color:#050505f9}
@media (max-width:420px){.os-card{width:60px;height:60px}.modal-left h2{font-size:1.05rem}.modal-left .logo-wrap img{width:64px;height:64px}}

html, body {
  overflow-x: hidden;
}


button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
