/* Fix mobile width alignment */
*, *::before, *::after {
    box-sizing: border-box;
}

/* ==========================================================================
   Vagocat Footer Styles (Premium Specification)
   ========================================================================== */

/* --- 1. News Ticker (Upgraded Size) --- */
.Vagocat-news-ticker {
    height: 70px; 
    background-color: #9D00FF;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 20px; 
    font-weight: 600;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

.Vagocat-ticker-track {
    display: flex;
    width: max-content;
    animation: scroll-ticker 35s linear infinite;
}

.Vagocat-news-ticker:hover .Vagocat-ticker-track {
    animation-play-state: paused;
}

.Vagocat-ticker-content {
    display: flex;
    align-items: center;
    padding-right: 48px;
}

.Vagocat-ticker-dot {
    margin: 0 24px;
    opacity: 0.6;
}

@keyframes scroll-ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* --- 2. Main Footer (Light Silver) --- */
.Vagocat-main-footer {
    background-color: #F3F2EF; 
    padding-top: 20px;
}

/* Expanded to 5 columns */
.Vagocat-footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    padding-bottom: 40px; 
}

.footer-column h4 {
    color: #1B1B1B;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
    text-transform: none; 
}

.footer-column a {
    color: #2D2D2D;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px; 
    transition: color 0.15s ease, transform 0.15s ease;
}

.footer-column a:hover {
    color: #9D00FF;
    transform: translateX(4px);
}

/* --- Legal Row (Line & Dots Removed) --- */
.Vagocat-legal-row {
    border-top: none;
    padding: 20px 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 20px 24px;
    line-height: 1.8;
}

.Vagocat-legal-row a {
    color: #333333;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.15s ease;
}

.Vagocat-legal-row a:hover {
    color: #9D00FF;
}

/* --- 3. Dark Brand Section --- */
.Vagocat-dark-footer {
    background-color: #1A1A1A;
    padding: 40px 0;
}

.Vagocat-brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 32px;
}

.footer-logo {
    display: inline-block;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0;
    padding: 0;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-left: auto;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15); 
    color: #ffffff;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    background-color: #9D00FF;
    border-color: #9D00FF;
    color: #ffffff;
}

.footer-copyright {
    text-align: center;
    color: #B5B5B5;
    font-family: var(--font-body);
    font-size: 15px;
}

/* ==========================================================================
   Responsive Behavior Map
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .Vagocat-footer-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 48px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .Vagocat-news-ticker {
        font-size: 17px; 
    }

    .Vagocat-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column a:hover {
        transform: none;
        color: #9D00FF;
    }
    
    .Vagocat-legal-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .Vagocat-brand-row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .footer-socials {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin-left: 0;
    }
}