.page-footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-top: 1px solid #333;
    margin-top: 4rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: calc(100% - 6rem);
    margin: 0 auto;
    padding: 3rem 0 2rem;
    gap: 3rem;
}

.footer-brand-section {
    flex: 1;
    max-width: 300px;
}

.footer-description {
    margin: 1rem 0 0;
    color: #bbb;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.8;
}

.footer-links-section {
    display: flex;
    flex: 2;
    gap: 2rem;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 1rem;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin: 0 0 0.5rem;
}

.footer-column a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #6b5ff6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 1.5rem 0;
}

.footer-bottom .footer-content {
    width: calc(100% - 6rem);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.footer-tagline {
    display: block;
    font-size: 12px;
    color: #6b5ff6;
    opacity: 0.8;
    margin-top: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links-section {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-bottom .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.page-footer .brand-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem
}

.page-footer .brand-logo-wrapper .brand-logo-element {
    height: 44px;
    overflow: hidden
}

.page-footer .brand-logo-wrapper .brand-logo-element img {
    height: 100%;
    object-fit: contain
}

.page-footer .main-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    border: 2px solid #494949;
    padding: .8rem 2rem;
    border-radius: 100px;
    animation: glass ease-in forwards;
    animation-timeline: scroll();
    background-color: var(--bg-clr-1)
}

.page-footer .main-footer .footer-link {
    color: #fff!important;
    font-weight: 600;
    letter-spacing: .2px;
    text-decoration: none!important;
    transition: opacity .3s linear
}

.page-footer .main-footer .footer-link.active {
    opacity: .9;
    pointer-events: none;
    transition: opacity .3s linear
}

.page-footer .wallet-interface {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}

.page-footer .connect-wallet-btn {
    display: flex;
    padding: .6rem 1.5rem;
    background-color: var(--accent-1);
    border-radius: 100px;
    font-weight: 550;
    position: relative;
    font-size: 1.1rem;
    z-index: 2;
    width: 100%;
    cursor: pointer
}

.page-footer .dropdown-menu {
    display: flex;
    width: 98%;
    position: absolute;
    justify-content: center;
    align-items: center;
    bottom: -2.3rem;
    left: 0;
    padding-top: 1.8rem!important;
    z-index: 1;
    border-radius: 0 0 15px 15px;
    background-color: #3e3e3e;
    padding: 2px;
    overflow: hidden
}

.page-footer .dropdown-menu .dropdown-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .2rem 0;
    border-radius: 20px;
    background-color: #ffffff3e;
    opacity: .8;
    border: none;
    cursor: pointer
}

.page-footer .dropdown-menu .dropdown-item:hover {
    opacity: 1
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 0 10px;
    gap: 2px
}

.copyright-section {
    display: inline-flex;
    letter-spacing: .5px;
    color: #fff;
    opacity: .7
}

.legal-links {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px
}

.legal-links .legal-link {
    font-size: 13.5px;
    color: #a2a2a2;
    opacity: .8
}

.legal-links .link-separator {
    color: #a2a2a2;
    opacity: .8;
    margin: 0 8px;
}

@keyframes glass {
    to {
        box-shadow: 0 4px 4px #5b5b5b40 inset,0 -4px 4px #5b5b5b40 inset;
        background: #ffffff40;
        -webkit-backdrop-filter: blur(3.6px);
        backdrop-filter: blur(3.6px)
    }
}