/* Mobile Hero Adjustments */
@media (max-width: 768px) {
    .hero-carousel-section {
        height: 70vh; /* Reduce height on mobile */
    }

    .glass-overlay-hero {
        left: 20px;
        right: 20px;
        bottom: 100px; /* Move up significantly to avoid buttons */
        max-width: 100%;
        padding-right: 0;
        text-align: center; /* Center text on mobile */
        align-items: center;
    }

    /* Vertical separator line - Remove or adjust for center alignment */
    .glass-overlay-hero::before {
        display: none; /* Remove side accent line on mobile for cleaner look */
    }

    .glass-overlay-hero h1.animate-text,
    .glass-overlay-hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        text-align: center;
    }

    .glass-overlay-hero p.animate-text,
    .glass-overlay-hero p {
        font-size: 0.95rem;
        max-width: 100%;
        text-align: center;
        margin-top: 5px;
    }

    /* Adjust Carousel Controls to be centered at bottom */
    .carousel-controls-wrapper {
        bottom: 20px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: auto;
        justify-content: center;
    }

    .carousel-controls-container {
        bottom: 20px;
    }
    
    .play-pause-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .glass-overlay-hero h1.animate-text,
    .glass-overlay-hero h1 {
        font-size: 1.5rem;
    }

    .creative-interface {
        display: none; /* Hide complex interface on very small screens to focus on content */
    }
}