/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul, ol {
  list-style: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/*========== Colors ==========*/
/*========== Font and typography ==========*/
/*========== Font weight ==========*/
.text-primary {
  color: #b46bf5 !important;
}

.text-secondary {
  color: #3b82f6 !important;
}

.text-accent {
  color: #10b981 !important;
}

.text-light {
  color: #f8fafc !important;
}

.text-muted {
  color: rgba(248, 250, 252, 0.6) !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fs-sm {
  font-size: 0.875rem !important;
}

.fs-base {
  font-size: 1rem !important;
}

.fs-lg {
  font-size: 1.125rem !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rounded {
  border-radius: 0.5rem;
}

.rounded-lg {
  border-radius: 1rem;
}

.rounded-circle {
  border-radius: 50%;
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #f8fafc;
  background: linear-gradient(135deg, #0f172a, #080d17);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(180, 107, 245, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: #b46bf5;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #cc9bf8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #f8fafc;
}

h1 {
  font-size: 3rem;
}
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2.5rem;
}
@media (max-width: 992px) {
  h2 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  h3 {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  h4 {
    font-size: 1.25rem;
  }
}

h5 {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  h5 {
    font-size: 1.1rem;
  }
}

h6 {
  font-size: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-bold {
  font-weight: 700;
}

.text-medium {
  font-weight: 500;
}

.text-primary {
  color: #b46bf5;
}

.text-secondary {
  color: #3b82f6;
}

.text-light {
  color: #f8fafc;
}

.text-dark {
  color: #0f172a;
}

.text-gradient {
  background: linear-gradient(to right, #b46bf5, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-title {
  position: relative;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-family: "Orbitron", sans-serif;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #b46bf5, #3b82f6);
  border-radius: 2px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

[class*=col-] {
  padding: 0 15px;
}

.col-lg-3 {
  width: 25%;
}
@media (max-width: 992px) {
  .col-lg-3 {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .col-lg-3 {
    width: 100%;
  }
}

.col-lg-4 {
  width: 33.333333%;
}
@media (max-width: 992px) {
  .col-lg-4 {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .col-lg-4 {
    width: 100%;
  }
}

.col-lg-6 {
  width: 50%;
}
@media (max-width: 768px) {
  .col-lg-6 {
    width: 100%;
  }
}

.col-lg-8 {
  width: 66.666667%;
}
@media (max-width: 992px) {
  .col-lg-8 {
    width: 100%;
  }
}

.col-md-3 {
  width: 25%;
}
@media (max-width: 768px) {
  .col-md-3 {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .col-md-3 {
    width: 100%;
  }
}

.col-md-4 {
  width: 33.333333%;
}
@media (max-width: 768px) {
  .col-md-4 {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .col-md-4 {
    width: 100%;
  }
}

.col-md-6 {
  width: 50%;
}
@media (max-width: 576px) {
  .col-md-6 {
    width: 100%;
  }
}

.col-6 {
  width: 50%;
}

.g-4 {
  gap: 1.5rem;
}

.main-content {
  min-height: calc(100vh - 80px);
  padding-top: 80px;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ts-control > div {
  background: #b46bf5 !important;
  color: white !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
}
@keyframes slideInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(180, 107, 245, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(180, 107, 245, 0.8), 0 0 30px rgba(59, 130, 246, 0.5);
  }
  100% {
    box-shadow: 0 0 5px rgba(180, 107, 245, 0.5);
  }
}
.fade {
  transition: opacity 0.15s linear;
}

.animate.fadeIn {
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}
.animate.slideIn {
  animation-name: slideIn;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}
.animate.pulse {
  animation-name: pulse;
  animation-duration: 1s;
  animation-iteration-count: 3;
}
.animate.bounceIn {
  animation-name: bounceIn;
  animation-duration: 0.75s;
  animation-fill-mode: both;
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.fade-out {
  animation: fadeOut 0.5s ease forwards;
}

.admin-loaded .admin-sidebar {
  animation: slideInLeft 0.4s ease forwards;
}
.admin-loaded .admin-header {
  animation: slideInDown 0.4s ease forwards;
}
.admin-loaded .admin-main {
  animation: fadeIn 0.6s ease forwards;
}

.sidebar-animating {
  transition: transform 0.3s ease;
}

.dropdown-animating {
  animation: fadeIn 0.2s ease forwards;
}

.stat-animate {
  animation: countUp 0.6s ease forwards;
}

.alert.show {
  animation: slideInDown 0.5s;
}

.btn:active:not(:disabled) {
  animation: btnActive 0.15s;
}

@keyframes btnActive {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}
.dashboard-cards .card:hover {
  animation: cardHover 0.3s forwards;
}

@keyframes cardHover {
  0% {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  100% {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
}
@keyframes laserPulse {
  0% {
    box-shadow: 0 0 5px rgba(255, 45, 85, 0.5);
  }
  25% {
    box-shadow: 0 0 20px rgba(10, 132, 255, 0.8);
  }
  50% {
    box-shadow: 0 0 15px rgba(175, 82, 222, 0.7);
  }
  75% {
    box-shadow: 0 0 20px rgba(48, 209, 88, 0.8);
  }
  100% {
    box-shadow: 0 0 5px rgba(255, 45, 85, 0.5);
  }
}
@keyframes textGlow {
  0% {
    text-shadow: 0 0 5px rgba(248, 250, 252, 0.5);
  }
  50% {
    text-shadow: 0 0 15px rgba(248, 250, 252, 0.8), 0 0 20px rgba(180, 107, 245, 0.5);
  }
  100% {
    text-shadow: 0 0 5px rgba(248, 250, 252, 0.5);
  }
}
@keyframes borderGlow {
  0% {
    border-color: #b46bf5;
    box-shadow: 0 0 5px rgba(180, 107, 245, 0.5);
  }
  50% {
    border-color: #3b82f6;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
  }
  100% {
    border-color: #b46bf5;
    box-shadow: 0 0 5px rgba(180, 107, 245, 0.5);
  }
}
@keyframes scanline {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes glitch {
  0% {
    clip-path: inset(40% 0 61% 0);
    transform: skew(0.15deg);
  }
  20% {
    clip-path: inset(75% 0 23% 0);
    transform: skew(0.3deg);
  }
  40% {
    clip-path: inset(27% 0 58% 0);
    transform: skew(0.45deg);
  }
  60% {
    clip-path: inset(54% 0 10% 0);
    transform: skew(0.2deg);
  }
  80% {
    clip-path: inset(63% 0 36% 0);
    transform: skew(0.1deg);
  }
  100% {
    clip-path: inset(10% 0 83% 0);
    transform: skew(0.4deg);
  }
}
@keyframes radar {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.animate-fadeIn {
  animation: fadeIn 0.8s ease forwards;
}

.animate-slideUp {
  animation: slideInUp 0.8s ease forwards;
}

.animate-slideDown {
  animation: slideInDown 0.8s ease forwards;
}

.animate-pulse {
  animation: pulse 2s infinite ease-in-out;
}

.animate-glow {
  animation: glow 2s infinite ease-in-out;
}

.animate-laserPulse {
  animation: laserPulse 4s infinite;
}

.animate-delay-1 {
  animation-delay: 0.2s;
}

.animate-delay-2 {
  animation-delay: 0.4s;
}

.animate-delay-3 {
  animation-delay: 0.6s;
}

.animate-delay-4 {
  animation-delay: 0.8s;
}

.text-glitch {
  position: relative;
}
.text-glitch::before, .text-glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.text-glitch::before {
  left: 2px;
  text-shadow: -1px 0 #ff2d55;
  animation: glitch 0.3s infinite linear alternate-reverse;
}
.text-glitch::after {
  left: -2px;
  text-shadow: 1px 0 #0a84ff;
  animation: glitch 0.3s 0.15s infinite linear alternate-reverse;
}

.scanline {
  position: relative;
  overflow: hidden;
}
.scanline::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to bottom, rgba(248, 250, 252, 0) 0%, rgba(248, 250, 252, 0.3) 50%, rgba(248, 250, 252, 0) 100%);
  animation: scanline 3s linear infinite;
  z-index: 1;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoom {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}
.animated {
  animation-duration: 500ms;
  animation-fill-mode: both;
}
.animated.fadeIn {
  animation-name: fadeIn;
}
.animated.fadeUp {
  animation-name: fadeUp;
}
.animated.fadeLeft {
  animation-name: fadeLeft;
}
.animated.fadeRight {
  animation-name: fadeRight;
}
.animated.zoom {
  animation-name: zoom;
}
.animated.pulse {
  animation-name: pulse;
}
.animated.rotate {
  animation-name: rotate;
}
.animated.blink {
  animation-name: blink;
  animation-iteration-count: infinite;
}
.animated.bounce {
  animation-name: bounce;
}
.animated.shake {
  animation-name: shake;
}
.animated.duration-slow {
  animation-duration: 1000ms;
}
.animated.duration-fast {
  animation-duration: 300ms;
}
.animated.delay-100 {
  animation-delay: 100ms;
}
.animated.delay-200 {
  animation-delay: 200ms;
}
.animated.delay-300 {
  animation-delay: 300ms;
}
.animated.delay-500 {
  animation-delay: 500ms;
}
.animated.infinite {
  animation-iteration-count: infinite;
}

.hover-scale {
  transition: transform 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

.hover-glow {
  transition: box-shadow 0.3s ease;
}
.hover-glow:hover {
  box-shadow: 0 0 15px rgba(var(--admin-primary-rgb, 78, 115, 223), 0.5);
}

.hover-float {
  transition: transform 0.3s ease;
}
.hover-float:hover {
  transform: translateY(-5px);
}

.transition-all {
  transition: all 0.3s ease;
}

.transition-transform {
  transition: transform 0.3s ease;
}

.transition-opacity {
  transition: opacity 0.3s ease;
}

.loader-spin {
  animation: rotate 1s linear infinite;
}

.loader-pulse {
  animation: pulse 1.5s ease-in-out infinite;
}

.admin-page-enter {
  animation: fadeIn 0.5s ease-out;
}

.admin-sidebar-toggle {
  position: relative;
  overflow: hidden;
}
.admin-sidebar-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease-out;
}
.admin-sidebar-toggle:active::after {
  transform: translate(-50%, -50%) scale(2);
  opacity: 0;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pulse-animation {
  animation: pulse 1s infinite;
}

.rotate-animation {
  animation: rotate 2s linear infinite;
}

.bounce-animation {
  animation: bounce 2s ease infinite;
}

.maintenance {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a, #080d17);
  position: relative;
  overflow: hidden;
  padding: 2rem;
}
.maintenance::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(180, 107, 245, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: pulse 4s infinite ease-in-out;
}
.maintenance::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20% 30%, rgba(180, 107, 245, 0.3), transparent), radial-gradient(2px 2px at 60% 70%, rgba(59, 130, 246, 0.3), transparent), radial-gradient(1px 1px at 50% 50%, rgba(248, 250, 252, 0.2), transparent), radial-gradient(1px 1px at 80% 10%, rgba(180, 107, 245, 0.2), transparent), radial-gradient(2px 2px at 90% 60%, rgba(59, 130, 246, 0.2), transparent);
  background-size: 200% 200%;
  background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 50% 50%;
  animation: particleMove 20s infinite linear;
  pointer-events: none;
  z-index: 0;
}
.maintenance__wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  width: 100%;
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 4rem 3rem;
  border: 1px solid rgba(248, 250, 252, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 50px rgba(180, 107, 245, 0.1);
  animation: fadeIn 0.8s ease-out, slideInUp 0.8s ease-out;
}
@media (max-width: 768px) {
  .maintenance__wrapper {
    padding: 3rem 2rem;
  }
}
@media (max-width: 576px) {
  .maintenance__wrapper {
    padding: 2rem 1.5rem;
  }
}
.maintenance__wrapper::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #b46bf5, #3b82f6);
  opacity: 0.3;
  filter: blur(20px);
  z-index: -1;
  animation: borderGlow 3s infinite ease-in-out;
}
.maintenance__icon {
  font-size: 5rem;
  color: #b46bf5;
  margin-bottom: 2rem;
  display: inline-block;
  animation: rotate 3s linear infinite;
  filter: drop-shadow(0 0 20px rgba(180, 107, 245, 0.5));
}
@media (max-width: 768px) {
  .maintenance__icon {
    font-size: 4rem;
  }
}
@media (max-width: 576px) {
  .maintenance__icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
}
.maintenance__content {
  animation: fadeIn 1s ease-out 0.3s both;
}
.maintenance__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #f8fafc;
  font-family: "Orbitron", sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: textGlow 3s infinite ease-in-out;
}
@media (max-width: 768px) {
  .maintenance__title {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .maintenance__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
}
.maintenance__message {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.8);
  margin-bottom: 2.5rem;
  animation: fadeIn 1s ease-out 0.5s both;
}
@media (max-width: 768px) {
  .maintenance__message {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 576px) {
  .maintenance__message {
    font-size: 0.938rem;
    margin-bottom: 1.5rem;
  }
}
.maintenance__refresh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #b46bf5, #3b82f6);
  color: #f8fafc;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(180, 107, 245, 0.3);
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-out 0.7s both;
}
.maintenance__refresh-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(248, 250, 252, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.maintenance__refresh-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 107, 245, 0.5);
  box-shadow: 0 0 10px #b46bf5, 0 0 20px rgba(180, 107, 245, 0.5);
}
.maintenance__refresh-btn:hover::before {
  width: 300px;
  height: 300px;
}
.maintenance__refresh-btn:hover i {
  animation: rotate 1s linear infinite;
}
.maintenance__refresh-btn:active {
  transform: translateY(0);
}
.maintenance__refresh-btn i {
  transition: transform 0.3s ease;
}
@media (max-width: 576px) {
  .maintenance__refresh-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.938rem;
    width: 100%;
  }
}

@keyframes particleMove {
  0% {
    background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 50% 50%;
  }
  50% {
    background-position: 100% 100%, 0% 100%, 100% 0%, 0% 0%, 50% 50%;
  }
  100% {
    background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%, 50% 50%;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../assets/styles/utils/_reset.scss%22,%22../../assets/styles/utils/_variables.scss%22,%22../../assets/styles/utils/_fonts.scss%22,%22../../assets/styles/utils/_images.scss%22,%22../../assets/styles/utils/_base.scss%22,%22../../assets/styles/utils/_animations.scss%22,%22../../assets/styles/pages/_maintenance.scss%22,%22../../assets/styles/utils/_mixins.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%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CE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;;AAKJ;EACE;;;AAGF;EACE;;;AAIA;EACE;;AAGF;EACE;;AAGF;EACE;;;AAIJ;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAIF;EACE;;;AAIF;EACE;;;AAGF;EACE;IACE;;EAEF;IACE;;EAEF;IACE;;;AAKJ;EACE;;;AAGF;EACE;IACE;IACA;;EAEF;IACE;IACA;;;AAKJ;EACE;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;;EAEF;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE,cJvQM;IIwQN;;EAEF;IACE,cJ1QQ;II2QR;;EAEF;IACE,cJ/QM;IIgRN;;;AAIJ;EACE;IACE;;EAEF;IACE;;;AAIJ;EACE;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;EAEF;IACE;IACA;;;AAIJ;EACE;IACE;;EAEF;IACE;;;AAKJ;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAIF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAIF;EACE;;AAEA;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;;AAKJ;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EAIA;EACA;;;AASJ;EACE;IACE;IACA;;EAEF;IACE;IACA;;;AAKJ;EACE;IACE;IACA;;EAEF;IACE;IACA;;;AAKJ;EACE;IACE;IACA;;EAEF;IACE;IACA;;;AAKJ;EACE;IACE;IACA;;EAEF;IACE;IACA;;;AAKJ;EACE;IACE;;EAEF;IACE;;;AAKJ;EACE;IACE;;EAEF;IACE;;;AAKJ;EACE;IACE;;EAEF;IACE;;EAEF;IACE;;;AAKJ;EACE;IACE;;EAEF;IACE;;EAEF;IACE;;;AAKJ;EACE;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AAGF;EACE;;AAGF;EACE;;AAIF;EACE;;AAGF;EACE;;AAIF;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;AAIF;EACE;;;AAKJ;EACE;;AAEA;EACE;;;AAIJ;EACE;;AAEA;EACE;;;AAIJ;EACE;;AAEA;EACE;;;AAKJ;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AAIF;EACE;;;AAGF;EACE;;;AAIF;EACE;;;AAGF;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;;AAKJ;EACE;IACE;IACA;;EAEF;IACE;IACA;;;AAIJ;EACE;;;AAGF;EACE;;;AAGF;EACE;;;AC3qBF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACE;EACA;EACA;EACA;EACA;EACA;EACA,kBACE;EAEF;EACA;EACA;;AAIF;EACE;EACA;EACA;EACA;EACA;EACA;EACA,kBACE;EAKF;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA,eLae;EKZf;EACA;EACA,YACE;EAEF;;AAEA;EAhBF;IAiBI;;;AAGF;EApBF;IAqBI;;;AAIF;EACE;EACA;EACA;EACA,eLRa;EKSb,YLsEa;EKrEb;EACA;EACA;EACA;;AAIJ;EACE;EACA,OLxFM;EKyFN;EACA;EACA;EACA;;AAEA;EARF;IASI;;;AAGF;EAZF;IAaI;IACA;;;AAIJ;EACE;;AAGF;EACE;EACA,aLLe;EKMf;EACA,OL1GI;EK2GJ,aLXkB;EKYlB;EACA;;AAEA;EATF;IAUI;;;AAGF;EAbF;IAcI;IACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EAPF;IAQI;IACA;;;AAGF;EAZF;IAaI;IACA;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA,YLHe;EKIf,OLlJI;EKmJJ,aL1FmB;EK2FnB;EACA,eLvFY;EKwFZ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EC5JF;;AD+JE;EACE;EACA;;AAGF;EACE;;AAIJ;EACE;;AAGF;EACE;;AAGF;EAxDF;IAyDI;IACA;IACA;;;;AAMN;EACE;IACE;;EAEF;IACE;;EAEF;IACE%22,%22file%22:%22maintenance.output.css%22%7D */
