section {
    position: relative;
}
main > section:first-child {
    padding-top: 95px;
}
.gradient-text {
    background: linear-gradient(135deg, #ff6b35, #ea0029);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.35 !important;
}
.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #fff5f5, #fee2e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(234, 0, 41, 0.15);
    border-color: #ea0029;
}
.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
}
.bg-dark-menu-bg {
    background-color: hsl(216deg 9% 10% / 65%);
}
.bg-dark-nav-bg {
    background-color: hsl(216deg 9% 10% / 15%);
}
#layout-header {
z-index: 99999;
position: relative;
}
main.bg-blur::before {
  content: '';
  position: fixed;
  inset: 0px;
  backdrop-filter: blur(8px);
  z-index: 40;
  pointer-events: none;
}
header {
        width: 100vw;
}
html {
    scrollbar-gutter: stable;
}