/* Footer Styles - Arc Runner */

.footer-container {
    background-color: transparent;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: grab;
    user-select: none;
    /* Градиент маска для плавного fade эффекта по краям */
    -webkit-mask-image: linear-gradient(to right,
        transparent 0%,
        black 25%,
        black 75%,
        transparent 100%);
    mask-image: linear-gradient(to right,
        transparent 0%,
        black 25%,
        black 75%,
        transparent 100%);
}

.footer-container:active {
    cursor: grabbing;
}

#footer-arc-svg {
    width: 100%;
    height: 400px;
    display: block;
    margin: 0;
    padding: 0;
}

.footer-title {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin: 20px 0 40px;
    color: var(--text-color);
}

@media (max-width: 768px) {
    #footer-arc-svg {
        height: 300px;
    }

    .footer-title {
        font-size: 2rem;
        margin: 15px 0 30px;
    }
}