.loop-vid{
  margin: 16px 0 20px;
  background: #0b1624;
  border: 1px solid var(--border, rgba(255,255,255,.12));
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.loop-vid__media{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio: 16/9;           
  object-fit: cover;
  filter: saturate(.98);
}

.loop-vid__cap{
  margin: 0;
  padding: 8px 10px;
  font-size: .92rem;
  color: rgba(230,238,247,.85);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top: 1px solid var(--border, rgba(255,255,255,.08));
}

@media (max-width:768px){
  .loop-vid{ border-radius: 12px; }
  .loop-vid__cap{ font-size: .9rem; padding: 7px 10px; }
}

.player--loop .player__play,
.player--loop .player__bottom,
.player--loop .player__toolbar{ display: none !important; }

.player__video{
  display:block; width:100%; height:auto;
  aspect-ratio: 16/9;        
  object-fit: cover;
}

.frag{ margin: 22px 0 28px; }
.frag__title{
  margin: 0 0 10px;
  font-weight: 800;
  font-size: clamp(20px, 1.05rem + 0.9vw, 28px);
  color: var(--text);
}


.mark{
  font-weight: 800;
  color: #10131a;
  background: linear-gradient(0deg,#ffbf3a,#ffd86e);
  border-radius: 6px;
  padding: 0 .22em;
  box-shadow: 0 1px 0 rgba(0,0,0,.18);
}


.frag > p{
  margin: 0 0 10px;
  font-size: clamp(17px, 0.95rem + 0.25vw, 19px);
  line-height: 1.65;
  color: var(--text);
}


.frag__dialog{ display: grid; gap: 8px; margin-top: 6px; }
.frag__line{
  margin: 0;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: clamp(17px, 0.95rem + 0.25vw, 19px);
  line-height: 1.65;
  color: var(--text);
}
.frag__line strong{ font-weight: 800; }
.frag__ico{
  width: 22px; height: 22px; display: grid; place-items: center;
  filter: saturate(.95);
}

.frag__after{ margin: 12px 0 0; font-size: clamp(17px, 0.95rem + 0.25vw, 19px); }

@media (max-width: 768px){
  .frag__line{ grid-template-columns: 20px 1fr; gap: 8px; }
  .frag__ico{ width: 20px; height: 20px; }
}
/*==========================*/
.player{ position: relative; overflow: hidden; }
.player__video{ width:100%; height:auto; display:block; aspect-ratio:16/9; object-fit:cover; }

.vid-overlay{
  position: absolute;
  left: clamp(8px, 4vw, 24px);
  bottom: clamp(8px, 6vh, 48px);
  width: clamp(100px, 28vw, 340px);
  max-width: 70%;
  border-radius: 14px;
  border: 2px solid rgba(124,120,255,.9);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  background: rgba(20,24,34,.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(10px) scale(.98);
  transition: opacity .28s ease, transform .28s ease;
  pointer-events: none;
  z-index: 2; 
}
.vid-overlay.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 768px){
  .vid-overlay{
    width: clamp(140px, 42vw, 220px);
    bottom: clamp(16px, 8vh, 56px);
    border-radius: 12px;
  }
}

/*=======================*/

.cta-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
  padding-block: 14px;
}

:root{
  --cta-bg1: color-mix(in oklab, var(--accent, #3aa1ff) 90%, #0b6bd6);
  --cta-bg2: color-mix(in oklab, var(--accent-2, #0b6bd6) 88%, #3aa1ff);
  --cta-text:#fff;
  --cta-ring: rgba(255,255,255,.22);
}

.cta-link{
  --h: 52px;
  display:inline-flex; align-items:center; justify-content:center; gap:12px;
  min-width: 280px; height: var(--h); padding: 0 24px;
  color: var(--cta-text); text-decoration:none; font-weight:800; letter-spacing:.3px;
  background: rgb(4, 0, 241);
  background-size: 200% 100%;                 
  border: 1px solid var(--cta-ring);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,.26), inset 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
  animation: ctaPan 6s ease-in-out infinite;  
}

.cta-label{ text-transform: uppercase; }
.cta-ico{ width:22px; height:22px; }
@media (hover:hover){
  .cta-link:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,0,0,.32), inset 0 0 0 1px rgba(255,255,255,.10);
    filter: saturate(1.06);
  }
}
.cta-link:active{ transform: translateY(0); }
.cta-link:focus-visible{
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@keyframes ctaPan{
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (max-width: 1024px){
  .cta-link{ --h: 56px; min-width: 320px; font-size: 1.02rem; }
}

@media (max-width: 768px){
  .cta-wrap{ padding-block: 10px; }
  .cta-link{
    width: 100%;
    min-width: 0;
    --h: 54px;
    font-size: 1rem;
  }
}

.cta-wrap .cta-link{ max-width: min(720px, 100%); }

@media (prefers-reduced-motion: reduce){
  .cta-link{ animation: none; transition:none; }
}

.report{
  margin: 26px 0 32px;
  color: var(--text);
}
.report__title{
  margin: 0 0 14px;
  font-weight: 800;
  font-size: clamp(21px, 1.1rem + 1vw, 30px);
  color: #fff; 
}
.report p{
  margin: 0 0 14px;
  font-size: clamp(17px, 0.98rem + 0.25vw, 19.5px);
  line-height: 1.7;
}

.report .em{
  color: #ffc14a;                         
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

@media (max-width: 1024px){
  .report__title{ font-size: clamp(20px, 2.2vw, 26px); }
}
@media (max-width: 768px){
  .report{ margin: 22px 0 28px; }
  .report p{ line-height: 1.65; }
}
/**/
.container{
  max-width: var(--container-max, 1100px);
  width: 100%;
  padding-inline: 16px;
  margin-inline: auto;
}
/**/
.kontoauszug {
  background: #fff;
  color: #111;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  margin: 32px auto;
  max-width: 900px;
}

.kontoauszug__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.kontoauszug__header h2 {
  font-size: clamp(1.2rem, 0.8rem + 1vw, 1.6rem);
  font-weight: 700;
  margin: 0;
}
.logo-box img {
   width: clamp(150px, 22vw, 220px); 
  height: auto;
  object-fit: contain;
}

.kontoauszug__info table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.kontoauszug__info th {
  text-align: left;
  width: 180px;
  padding: 6px 8px;
  font-weight: 600;
  vertical-align: top;
}
.kontoauszug__info td {
  padding: 6px 8px;
}

.kontoauszug__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-top: 10px;
}
.kontoauszug__table th,
.kontoauszug__table td {
  border: 1px solid #ccc;
  padding: 8px 10px;
  vertical-align: top;
}
.kontoauszug__table thead {
  background: #f5f7fa;
}
.kontoauszug__table th {
  text-align: left;
  font-weight: 600;
}
.betrag {
  color: #048a04;
  font-weight: 700;
}
.saldo {
  font-weight: 700;
}

@media (max-width: 768px) {
  .kontoauszug {
    padding: 20px;
    margin: 16px;
  }
  .kontoauszug__header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .kontoauszug__info th {
    width: 40%;
  }
  .kontoauszug__table {
    font-size: 0.9rem;
  }
  .kontoauszug__table th,
  .kontoauszug__table td {
    padding: 6px 8px;
  }
}

@media (max-width: 540px){
  .kontoauszug__table thead{
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f5f7fa;
    padding: 8px 10px;
    margin-bottom: 10px;
  }
  .kontoauszug__table thead th{
    display: inline-block;
    font-size: .82rem;
    font-weight: 700;
    color: #333;
    background: #fff;
    border: 1px solid #e3e6ea;
    border-radius: 6px;
    padding: 4px 8px;
    width: max-content;
  }

  .kontoauszug__table tbody tr{
    display: block;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    background: #fafafa;
  }
  .kontoauszug__table tbody td{
    display: grid;
    grid-template-columns: 1fr auto; 
    gap: 8px;
    border: none;
    padding: 6px 0;
    font-size: .92rem;
  }
  .kontoauszug__table tbody td::before{
    content: attr(data-label);
    font-weight: 600;
    color: #333;
  }
  .kontoauszug__table tbody td.betrag,
  .kontoauszug__table tbody td.saldo{
    font-weight: 700;
  }
}
@media (max-width: 540px){
  .kontoauszug__table thead{
    display: none !important; 
  }
  .kontoauszug__table tbody tr{
    display: block;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    background: #fafafa;
  }
  .kontoauszug__table tbody td{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    border: none;
    padding: 6px 0;
    font-size: .92rem;
  }
  .kontoauszug__table tbody td::before{
    content: attr(data-label);
    font-weight: 600;
    color: #333;
  }
}
/* ===== Registration guide ===== */
.guide{ margin: 26px auto; }
.guide__lead{
  color: var(--text);
  font-size: clamp(17px, 0.98rem + .25vw, 19.5px);
  line-height: 1.7;
  margin: 0 0 14px;
}
.guide__title{
  margin: 0 0 14px;
  color: #fff;                 
  font-weight: 900;
  font-size: clamp(20px, 1rem + 1vw, 28px);
  letter-spacing: .2px;
}
.mark{
  font-weight: 800;
  color: #ffc14a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.guide__steps{
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.guide__step{
  position: relative;
  color: #e8f1ff;
  background: color-mix(in oklab, #31466a 70%, transparent);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 14px 16px 14px 48px;
  font-size: clamp(16px, 0.95rem + .15vw, 18px);
  line-height: 1.6;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
.guide__step::before{
  content: "";
  position: absolute;
  left: 14px; top: 50%;
  width: 18px; height: 18px;
  transform: translateY(-50%);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--accent,#3aa1ff), var(--accent-2,#0b6bd6));
  box-shadow: 0 2px 0 rgba(0,0,0,.2);
  -webkit-mask: 
     conic-gradient(from 90deg at 30% 50%, transparent 0 25%, #000 0 75%, transparent 0) 
     0 0 / 100% 100%;
  mask:
     conic-gradient(from 90deg at 30% 50%, transparent 0 25%, #000 0 75%, transparent 0) 
     0 0 / 100% 100%;  
}
.guide__step strong{ font-weight: 800; color:#fff; }

.guide__note{
  margin: 12px 0 0;
  color: #e9f1ff;
  font-size: clamp(16px, .95rem + .15vw, 18px);
}
.guide__clock{ margin-right: 6px; filter: saturate(.9); }

@media (max-width: 1024px){
  .guide__step{ padding: 14px 14px 14px 46px; }
}
@media (max-width: 768px){
  .guide{ margin: 22px auto; }
  .guide__step{
    border-radius: 10px;
    padding: 12px 12px 12px 44px;
    font-size: clamp(16px, 3.9vw, 18px);
  }
}

/* ===== Broadcast notice ===== */
.broadcast{
  position: relative;
  margin: 20px auto 26px;
  padding: 12px 0;
  color: #cfe0f7;                          /* под тон хлебных крошек */
}
.broadcast::before,
.broadcast::after{
  content:"";
  display:block;
  height:1px;
  background: rgba(255,255,255,.18);       /* тонкая линия */
}
.broadcast::before{ margin-bottom: 10px; }
.broadcast::after{  margin-top: 10px;  }

.broadcast__title{
  margin: 0 0 4px 0;
  font-style: italic;
  font-weight: 700;
  color: #d9e7fa;
  font-size: clamp(14px, .9rem + .15vw, 16px);
}
.broadcast__text{
  margin: 0;
  font-size: clamp(14px, .9rem + .15vw, 16px);
  line-height: 1.5;
  color: #b9cbe2;
}

/* компактнее на телефонах */
@media (max-width: 768px){
  .broadcast{ padding: 10px 0; }
  .broadcast::before, .broadcast::after{ opacity:.9; }
}
