/* Hero Styles Override */

/* Marquee Text - User requested color */
/* Marquee Text - User requested color */
.hero-section .marquee-text {
    color: hwb(6 4% 8%);
    opacity: 0.1;
    /* Reduced from 1 to 0.1 */
    filter: blur(2px) contrast(1.2);
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.hero-section .marquee-container {
    opacity: 0.1;
    /* Reduced from 1 to 0.1 */
}

/* Hero Content Positioning
   - Moves the text to the left side bottom corner as requested.
*/
.hero-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: auto;
    top: auto;
    width: auto;
    max-width: 800px;
    text-align: left;
    z-index: 20;
    transform: none;
    /* Reset any centering transforms if present */
}

/* H1 Typography Updates
   - Font: Bitcount Single (or alternatives)
   - Size: Resized for corner placement
   - Preserves existing animations from styles.css (textFlowRed)
*/
.hero-content h1 {
    font-family: 'Bitcount Single', 'DotGothic16', 'Press Start 2P', 'VT323', monospace;
    font-size: clamp(20px, 3vw, 40px);
    /* Resized to be more "technical" and fit the corner */
    line-height: 1.4;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    text-transform: none;
    /* Keep original casing or specific requirement? User string was mixed case. */
}

/* Mobile Responsiveness */
/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-content {
        left: 30px;
        bottom: 60px;
        max-width: 80%;
    }

    .hero-content h1 {
        font-size: clamp(24px, 4vw, 32px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-position: 70% center;
        /* Shift image left to make room or center it */
    }

    .hero-content {
        left: 20px;
        right: 20px;
        bottom: 100px;
        /* Make space for footer info */
        max-width: 100%;
        text-align: center;
        /* Center text on mobile */
        /* Add a backdrop for readability since it overlaps image */
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(8px);
        padding: 20px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-content h1 {
        font-size: 20px;
        line-height: 1.5;
    }

    /* Adjust Marquee for mobile */
    .hero-section .marquee-text {
        font-size: 15vh;
        /* Vertical based size for better fit */
        opacity: 0.05;
    }
}

@media (max-width: 480px) {
    .hero-content {
        bottom: 120px;
        padding: 16px;
    }

    .hero-content h1 {
        font-size: 18px;
    }
}