
:root{
  --panel-bg: rgba(10,10,10,0.55);
  --panel-border: rgba(255,255,255,0.12);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --shadow: 0 18px 55px rgba(0,0,0,0.45);
  --radius: 18px;
  --gap: 18px;
  --maxw: 1200px;
}

*{ box-sizing: border-box; }
html, body{ height:100%;   font-size: 11pt;
}

body{
  margin:0;
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", serif;
  color: var(--text);
  background: #000;
  overflow-x: hidden;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  filter: blur(16px) brightness(0.65) saturate(1.05);
}

body::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at top, rgba(0,0,0,0.25), rgba(0,0,0,0.80));
}

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

.header{
  max-width: var(--maxw);
  margin: 18px auto 0;
  padding: 0 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

.brand{
  display:flex;
  flex-direction: column;
  gap: 2px;
}
.brand .title{
  font-size: 18px;
  letter-spacing: 0.6px;
}
.brand .subtitle{
  font-size: 13px;
  color: var(--muted);
}

.nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a{
  padding: 8px 12px;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  white-space: nowrap;
}

.main{
  max-width: var(--maxw);
  margin: 14px auto 28px;
  padding: 0 16px;
}

.panel{
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.content{
  display:flex;
  gap: var(--gap);
  padding: 18px;
}

.left{
  flex: 0 0 44%;
  min-width: 260px;
}
.right{
  flex: 1 1 auto;
  min-width: 280px;
}

.figure{
  margin:0;
}
.figure img{
  width: 100%;
  height: auto;
  display:block;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}

.h1{
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: 0.3px;
}
.text{
  font-size: 11pt;
  line-height: 1.55;
  color: var(--text);
}
.text p{
  margin: 0 0 12px;
}
.text p:last-child{ margin-bottom:0; }

.footer{
  max-width: var(--maxw);
  margin: 10px auto 26px;
  padding: 0 16px;
  display:flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.footer .hint{
  color: var(--muted);
  font-size: 13px;
}
.footer .links{
  display: flex;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;

  width: 100%;
}
.footer .links a{
  padding: 8px 12px;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
}

.hero{
  padding: 18px;
}
.hero img{
  width: 100%;
  height: auto;
  display:block;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
.hero .cta{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta a{
  padding: 10px 14px;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
}

.hero .cta a{
  padding: 10px 14px;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
}

@media (max-width: 920px){
  .content{
    flex-direction: column;
  }
  .left, .right{
    flex: 1 1 auto;
    min-width: 0;
  }
  .h1{ font-size: 24px; }
  .text{ font-size: 11pt; }
}


/* force bottom navigation right */
.cta,
.pager,
.nav-bottom,
.footer-nav{
  display: flex !important;
  justify-content: flex-end !important;
  width: 100%;
}

.bottom-nav{
  max-width: var(--maxw);
  margin: 20px auto 0;
  padding: 0 16px;
}
.bottom-nav .cta{
  display:flex;
  justify-content:flex-end;
  gap:10px;
}

/* Originaltext block */
.originaltext{
  max-width: var(--maxw);
  margin: 18px auto 28px;
  padding: 0 16px;
  text-align: center;
}
.originaltext h2{
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: 0.2px;
}
.originaltext .box{
  display: inline-block;
  text-align: left;
  max-width: 80ch;
  padding: 14px 16px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
}
.originaltext pre{
  margin: 0;
  white-space: pre-wrap;
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", serif;
  font-size: 11pt;
  line-height: 1.55;
}
