/* Global */
/* ------------------------------------ */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/static/Manrope-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/static/Manrope-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/static/Manrope-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/static/Manrope-Light.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/static/Manrope-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/static/Manrope-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/static/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0em;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: #FFFFFF;
  background: #111;
}

.Button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  background: #1d232b;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0em;
}

.Button--primary {
  background: rgba(41, 226, 37, 0.2);
  box-shadow: 0 6px 18px rgba(44, 169, 255, 0.4);
}

.Button--secondary {
  background: #626262;
  padding: 10px 25px 10px 25px;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  width: 128px;
  display: flex;
  align-items: center;
  font-weight: 300;
  transition: 0.2s;
}

.Button--secondary:hover {
  color: #FFFFFF;
  background: #01A7F6;
}

.Button--vk {
  background: #0077ff;
  min-width: 140px;
}

.Button_icon {
  width: 20px;
  height: 20px;
  background-size: 15px 15px;
  float: left;
  text-align: center;
  margin-top: 10px;
}

.Button--vk_icon {
  background: url(../images/home_vk.svg) no-repeat;
}

.Button--ds {
  background: #8891f2;
  min-width: 140px;
}

.Button--ds_icon {
  margin-top: 7px;
  background: url(../images/discord.svg) no-repeat;
}

.Button--tg_icon {
  background: url(../images/tg_home.svg) no-repeat;
}

.Button--tg {
  background: #2ba6df;
  min-width: 140px;
}

.AppLayout {
  display: grid;
  grid-template-columns: 306px 1fr;
  gap: 24px;
  max-width: 1360px;
  padding: 24px;
  margin: 0 auto;
}

.AppLayout__Bg {
  position: absolute;
  width: 100%;
  /*max-width: 1312px;*/
  height: 100%;
  max-height: 630px;
  background-position: center;
  background: url(../images/bg.webp) no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
}

.AppLayout__Bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: linear-gradient(0deg, rgb(17, 17, 17) 0%, rgba(17, 17, 17, 0.7) 100%);
  z-index: 0;
}

.MainContent {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Blocks */
/* ------------------------------------ */
.Header {
  height: 80px;
  top: 0;
  z-index: 10;
  background: radial-gradient(100% 1263.77% at 100% 100%, rgba(230, 247, 255, 0.18) 0%, rgba(247, 249, 251, 0.05) 100%), #000000;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
}

.Header__Inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.Header__Logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  width: 250px;
}

.Header__Logo img {
  height: 42px;
}

.Header__LogoMark {
  background: linear-gradient(135deg, #39c8ff, #2f7bff);
  color: #08141b;
  font-weight: 800;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.Header__Badge {
  margin-left: 8px;
  background: #1e2a36;
  color: #bfe8ff;
  font-weight: 700;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 12px;
}

.Header__Right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.Header__Bell {
  float: left;
  height: 52px;
  width: 52px;
  cursor: pointer;
}

.Header__Bell:hover {
  background: rgba(255, 255, 255, 0.1019607843);
}

.Header__BellContent {
  padding-left: 11px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.Header__BellImg {
  width: 30px;
  height: 29px;
  background: url(../images/Vector.svg) no-repeat;
  background-size: 30px 30px;
}

.Header__BellCount {
  width: 18px;
  height: 18px;
  background: #E22525;
  border: 1px solid #E6F7FF;
  position: absolute;
  border-radius: 100px;
  margin-top: -35px;
  margin-left: 10px;
  display: none;
}

.Header__BellCount-active {
  display: block;
}

.Header__TopUp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  height: 30px;
  padding: 0 16px;
  background: rgba(41, 226, 37, 0.2);
  color: #fff;
  border: 0;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.Header__User {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 8px;
  align-items: center;
  color: #a6b0bb;
}

.Header__UserInfo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: end;
  color: aliceblue;
  margin-right: 12px;
}

.Header__UserName {
  font-size: 16px;
  font-weight: 700;
  line-height: 27px;
}

.Header__AvatarImg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.Header__Avatar {
  width: 40px;
  height: 40px;
  background: #253041;
  border-radius: 50%;
}

.Header__UserArrow {
  vertical-align: middle;
  display: inline-block;
  width: 8px;
  height: 5px;
  background: url(../images/berd.svg);
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Sidebar {
  background: #1B1B1B;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  padding: 20px;
  top: 76px;
  align-self: start;
  height: 100%;
  z-index: 1;
}

.Sidebar__SectionTitle {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  margin: 8px 8px 8px;
}

.Sidebar__SectionTitle--muted {
  color: #a6b0bb;
  margin-top: 18px;
}

.Sidebar__Nav {
  display: grid;
  gap: 0;
  padding: 6px;
}

.Sidebar__Link {
  display: block;
  padding: 7px 0;
  color: #a6b0bb;
  text-decoration: none;
  border-radius: 10px;
  color: #666666;
}

.Sidebar__Link:hover {
  color: #01A7F6;
  transition: 0.1s;
}

.Sidebar__Link.is-active {
  color: #01A7F6;
  transition: 0.1s;
}

.Sidebar__LinkPtext {
  font-family: Manrope;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  cursor: pointer;
  float: left;
  padding-left: 10px;
}

.Sidebar__LinkIcon {
  width: 16px;
  height: 16px;
  float: left;
  margin-top: 3px;
}

.Sidebar__LinkIconP1 {
  background: url(../images/p1.svg) no-repeat;
}

.Sidebar__LinkIconP2 {
  background: url(../images/p2.svg) no-repeat;
}

.Sidebar__LinkIconP3 {
  background: url(../images/p3.svg) no-repeat;
}

.Sidebar__LinkIconP4 {
  background: url(../images/p4.svg) no-repeat;
}

.Sidebar__LinkIconP5 {
  background: url(../images/p5.svg) no-repeat;
}

.Sidebar__LinkIconP6 {
  background: url(../images/p6.svg) no-repeat;
}

.Sidebar__LinkIconP7 {
  background: url(../images/p7.svg) no-repeat;
}

.Sidebar__LinkIconP8 {
  background: url(../images/p8.svg) no-repeat;
}

.Sidebar__LinkIconP9 {
  background: url(../images/p9.svg) no-repeat;
}

.Sidebar__LinkIconP10 {
  background: url(../images/p10.svg) no-repeat;
}

.HeroSocial {
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  height: 150px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  border: 1px dashed rgba(44, 169, 255, 0.9);
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-right: 420px;
}

.HeroSocial__Left {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.HeroSocial__Title {
  font-size: 20px;
  margin: 0 0 8px;
  letter-spacing: 0.2px;
  line-height: 1.25;
}

.HeroSocial__Actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.HeroSocial__Actions .Button {
  height: 44px;
  padding: 0 20px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
}

.HeroSocial__Right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
}

.DashboardCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.DashboardCards__Item {
  background: #1B1B1B;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  background: #262A2D;
  position: relative;
  padding-top: 40px;
  padding-left: 30px;
  overflow: hidden;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 150px;
}

.DashboardCards__Title {
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.DashboardCards__Bg {
  position: absolute;
  right: 0;
  bottom: -5px;
  filter: blur(0.2px);
}

.DashboardCards__Bg--coin {
  border-radius: 0px 0px 10px 0px;
}

.DashboardCards__Bg--bell {
  border-radius: 0px 0px 10px 0px;
}

.DashboardCards__Bg--circle {
  border-radius: 0px 0px 10px 0px;
}

.ServiceGrid {
  display: grid;
  gap: 14px;
}

.ServiceGrid__Heading {
  font-size: 26px;
  margin: 0 0 6px;
}

.ServiceGrid__Items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ServiceGrid__Card {
  background: #1B1B1B;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  padding: 20px;
  position: relative;
  overflow: hidden;
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.ServiceGrid__Title {
  font-weight: 700;
  font-size: 18px;
}

.ServiceGrid__Subtitle {
  color: #a6b0bb;
  margin-bottom: 12px;
}

.ServiceGrid__Decor {
  position: absolute;
  right: -10px;
  bottom: -10px;
  opacity: 0.6;
}

.ServiceGrid__Decor--blocks {
  width: 140px;
  height: 140px;
  background: conic-gradient(from 45deg, #2a3744 0 25%, #344556 0 50%, #22313f 0 75%, #2e3c4a 0 100%);
  clip-path: polygon(0 40%, 40% 40%, 40% 0, 60% 0, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0 60%);
  border-radius: 8px;
}

.ServiceGrid__Decor--cube {
  width: 140px;
  height: 140px;
  background: radial-gradient(80px 80px at 50% 50%, #2b3a48, #1c2630);
  border-radius: 18px;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.03);
}

.ServiceGrid__Decor--circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 55% 45%, #344353, #1b242d 60%);
}

.UserDropdown {
  background: #1B1B1B;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  position: absolute;
  right: 24px;
  top: 64px;
  width: 280px;
  background: #0f1318;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px;
  display: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.UserDropdown.is-open {
  display: block;
}

.UserDropdown__Trigger {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  margin: -17px -10px -16px -20px;
  padding: 17px 10px 16px 50px;
}

.UserDropdown__Trigger:hover {
  background: rgba(255, 255, 255, 0.1019607843);
}

.UserDropdown__Item,
.UserDropdown__Row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  color: #FFFFFF;
  background: transparent;
  border: 0;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.UserDropdown__Item:hover,
.UserDropdown__Row:hover {
  background: #1d232b;
}

.UserDropdown__Item--danger {
  color: #ff6b6b;
}

.UserDropdown__Label {
  color: #FFFFFF;
}

.UserDropdown__Lang {
  color: #FFFFFF;
  opacity: 0.9;
}

.Toggle {
  position: relative;
  width: 42px;
  height: 22px;
  background: #22313f;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  padding: 2px;
}

.Toggle i {
  display: block;
  width: 18px;
  height: 18px;
  background: #93a6b8;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.Toggle.is-on {
  background: rgba(41, 226, 37, 0.2);
}

.Toggle.is-on i {
  transform: translateX(20px);
  background: #06121a;
}

.Header__User {
  position: relative;
}

.FeatureTiles__Head {
  padding: 0;
  margin: 0;
  display: block;
  padding-top: 6px;
  padding-left: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 34px;
}

.FeatureTiles {
  display: grid;
  gap: 20px;
}

.FeatureTiles__Row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.FeatureTiles__Card {
  background: #1B1B1B;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  padding: 20px 20px 72px;
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  align-items: start;
  gap: 8px 0;
}

.FeatureTiles__Text {
  display: grid;
  gap: 8px;
  align-content: start;
  grid-column: span 2;
}

.FeatureTiles__Title {
  font-size: 18px;
  font-weight: 700;
}

.FeatureTiles__Desc {
  color: #a6b0bb;
  font-size: 13px;
}

.FeatureTiles__Action {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background-color: rgb(33, 33, 33, var(--tw-bg-opacity, 1));
  color: #FFFFFF;
  text-decoration: none;
  transition: 0.2s;
}

.FeatureTiles__Action:hover {
  background-color: rgb(54, 54, 54, var(--tw-bg-opacity, 1));
}

.FeatureTiles__Arrow {
  opacity: 0.9;
}

.FeatureTiles__Art {
  position: absolute;
  left: 20px;
  bottom: -90px;
  width: 320px;
  height: 200px;
  opacity: 0.95;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  pointer-events: none;
}

.FeatureTiles__Art--hosting {
  background-image: url("../images/cloud.png");
}

.FeatureTiles__Art--ddos {
  background-image: url("../images/01J06S8DM4HY8AAZN47KG5NRV5.png");
}

.FeatureTiles__Art--cloud {
  background-image: url("../images/01JRBHY5NVXFF7TYA04JX4YW0P.svg");
}

.FeatureTiles__Art--game {
  background-image: url("../images/rust.png");
} /*# sourceMappingURL=main.css.map */