:root {
  --bg: #07090f;
  --panel: rgba(16, 20, 31, 0.86);
  --panel-strong: #10141f;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f8fb;
  --muted: #a8b0c3;
  --pink: #ff2f86;
  --orange: #ff8a3d;
  --green: #35e2ad;
  --blue: #6aa8ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input {
  font: inherit;
}

.mainWrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(7, 9, 15, 0.92), rgba(10, 12, 20, 0.72)),
    url("images/st2.jpg") center / cover fixed;
}

.mainWrapper::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 76%);
}

.hdr,
.mainStuff,
.secBoxes,
.ftr {
  position: relative;
  z-index: 1;
}

.hdr {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brandMark {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  background: linear-gradient(145deg, #ff2f86 4%, #ff5d54 52%, #ff9f3d 100%);
  box-shadow: 0 14px 36px rgba(255, 47, 134, 0.32);
}

.brandMark::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 3px solid #fff;
  border-radius: 9px;
}

.brandMark::after {
  content: "";
  position: absolute;
  top: 17px;
  right: 17px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}

.brandMark span {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.brandName {
  color: var(--text);
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
}

.brandName span {
  color: var(--pink);
}

.bigH {
  font-size: clamp(30px, 5vw, 76px);
  line-height: 0.95;
  max-width: 780px;
  font-weight: 900;
  letter-spacing: 0;
}

.smallH {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.mainStuff {
  height: auto !important;
  width: min(620px, calc(100% - 40px));
  margin: 70px auto 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20, 24, 36, 0.92), rgba(10, 13, 22, 0.9));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.tHolder,
.sStep,
.tStep {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.sStep,
.tStep {
  display: none;
  opacity: 0;
}

.creds,
.selectP {
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.creds::after {
  content: "Start with a public username";
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.inp {
  position: relative;
  display: grid;
  gap: 16px;
  width: 100%;
  margin-top: 22px;
}

.inp i {
  position: absolute;
  top: 19px;
  left: 18px;
  z-index: 1;
  color: var(--pink);
  font-size: 20px;
}

#username {
  width: 100%;
  height: 60px;
  padding: 0 18px 0 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 255, 255, 0.95);
  color: #10141f;
  font-size: 20px;
  font-weight: 700;
}

#username:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 47, 134, 0.18);
}

.bbt,
.chatBtn {
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 18px 34px rgba(255, 47, 134, 0.26);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.bbt:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.bbt span {
  display: none;
}

.ldrM {
  margin-bottom: 24px;
}

.ldrM::after {
  content: "Checking account availability";
}

.statusHolder {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(53, 226, 173, 0.26);
  border-radius: 8px;
  background: rgba(53, 226, 173, 0.08);
  margin-bottom: 24px;
}

.userAvatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.userProfileText {
  min-width: 0;
}

.cncted {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.din {
  color: var(--green);
  font-weight: 900;
  word-break: break-word;
}

.userStats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.userStats div {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.userStats span {
  display: block;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
}

.userStats small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.userHint {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.privateWarning {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 138, 61, 0.45);
  border-radius: 8px;
  background: rgba(255, 138, 61, 0.12);
  color: #ffb27d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.selectP {
  margin-bottom: 8px;
}

.offerStatus {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.packages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ppp {
  min-height: 118px;
  padding: 14px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  align-items: center;
  gap: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ppp:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 47, 134, 0.7);
  background: rgba(255, 47, 134, 0.08);
}

.offerImage {
  grid-row: 1 / 4;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.offerName {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.offerCopy {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.offerReward {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.secBoxes {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 20px;
}

#cmmnts,
.chat {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 20, 31, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

#cmmnts {
  width: auto;
  margin: 0;
  padding: 8px;
}

.comments {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

#comment2,
#comment3,
#comment4,
#comment5,
#comment6 {
  display: grid;
}

.comments:first-child {
  display: block;
  padding: 18px 16px;
}

.comments:first-child span {
  color: var(--text) !important;
  font-weight: 900;
}

.comments:last-child {
  border-bottom: 0;
}

.profile {
  float: none;
  width: 54px;
  margin: 0;
}

.profile img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.16);
}

.comment-content {
  float: none;
  width: auto;
}

.comment-content p {
  color: var(--muted);
  line-height: 1.5;
}

.name {
  margin-bottom: 4px;
  color: var(--text);
  font-weight: 900;
}

.clr {
  display: none;
}

.comment-status {
  grid-column: 2;
  color: var(--muted);
  font-size: 11px;
}

.comment-status span {
  color: var(--green);
}

.chat {
  min-width: 0;
  max-width: none;
  height: 560px;
  min-height: 0;
  margin: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-self: start;
}

.h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
}

.chatHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.chatHeader .h2 {
  margin-bottom: 0;
}

.onlineBadge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(53, 226, 173, 0.28);
  border-radius: 999px;
  background: rgba(53, 226, 173, 0.08);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.onlineDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(53, 226, 173, 0.9);
}

.innerchat {
  flex: 1;
  width: 100%;
  min-height: 0;
  padding: 14px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  line-height: 1.45;
}

.innerchat p {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 13px;
  word-break: break-word;
}

.redchat {
  color: var(--green);
  font-weight: 800;
}

.innerchatFunctions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 12px;
}

.inputDisabled {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  outline: 0;
}

.inputDisabled:focus {
  border-color: rgba(53, 226, 173, 0.65);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(53, 226, 173, 0.12);
}

.chatBtn {
  min-width: 84px;
  min-height: 48px;
  cursor: pointer;
  box-shadow: none;
  opacity: 1;
}

.chatBtn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.myChat {
  color: var(--text);
}

.myChat .redchat {
  color: var(--blue);
}

.supportLauncher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.46);
  font-weight: 900;
}

.supportLauncher i {
  font-size: 19px;
}

.supportLauncherDot {
  width: 8px;
  height: 8px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(53, 226, 173, 0.2);
}

.supportPanel {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 21;
  width: min(370px, calc(100vw - 32px));
  height: min(520px, calc(100vh - 120px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: #10141f;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
}

.supportPanel[hidden] {
  display: none;
}

.supportHeader {
  min-height: 72px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.supportHeader strong,
.supportHeader span {
  display: block;
}

.supportHeader strong {
  font-size: 16px;
}

.supportHeader span {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 700;
}

.supportHeader span i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--green);
}

.supportClose {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.16);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.supportMessages {
  height: calc(100% - 142px);
  padding: 16px;
  overflow-y: auto;
  background: #0b0e16;
}

.supportMessage {
  max-width: 82%;
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #202638;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.supportMessage.mine {
  margin-left: auto;
  background: linear-gradient(135deg, #df276f, #e85f45);
}

.supportMessage small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.supportStatus {
  position: absolute;
  right: 14px;
  bottom: 59px;
  left: 14px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.supportForm {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 70px;
  padding: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 8px;
  border-top: 1px solid var(--line);
  background: #10141f;
}

.supportInput {
  min-width: 0;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.supportInput:focus {
  border-color: var(--pink);
}

.supportSend {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  background: var(--pink);
  color: #fff;
  font-size: 16px;
}

.supportSend:disabled,
.supportInput:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.ftr {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 34px;
}

.detailss {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.alertingg {
  animation: shake 0.28s linear;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(7px); }
  50% { transform: translateX(-7px); }
  75% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div::after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--green);
}

.lds-roller div:nth-child(1) { animation-delay: -0.036s; }
.lds-roller div:nth-child(1)::after { top: 63px; left: 63px; }
.lds-roller div:nth-child(2) { animation-delay: -0.072s; }
.lds-roller div:nth-child(2)::after { top: 68px; left: 56px; }
.lds-roller div:nth-child(3) { animation-delay: -0.108s; }
.lds-roller div:nth-child(3)::after { top: 71px; left: 48px; }
.lds-roller div:nth-child(4) { animation-delay: -0.144s; }
.lds-roller div:nth-child(4)::after { top: 72px; left: 40px; }
.lds-roller div:nth-child(5) { animation-delay: -0.18s; }
.lds-roller div:nth-child(5)::after { top: 71px; left: 32px; }
.lds-roller div:nth-child(6) { animation-delay: -0.216s; }
.lds-roller div:nth-child(6)::after { top: 68px; left: 24px; }
.lds-roller div:nth-child(7) { animation-delay: -0.252s; }
.lds-roller div:nth-child(7)::after { top: 63px; left: 17px; }
.lds-roller div:nth-child(8) { animation-delay: -0.288s; }
.lds-roller div:nth-child(8)::after { top: 56px; left: 12px; }

@keyframes lds-roller {
  100% { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .secBoxes {
    grid-template-columns: 1fr;
  }

  .chat {
    height: 480px;
  }
}

@media (max-width: 560px) {
  .mainWrapper::before {
    background-size: 48px 48px;
  }

  .hdr,
  .mainStuff,
  .secBoxes,
  .ftr {
    width: calc(100% - 48px);
  }

  .hdr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 24px;
    gap: 12px;
  }

  .bigH,
  .smallH,
  .creds,
  .selectP,
  .stsss,
  .detailss {
    overflow-wrap: anywhere;
  }

  .bigH {
    width: 100%;
    font-size: 29px;
    line-height: 1.02;
  }

  .smallH {
    width: auto;
    max-width: 100%;
    justify-self: auto;
  }

  .statusHolder {
    grid-template-columns: 64px 1fr;
  }

  .userAvatar {
    width: 64px;
    height: 64px;
  }

  .brandMark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 14px;
  }

  .brandMark::before {
    inset: 10px;
  }

  .brandMark::after {
    top: 15px;
    right: 15px;
  }

  .brandMark span {
    top: 17px;
    left: 17px;
  }

  .brandName {
    font-size: 24px;
  }

  .mainStuff {
    margin-top: 34px;
    padding: 16px;
  }

  #username {
    height: 58px;
    font-size: 19px;
  }

  .packages {
    grid-template-columns: 1fr;
  }

  .ppp {
    min-height: 112px;
  }

  .comments {
    grid-template-columns: 44px 1fr;
    padding: 14px 10px;
    overflow: hidden;
  }

  .profile,
  .profile img {
    width: 44px;
    height: 44px;
  }

  .comment-status {
    grid-column: 1 / 3;
  }

  .comment-content,
  .comment-status {
    min-width: 0;
  }

  .innerchatFunctions {
    grid-template-columns: 1fr;
  }

  .chatHeader {
    align-items: flex-start;
    flex-direction: column;
  }

  .chatBtn {
    width: 100%;
  }

  .supportLauncher {
    right: 16px;
    bottom: 16px;
  }

  .supportPanel {
    right: 16px;
    bottom: 78px;
    height: min(520px, calc(100vh - 100px));
  }
}
