:root{
  --bg:#1e1e1f;
  --panel:#262729;
  --panel-2:#2d2f32;
  --text:#ffffff;
  --muted:rgba(255,255,255,.78);
  --line: rgba(255,255,255,.10);

  --dark:#1f2022;
  --dark2:#27292c;

  --yellow:#f1e32a;
  --yellow2:#d9cc1c;
  --pink:#df1976;
  --pink2:#c91467;

  --container: 1100px;
  --radius: 16px;
  --shadow: 0 14px 34px rgba(0,0,0,.22);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html,body{ overflow-x:hidden; }
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }

.cx3-container{
  width: min(var(--container), calc(100% - 32px));
  margin-inline:auto;
}

/* Header */
.cx3-header{
  background: linear-gradient(180deg, var(--dark2), var(--dark));
  color:#fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cx3-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 0;
}
.cx3-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}
.cx3-brand__logo{
  height: 32px;
  width:auto;
}
.cx3-header__actions{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cx3-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .12s ease, filter .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(0,0,0,.16);
}
.cx3-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.04);
}
.cx3-btn--register{
  background: linear-gradient(180deg, var(--yellow), var(--yellow2));
  color: #242424;
  border-color: rgba(0,0,0,.18);
}
.cx3-btn--login{
  background: linear-gradient(180deg, var(--pink), var(--pink2));
  color: #fff;
  border-color: rgba(0,0,0,.18);
}

/* Menu bar */
.cx3-menubar{
  background: #2a2c2f;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cx3-menu{
  list-style:none;
  display:flex;
  align-items:center;
  gap: 18px;
  padding: 10px 0;
  margin:0;
  overflow-x:auto;
  white-space: nowrap;
  scrollbar-width: thin;
}
.cx3-menu a{
  font-weight: 800;
  color: #fff;
}
.cx3-menu a:hover{ color: var(--yellow); }
.cx3-menu__accent a{
  color: #fff;
  font-weight: 900;
}
.cx3-menu__mirror a{
  color: var(--yellow);
  font-weight: 950;
}

/* Main */
.cx3-main{ padding: 18px 0 44px; }
.cx3-panel{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.cx3-h1{
  margin: 0 0 12px;
  font-weight: 950;
  font-size: clamp(22px, 3vw, 38px);
  color:#fff;
}
.cx3-cta{
  display:flex;
  width: fit-content;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--yellow), var(--yellow2));
  color: #242424;
  font-weight: 950;
  letter-spacing: .4px;
  border: 1px solid rgba(0, 0, 0, .10);
  transition: transform .12s ease, filter .12s ease;
  margin: 0 auto;
  text-align:center;
}
.cx3-cta:hover{ transform: translateY(-1px); filter: brightness(1.06); }

/* WYSIWYG */
.cx3-wysiwyg{ color:var(--muted); overflow-x:auto; margin-top: 12px; }
.cx3-wysiwyg p{ margin: .7em 0; }
.cx3-wysiwyg :where(h2,h3,h4){ margin: 1em 0 .4em; color:#fff; }
.cx3-wysiwyg ul, .cx3-wysiwyg ol{ margin: .6em 0 .6em 1.2em; }
.cx3-wysiwyg strong{ color:#fff; }
.cx3-wysiwyg a{ color: var(--yellow); }
.cx3-wysiwyg table{
  width:100%;
  border-collapse: collapse;
  margin: 12px 0;
  border-radius: 12px;
  overflow:hidden;
}
.cx3-wysiwyg th, .cx3-wysiwyg td{
  padding: 10px;
  border: 1px solid rgba(255,255,255,.12);
}
.cx3-wysiwyg th{ background: rgba(255,255,255,.05); color:#fff; }

/* Footer */
.cx3-footer{
  margin-top: 22px;
  background: #232427;
  color: rgba(255,255,255,.86);
  border-top: 1px solid rgba(255,255,255,.06);
}
.cx3-footer__inner{
  padding: 18px 0 22px;
  display:grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 16px;
  align-items:center;
}
@media (max-width: 900px){
  .cx3-footer__inner{ grid-template-columns: 1fr; }
}
.cx3-footer__logo img{
  max-height: 40px;
  width: auto;
}
.cx3-footer__nav{
  display:grid;
  gap: 8px;
  margin-top: 10px;
}
.cx3-footer__nav a{
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: 14px;
}
.cx3-footer__nav a:hover{
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.25);
}
.cx3-footer__badges{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
  opacity: .95;
}
.cx3-footer__badges img{
  height: 24px;
  width:auto;
  object-fit: contain;
  opacity: .92;
}
.cx3-footer__legal{
  color: rgba(255,255,255,.74);
  font-size: 13px;
  line-height: 1.4;
}
.cx3-footer__copy{
  margin-top: 6px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

@media (max-width: 640px){
  .cx3-header__inner{
    gap: 10px;
  }
  .cx3-brand__logo{
    height: 28px;
  }
  .cx3-header__actions{
    gap: 8px;
  }
  .cx3-btn{
    min-height: 38px;
    padding: 9px 14px;
    font-size: 14px;
  }
  .cx3-menu{
    gap: 14px;
    padding: 9px 0;
  }
  .cx3-panel{
    padding: 16px;
  }
}