html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.hero-bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(191 64 191 / 5%);
  z-index: -2;
}

.bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 40% 40%, rgb(191 64 191 / 15%), transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(100px);
}

@media (prefers-reduced-motion: reduce) {
  .bg-glow {
    filter: blur(50px);
  }
}

.feat-wrapper {
  padding: 5rem 1rem;
  color: white;
}

.feat-container {
  max-width: 1400px;
  margin: 0 auto;
}

.feat-header {
  text-align: center;
  margin-bottom: 2rem;
}

.feat-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(147, 51, 234, 0.1);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 9999px;
  color: #c084fc;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
}

.center-title {
  width: 100% !important;
  text-align: center !important;
  font-size: 3.8rem !important;
  font-weight: 900 !important;
  margin: 0 auto 4rem auto !important;
  padding: 0 !important;
  display: block !important;

  background: linear-gradient(to right, rgb(191 64 191), rgb(0 0 0)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

@media (max-width: 768px) {
  .center-title {
    font-size: 2.8rem !important;
    margin-bottom: 3rem !important;
  }
}

@media (max-width: 480px) {
  .center-title {
    font-size: 2.4rem !important;
  }
}

.pln-main-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgb(191 64 191 / 12%);
  border: 1px solid rgb(191 64 191 / 35%);
  border-radius: 9999px;
  color: rgb(191 64 191);
  font-weight: 700;
  font-size: 1rem;
  backdrop-filter: blur(12px);
  margin-bottom: 2rem;
}

.pln-main-badge svg {
  width: 22px;
  height: 22px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.5;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(var(--cl-accent-rgb), 0.1);
  border: 1px solid rgba(var(--cl-accent-rgb), 0.3);
  border-radius: 9999px;
  color: var(--cl-accent);
  font-weight: 700;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-badge i {
  font-size: 0.9rem;
}

.global-title {
  font-size: 4rem;
  font-weight: 900;
  margin: 0 0 1rem;
  background: linear-gradient(to right, #ffffff, var(--cl-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .global-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

.feedback-slider-wrapper.second-row.fade-mask {
  padding-top: 20px;
}

a {
  text-decoration: none !important;
}

/* Altcha Premium Styling */
altcha-widget::part(container) {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  color: #fff !important;
}

altcha-widget::part(check) {
  background-color: var(--cl-accent) !important;
  border-color: var(--cl-accent) !important;
}

/* Fix: Hide 'Component not found' platform errors that might show up due to empty dashboard components */
.components {
  color: transparent !important;
  font-size: 0 !important;
}

.components>* {
  color: initial !important;
  font-size: initial !important;
}

/* Fix for feedback page title centering */
.rev-header-center h1.global-title {
  width: 100%;
}

/* Global section header spacing */
section.py-5-nav {
  padding-top: 140px !important;
}