.elementor-204 .elementor-element.elementor-element-9b47040{--display:flex;}@media(min-width:768px){.elementor-204 .elementor-element.elementor-element-9b47040{--content-width:100%;}}/* Start custom CSS */.unified-footer {
    background: linear-gradient(180deg, transparent, #0a0a0f);
    border-top: 2px solid;
    border-image: linear-gradient(90deg, #764ba2, #00FFA3) 1;
    padding: 60px 20px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Grid background */
.unified-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 30s linear infinite;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.mode-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.mode-btn {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Audiowide', cursive;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Active button states - ADDED */
.band-mode-btn.active {
    border-color: #764ba2;
    background: rgba(118,75,162,0.1);
    color: #764ba2;
}

.tech-mode-btn.active {
    border-color: #00FFA3;
    background: rgba(0,255,163,0.1);
    color: #00FFA3;
}

.chameleon-icon {
    width: 40px;
    height: 30px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.small {width:20px;}

/* Band chameleon - ALWAYS flipped to face right */
.band-chameleon {
    transform: scaleX(-1);
    --flip: -1;
}

/* Tech chameleon - normal (facing left) */
.tech-chameleon {
    transform: scaleX(1);
    --flip: 1;
}

/* Hover - BOTH should pop out and move toward each other */
.band-mode-btn:hover .band-chameleon {
    transform: scaleX(-1) translateX(-8px) scale(1.15);
    filter: drop-shadow(0 0 5px #764ba2);
}

.tech-mode-btn:hover .tech-chameleon {
    transform: scaleX(1) translateX(-8px) scale(1.15);
    filter: drop-shadow(0 0 5px #00FFA3);
}

.mode-btn:hover {
    transform: scale(1.05);
    border-color: rgba(255,255,255,0.4);
}

.band-mode-btn:hover {
    border-color: #764ba2;
    background: rgba(118,75,162,0.2);
}

.tech-mode-btn:hover {
    border-color: #00FFA3;
    background: rgba(0,255,163,0.2);
}

/* Active states (already there but make sure they're after hover) */
.band-mode-btn.active {
    border-color: #764ba2 !important;
    background: rgba(118,75,162,0.3) !important;
    color: #764ba2 !important;
}

.tech-mode-btn.active {
    border-color: #00FFA3 !important;
    background: rgba(0,255,163,0.3) !important;
    color: #00FFA3 !important;
}

/* Dynamic Content */
.footer-dynamic {
    min-height: 100px;
    margin-bottom: 40px;
}

.footer-mode-content {
    display: none;
    animation: fadeIn 0.5s;
}

.footer-mode-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Navigation */
.footer-nav-complete {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

/* Nav section base styles - CLEANED UP */
.nav-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    transition: opacity 0.3s ease;
}

.nav-section h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Audiowide', cursive;
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Section specific colors */
.band-nav h4 {
    color: #764ba2;
}

.tech-nav h4 {
    color: #00FFA3;
}

.shared-nav h4 {
    background: linear-gradient(90deg, #764ba2, #00FFA3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Show/Hide classes for JS - IMPORTANT */
.nav-section.hide {
    display: none !important;
}

.nav-section.show {
    display: flex !important;
}

/* Default visibility */
.band-nav {
    display: flex;
}

.tech-nav {
    display: none;
}

/* Separators */
.band-nav::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
}

.tech-nav::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
}

/* Navigation links */
.nav-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.band-nav a:hover {
    color: #764ba2;
    transform: translateX(5px);
}

.tech-nav a:hover {
    color: #00FFA3;
    transform: translateX(5px);
}

.shared-nav a:hover {
    color: #FFD700;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

/* Navigation chameleons */
.nav-chameleon {
    width: 25px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.band-nav-chameleon {
    transform: scaleX(-1); /* Flip to face right */
}

.shared-left-chameleon {
    transform: scaleX(-1); /* Flip to face right toward text */
}

.shared-right-chameleon {
    transform: scaleX(1); /* Normal, facing left toward text */
}

.tech-nav-chameleon {
    transform: scaleX(1); /* Facing left */
}

/* Chameleon hover effects - FIXED */
.band-nav:hover .band-nav-chameleon {
    transform: scaleX(-1) scale(1.2); /* Keep flipped */
    filter: drop-shadow(0 0 5px #764ba2);
}

.shared-nav:hover .shared-left-chameleon {
    transform: scaleX(-1) translateX(-3px) scale(1.2); /* Keep flipped */
    filter: drop-shadow(0 0 5px #764ba2);
}

.shared-nav:hover .shared-right-chameleon {
    transform: scaleX(1) translateX(3px) scale(1.2); /* Keep normal */
    filter: drop-shadow(0 0 5px #00FFA3);
}

.tech-nav:hover .tech-nav-chameleon {
    transform: scaleX(1) scale(1.2); /* Keep normal */
    filter: drop-shadow(0 0 5px #00FFA3);
}

/* Footer bottom */
.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
}

.copyright {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

/* Tablet and Mobile Responsive - FIXED */
@media (max-width: 1024px) {
    .footer-nav-complete {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        align-items: flex-start;
        flex-wrap: wrap;
        position: relative;
    }
    
    .nav-section {
        text-align: center;
        align-items: center;
        min-width: 150px;
        flex: 1;
        max-width: 200px;
        position: relative;
    }
    
    /* Hide desktop separators */
    .band-nav::after,
    .tech-nav::before {
        display: none;
    }
    
    /* Mobile/Tablet separators - simplified approach */
    /* Always show separator on shared-nav (middle section) */
    .shared-nav::before {
        content: '';
        position: absolute;
        left: -20px;
        top: 0;
        bottom: 0;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
        display: block !important;
    }
}

/* Very small mobile screens */
@media (max-width: 480px) {
    .footer-nav-complete {
        gap: 20px;
    }
    
    .nav-section {
        min-width: 120px;
        font-size: 13px;
    }
    
    .nav-section h4 {
        font-size: 14px;
    }
    
    .nav-chameleon {
        width: 20px;
        height: 16px;
    }
    
    /* Adjust separator position for smaller gap */
    .shared-nav::before {
        left: -10px;
    }
}

/* Mode switcher stays stacked on mobile */
@media (max-width: 768px) {
    .mode-switcher {
        flex-direction: column;
        gap: 15px;
    }
    
    .mode-divider {
        display: none;
    }
    
    /* Remove hover slide on mobile */
    .band-nav a:hover,
    .tech-nav a:hover,
    .shared-nav a:hover {
        transform: none !important;
    }
}

/* Animations */
.footer-icons {
    font-size: 28px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-icons span {
    animation: bounce 2s infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

.footer-icons span:nth-child(1) { --i: 0; }
.footer-icons span:nth-child(2) { --i: 1; }
.footer-icons span:nth-child(3) { --i: 2; }
.footer-icons span:nth-child(4) { --i: 3; }
.footer-icons span:nth-child(5) { --i: 4; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.studio-credit {
    color: #FFD700;
    font-family: 'Audiowide', cursive;
    font-size: 14px;
}

.tech-tagline {
    color: #FFD700;
    font-family: 'Audiowide', cursive;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 10px rgba(255,215,0,0.5); }
    50% { text-shadow: 0 0 20px rgba(255,215,0,0.8), 0 0 30px rgba(0,255,163,0.5); }
}

.tech-motto {
    color: #00FFA3;
    font-size: 12px;
    font-style: italic;
    letter-spacing: 1px;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}/* End custom CSS */