/* Rocks 404 Page Styles - Clean Light Theme */
.error-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-bg, #FAFAFA) !important;
    /* Match Global Background */
    padding: 4rem 1rem;
}

.rocks-404-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.rocks-404-content {
    position: relative;
    z-index: 5;
}

.rocks-404-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 800;
    line-height: 1;
    color: #C5A059;
    /* Gold 404 */
    opacity: 1;
    /* Fully visible */
    margin-bottom: 0rem;
    position: relative;
    z-index: 1;
    display: block;
}

.rocks-404-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #111111 !important;
    /* Black Subtitle */
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.rocks-404-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #333333;
    /* Dark Grey Text */
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.rocks-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background-color: #111111 !important;
    /* Force Black Button */
    color: #ffffff !important;
    /* Force White Text */
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rocks-btn-primary:hover {
    background-color: #333333 !important;
    /* Darker Grey Hover */
    transform: translateY(-2px);
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Ensure mobile header remains sticky/fixed on 404 too if needed */
@media (max-width: 768px) {
    .rocks-404-title {
        margin-bottom: -1rem;
        font-size: 6rem;
        /* Adjust for mobile */
    }
}