:root{
  --pr-bg:#0b0e14;
  --pr-panel:#121826;
  --pr-accent:#22a2ff;
  --pr-accent-2:#7c5cff;
  --pr-text:#e8eefc;
  --pr-muted:#a8b3c7;
  --pr-border:rgba(255,255,255,.08);
  --pr-soft:rgba(255,255,255,.04);
  --pr-radius:18px;
  --pr-gap:28px;
  --pr-max:1200px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,Helvetica,sans-serif;
  background:linear-gradient(180deg,var(--pr-bg),#0e1422 60%, #0b0e14);
  color:var(--pr-text);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{color:var(--pr-accent);text-decoration:none}
a:hover{text-decoration:underline}

.pressroom-shell{
  max-width:var(--pr-max);
  margin:0 auto;
  padding:24px 18px 56px;
}

.pressroom-header{
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter:saturate(1.2) blur(10px);
  background:linear-gradient(180deg,rgba(11,14,20,.9),rgba(11,14,20,.65));
  border-bottom:1px solid var(--pr-border);
  margin:0 -18px 24px;
  padding:12px 18px;
}
.pressroom-header-inner{
  max-width:var(--pr-max);
  margin:0 auto;
}
.pressroom-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:6px;
}
.pressroom-brand{
  font-weight:800;
  letter-spacing:.3px;
  color:#fff;
}
.pressroom-links a{
  margin-left:14px;
  padding:8px 12px;
  border:1px solid var(--pr-border);
  border-radius:12px;
  background:var(--pr-soft);
}
h1{
  font-size:clamp(28px,4vw,44px);
  line-height:1.15;
  margin:6px 0;
  font-weight:800;
  letter-spacing:.2px;
  background:linear-gradient(90deg,var(--pr-text),#d3e4ff 40%, var(--pr-accent-2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.pressroom-layout{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:var(--pr-gap);
  align-items:start;
}

.pressroom-aside{
  position:relative;
}
.pressroom-aside-card{
  background:var(--pr-panel);
  border:1px solid var(--pr-border);
  border-radius:var(--pr-radius);
  padding:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  position:sticky;
  top:96px;
}
.movie{
  width:100%;
  aspect-ratio:16/9;
  display:block;
  border-radius:12px;
  border:0;
  box-shadow:0 12px 30px rgba(0,0,0,.45);
}
.pressroom-map-card{
  margin-top:18px;
  padding:0;
  overflow:hidden;
}
.pressroom-map-header{
  padding:12px 14px;
  font-weight:700;
  letter-spacing:.2px;
  border-bottom:1px solid var(--pr-border);
  background:linear-gradient(180deg,rgba(34,162,255,.15),rgba(124,92,255,.05));
  border-top-left-radius:var(--pr-radius);
  border-top-right-radius:var(--pr-radius);
}
.pressroom-map{
  width:100%;
  height:280px;
  border:0;
  display:block;
  border-bottom-left-radius:var(--pr-radius);
  border-bottom-right-radius:var(--pr-radius);
}

.pressroom-article{
  background:linear-gradient(180deg,rgba(18,24,38,.7),rgba(18,24,38,.55));
  border:1px solid var(--pr-border);
  border-radius:var(--pr-radius);
  padding:28px;
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}

h2{
  font-size:clamp(20px,2.6vw,28px);
  margin:28px 0 14px;
  font-weight:800;
  color:#f3f7ff;
}
h3{
  font-size:clamp(18px,2.2vw,22px);
  margin:22px 0 8px;
  font-weight:700;
  color:#e1e9ff;
}
h4{
  font-size:16px;
  margin:18px 0 8px;
  font-weight:700;
  color:#d7e4ff;
}

p{
  margin:0 0 14px;
  color:var(--pr-text);
}
em, strong{color:#ffffff}

ul,ol{
  margin:10px 0 18px 0;
  padding-left:0;
}
ul li, ol li{
  list-style:none;
  margin:10px 0 0 0;
  padding-left:34px;
  position:relative;
  color:var(--pr-text);
}
ul li:before{
  content:"";
  position:absolute;
  left:0;top:8px;
  width:18px;height:18px;
  border-radius:6px;
  background:linear-gradient(135deg,var(--pr-accent),var(--pr-accent-2));
  box-shadow:0 4px 10px rgba(124,92,255,.35);
}
ol{counter-reset:prc}
ol li{
  counter-increment:prc;
}
ol li:before{
  content:counter(prc);
  position:absolute;
  left:0;top:0;
  width:26px;height:26px;
  border-radius:8px;
  background:var(--pr-soft);
  border:1px solid var(--pr-border);
  color:var(--pr-accent);
  font-weight:700;
  display:grid;
  place-items:center;
}

table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  margin:18px 0 22px;
  background:var(--pr-panel);
  border:1px solid var(--pr-border);
  border-radius:14px;
  overflow:hidden;
  box-shadow:inset 0 1px 0 var(--pr-soft);
}
th,td{
  padding:14px 16px;
  text-align:left;
  border-bottom:1px solid var(--pr-border);
}
th{
  font-weight:700;
  color:#eaf2ff;
  background:linear-gradient(180deg,rgba(34,162,255,.15),rgba(124,92,255,.05));
}
tr:last-child td{border-bottom:0}
tbody tr:hover td{background:rgba(255,255,255,.02)}

a[href]{
  border-bottom:1px dashed rgba(34,162,255,.5);
  transition:all .2s ease;
}
a[href]:hover{
  border-bottom-color:transparent;
  text-shadow:0 0 18px rgba(34,162,255,.45);
}

.pressroom-footer{
  margin-top:32px;
  border-top:1px solid var(--pr-border);
  padding-top:16px;
}
.pressroom-footer-inner{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:flex-end;
  color:var(--pr-muted);
}
.pressroom-copy{opacity:.8}

@media (max-width: 1024px){
  .pressroom-layout{
    grid-template-columns:1fr;
  }
  .pressroom-aside-card{
    position:relative;
    top:0;
  }
  .pressroom-footer-inner{
    justify-content:center;
  }
}

@media (max-width: 560px){
  .pressroom-shell{padding:16px 14px 40px}
  .pressroom-article{padding:20px}
  h1{font-size:32px}
  h2{font-size:22px}
  h3{font-size:18px}
  .pressroom-map{height:220px}
}
