/* Additional styling for scrolling features */
.hero-subtitle {
    margin-bottom: 140px !important; /* Increased by 100px to push content down */
}

/* Reposition the hero features section */
.hero-features {
    position: absolute;
    bottom: 45px !important; /* Position further down */
    z-index: 30;
    overflow: hidden;
    font-size: 14px;
    letter-spacing: -0.02em;
    width: 100%;
    left: 0;
    margin-top: 130px !important; /* Increased by 100px */
    transform: translateY(100px); /* Add 100px downward shift */
}

/* Enhanced scrolling wrapper */
.scrolling-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    padding: 12px 0 !important; /* More vertical padding */
    background-color: rgba(0, 0, 0, 0.2) !important; /* Slightly darker background */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important; /* Enhanced shadow */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-subtitle {
        margin-bottom: 150px !important; /* More space on mobile */
    }
    
    .hero-features {
        bottom: 10px !important;
        margin-top: 140px !important;
        transform: translateY(100px); /* Same 100px shift on mobile */
    }
} 