@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dongle&display=swap");
.rainbow-text {
  --deg: 135deg;
  --c1: #1F69FF;
  --c2: #9146FF;
  --c3: #ffc107;
  background: linear-gradient(var(--deg), var(--c1), var(--c2), var(--c3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300% 100%;
  animation: twitch-rainbow 6s ease-in-out infinite;
}

@keyframes twitch-rainbow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.rainbow--bar {
  --deg: 90deg;
  --c1: #ffc107;
  --c2: #1F69FF;
  --c3: #9146FF;
}

.icon-upper {
  display: inline-block;
  line-height: 1;
  transform: translate(0.75rem, -1rem);
}

.gradient {
  --font: Dongle, sans-serif;
  --f-s: 1.75rem;
  --f-w: 300;
  --mt: 0.25rem;
  --text-t: uppercase;
  --ls: 1.5px;
  --accent: #9146FF;
  --accent-dark: rgb(94.5405405405, 0, 233.2);
  --fc-1: #EFEFF1;
  --fc-2: rgb(163.1945945946, 100.6, 255);
  --h: 3.5rem;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}
.gradient:hover {
  color: var(--accent-light);
}

.grad--secondary {
  --accent: #1F69FF;
  --accent-dark: rgb(0, 57.4160714286, 173.8);
  --fc-2: #1F69FF;
}

.grad--warning {
  --font: Lexend Deca, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --f-s: 1.15rem;
  --f-w: 600;
  --mt: 0;
  --text-t: none;
  --ls: 0.5px;
  --accent: #ffc107;
  --accent-dark: rgb(180.4, 135.3, 0);
  --fc-1: #0E0E10;
  --fc-2: #ffc107;
  --h: 3rem;
}

.shine {
  --c: #ffc107;
  background-color: var(--c);
  position: relative;
  overflow: hidden;
}

.shine::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 100%);
}

.shine:hover::before {
  background-image: none;
}

@media (max-width: 575.98px) {
  #navbar .navbar-collapse {
    background-color: rgb(9.24, 9.24, 10.56);
    border: 1px solid rgba(173, 173, 184, 0.15);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
}
.navbar {
  padding: 0.5rem 1.25rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
  will-change: opacity, transform;
}

.navbar.is-hidden {
  pointer-events: none;
}

.navbar-brand {
  position: relative;
  display: inline-block;
  font-family: "Dongle", sans-serif;
  line-height: 2rem;
  font-size: 2.25rem;
  text-transform: lowercase;
  background: linear-gradient(125deg, rgb(90.4054054054, 0, 223) 0%, rgb(205.6486486486, 172, 255) 30%, rgb(206.36, 206.36, 212.44) 45%, rgb(206.36, 206.36, 212.44) 55%, rgb(255, 218.5, 109) 70%, rgb(200.8, 150.6, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.nav-item {
  font-family: "Lexend Deca", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #EFEFF1;
  text-transform: lowercase;
  font-size: 1rem;
  font-weight: 600;
  line-height: 2rem;
  margin: 0 0.75rem;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  color: #EFEFF1;
  background-image: linear-gradient(45deg, rgb(138.9351351351, 59.8, 255) 0%, rgb(181.3891891892, 131.2, 255) 40%, #EFEFF1 60%);
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.45s ease;
}

.navbar-nav .nav-link:hover {
  background-position: 0% 0;
}

.nav-item-acc {
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Dongle", sans-serif;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem;
  gap: 0.25rem;
  white-space: nowrap;
}
.nav-item-acc i {
  color: #9146FF;
  padding-top: 0.75rem;
}
.nav-item-acc span {
  color: #ADADB8;
  font-size: 1.5rem;
  padding-top: 0.35rem;
}
.nav-item-acc:hover {
  text-decoration: none;
}

.nav-item-acc.dropdown-toggle::after {
  border-top-color: #9146FF;
  transition: transform 0.25s ease;
}

.nav-item-acc.dropdown-toggle.show::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  min-width: unset;
  transition: all 0.2s ease;
  padding: 0.5rem 1.5rem;
}
.dropdown-menu .dropdown-header {
  font-family: "Lexend Deca", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  color: rgb(241.6, 181.2, 0);
}
.dropdown-menu .dropdown-header i {
  color: #ffc107;
}
.dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  line-height: 1;
  margin: 0 -1.5rem;
  padding: 0.5rem 1.5rem;
  width: calc(100% + 3rem);
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
}

.link {
  color: #9146FF;
  text-decoration: none;
}
.link:hover {
  color: #EFEFF1;
  text-decoration: none;
}

.button, .button:hover {
  cursor: pointer;
  background-clip: padding-box, border-box;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-right: 1.5rem;
  text-decoration: none;
}

.btn-begin {
  height: var(--h);
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-begin:hover {
  background: transparent;
}

.btn-begin::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 0.15rem;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: background 0.4s ease-in;
}

.btn-begin:hover::before {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.btn-text {
  font-family: var(--font);
  color: var(--fc-1);
  font-size: var(--f-s);
  font-weight: var(--f-w);
  letter-spacing: var(--ls);
  position: relative;
  margin-top: var(--mt);
  text-transform: var(--text-t);
  transition: transform 0.4s ease;
}

.btn-begin:hover .btn-text {
  color: var(--fc-2);
  transform: translateX(-1.25rem);
}

.begin-icon-right {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--fc-1);
  transform: translateY(-50%) translateX(8px);
  transition: transform 0.4s ease, opacity 0.4s ease, color 0.4s ease;
}

.btn-begin:hover .begin-icon-right {
  color: var(--fc-2);
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.btn-default {
  color: #EFEFF1;
  font-family: "Inter", system-ui, sans-serif;
  border-radius: 0.5rem;
  border: 1.25px solid #EFEFF1;
  padding: 0.4rem 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-default:hover {
  background-color: #EFEFF1;
  color: #0E0E10;
}

.card {
  background-color: rgb(25.9, 25.9, 29.6);
  border: 1px solid rgb(2.1, 2.1, 2.4);
  border-radius: 8px;
  padding: 1rem;
}

.pricing-card {
  padding: 2.5rem 2rem 2rem 2rem;
}

.hero-section {
  background: linear-gradient(135deg, rgba(145, 70, 255, 0.1) 0%, rgba(37, 140, 251, 0.1) 100%);
  border-radius: 1rem;
  margin: 0 -1rem;
  padding: 80px 15px !important;
}

.star-orbit {
  position: relative;
}

.star-orbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.7) 75%, rgba(255, 255, 255, 0.5) 100%);
  filter: blur(0.4px);
  box-shadow: 0 0 8px rgb(255, 255, 255), 0 0 16px rgba(255, 255, 255, 0.6);
  offset-path: rect(0% 100% 100% 0% round 1rem);
  offset-distance: 0%;
  animation: border-orbit 2.5s linear forwards;
}

@keyframes border-orbit {
  0% {
    offset-distance: 0%;
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}
.layout-editor-wrapper {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .layout-editor-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}

.layout-palette {
  flex: 0 0 220px;
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 0.5rem;
  padding: 1rem;
  position: sticky;
  top: 70px;
}
@media (max-width: 767px) {
  .layout-palette {
    position: static;
    width: 100%;
  }
}

.palette-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 0.4rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, opacity 0.15s;
  user-select: none;
}
.palette-item:hover {
  background: var(--bs-secondary-bg);
  border-color: var(--bs-primary);
}
.palette-item .palette-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.palette-item .palette-label {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
}
.palette-item .palette-desc {
  font-size: 0.72rem;
  color: var(--bs-secondary-color);
  line-height: 1.2;
}

.palette-item--active {
  opacity: 0.4;
  pointer-events: none;
  border-style: dashed;
}

.layout-grid-area {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.widget-card {
  position: relative;
  height: 100%;
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.widget-card-header {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.widget-card-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.widget-card-preview {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
}

.widget-preview-icon {
  font-size: 3rem;
}

.widget-remove-btn {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  background: var(--bs-danger);
  border: none;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: white;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 10;
}
.grid-stack-item:hover .widget-remove-btn {
  opacity: 1;
}
@media (hover: none) {
  .widget-remove-btn {
    opacity: 1;
  }
}

#layout-grid .grid-stack-item-content {
  overflow: hidden;
  border-radius: 0.5rem;
}

.details-grid .grid-stack-item-content {
  overflow: hidden;
  border-radius: 0.5rem;
}

.details-widget {
  border-radius: 0.5rem;
  overflow: hidden;
}

html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
html {
  position: relative;
  min-height: 100%;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.twitch-purple-background {
  background-color: #9146FF !important;
  border-color: #9146FF !important;
}

body {
  background-color: #0E0E10;
  color: #EFEFF1;
  font-family: "Inter", system-ui, sans-serif;
  margin-top: 100px;
  margin-bottom: 60px;
}
body h1, body h2, body h3, body h4, body h5 {
  font-family: "Lexend Deca", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

main {
  margin-top: 4rem;
}

.badge {
  border-radius: 12px;
  padding: 0.2rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.text-muted {
  color: #ADADB8 !important;
}

.text-success {
  color: #00C853 !important;
}

.text-danger {
  color: #FF3C3C !important;
}

/*# sourceMappingURL=main.css.map */
