/* Manga Footer Styles - "Speed & Impact" Design */
:root {
    --manga-black: var(--ink-black, #1a1a1a);
    --manga-white: #ffffff;
    --pop-yellow: var(--action-yellow, #ffe600);
    --pop-cyan: var(--action-cyan, #00f7ff);
    --pop-pink: var(--action-red, #ff0055);
}

.manga-footer {
    position: relative;
    background: var(--manga-black);
    color: var(--manga-white);
    margin-top: 150px;
    padding-top: 100px;
    padding-bottom: 50px;
    overflow: hidden;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
}

/* Background Speed Lines Effect */
.manga-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 40px,
            rgba(255, 255, 255, 0.03) 40px,
            rgba(255, 255, 255, 0.03) 42px
        );
    pointer-events: none;
    z-index: 0;
}

/* Big stylized Japanese text in background */
.manga-footer::after {
    content: 'オタク'; /* "Otaku" */
    position: absolute;
    bottom: -20px;
    right: 5%;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 0;
    font-family: sans-serif;
}

.manga-footer-container {
    position: relative;
    z-index: 2;
}

.footer-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    align-items: flex-start;
}

/* Brand Section - Big & Bold */
.footer-brand-section {
    flex: 2;
    min-width: 300px;
}

.footer-logo-text {
    font-family: var(--font-display, 'Impact', sans-serif);
    font-size: 4rem;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--pop-yellow);
    text-shadow: 
        4px 4px 0 var(--pop-pink),
        8px 8px 0 var(--manga-white);
    transform: rotate(-2deg);
    display: inline-block;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 1.1rem;
    max-width: 400px;
    border-left: 4px solid var(--pop-cyan);
    padding-left: 15px;
    margin-bottom: 30px;
}

/* Social Icons - "Power Orbs" */
.footer-social-hub {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-orb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--manga-white);
    color: var(--manga-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    border: 3px solid var(--manga-black);
    box-shadow: 5px 5px 0 var(--manga-black);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.social-orb:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 8px 8px 0 var(--pop-cyan);
    background: var(--pop-yellow);
    color: var(--manga-black);
}

.social-orb i {
    z-index: 2;
}

/* Links Section - "Speech Bubbles" style lists */
.footer-links-section {
    flex: 1;
    min-width: 200px;
}

.footer-section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--pop-cyan);
    text-transform: uppercase;
    margin-bottom: 20px;
    background: var(--manga-black);
    display: inline-block;
    padding: 5px 15px;
    border: 2px solid var(--manga-white);
    box-shadow: 4px 4px 0 var(--pop-pink);
    transform: skew(-5deg);
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-link-item {
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s;
    position: relative;
}

.footer-link-item::before {
    content: '►';
    color: var(--pop-pink);
    margin-right: 8px;
    font-size: 0.8rem;
    transition: margin-right 0.2s;
}

.footer-link-item:hover {
    color: var(--pop-yellow);
    text-shadow: 0 0 5px var(--pop-yellow);
}

.footer-link-item:hover::before {
    margin-right: 12px;
}

/* Underlay Japanese quirk behind each link */
.footer-link-item {
    position: relative;
    z-index: 1;
}

.footer-links-list li {
    position: relative;
}

.footer-links-list li::before {
    content: attr(data-quirk);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) skew(-6deg);
    font-weight: 900;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.08);
    letter-spacing: 2px;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}

/* Bottom Bar */
.footer-bottom-bar {
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    font-size: 0.9rem;
    color: #888;
}

.manga-signature {
    font-family: 'Courier New', monospace;
    color: var(--pop-cyan);
    font-weight: bold;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .manga-footer {
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
        padding-top: 80px;
        margin-top: 80px;
    }
    
    .footer-content-wrapper {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .footer-brand-section {
        flex: none;
        width: 100%;
    }

    .footer-tagline {
        margin: 0 auto 30px;
        border-left: none;
        border-top: 4px solid var(--pop-cyan);
        padding-left: 0;
        padding-top: 15px;
    }

    .footer-social-hub {
        justify-content: center;
    }
    
    .footer-logo-text {
        font-size: 2.5rem;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }

    .manga-footer::after {
        font-size: 8rem;
    }
}
