.footer {
    width: 100vw;
    background: #161827;
    margin-top: 80px;
    border-top: 1px solid rgba(64, 156, 255, 0.1);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    padding: 0;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 40px 50px;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.footer-column:first-child {
    flex: 0 0 250px;
}

.footer-column:nth-child(2) {
    flex: 0 0 200px;
}

.footer-column:last-child {
    flex: 0 0 200px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    border-radius: 8px;
    border: solid #22253c 1px;
    width: 50px;
    height: 50px;
    transition: all .3s ease;
}

.footer-logo img:hover {
    transform: scale(1.08);
    /* box-shadow: #189bc7 0px 0px 10px; */
    /* border: solid #1e82a3 1px; */
}

.footer-logo-text h3 {
    color: #e6f1ff;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.footer-logo-text p {
    color: #a0b3d9;
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

.footer-description {
    color: #8896bb;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
}

.footer-menu h4 {
    color: #e6f1ff;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.footer-menu h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #409cff;
    border-radius: 1px;
}

.footer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    list-style: none;
}

.footer-menu a {
    color: #a0b3d9;
    font-size: 14px;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    padding: 3px 0;
}

.footer-menu a:hover {
    color: #189bc7;
    transform: translateX(5px);
}

.footer-menu a i {
    font-size: 14px;
    width: 16px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-menu a:hover i {
    transform: scale(1.2);
}

.footer-menu a:hover .fa-discord {
    color: #5865F2;
}

.footer-menu a:hover .fa-youtube {
    color: #ff1f1f;
}

.footer-menu a:hover .fa-telegram {
    color: #0088cc;
}

.footer-bottom {
    width: 100vw;
    background: rgba(10, 15, 30, 0.5);
    padding: 20px 0;
    border-top: 1px solid rgba(64, 156, 255, 0.05);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.copyright {
    color: #8896bb;
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #a0b3d9;
    font-size: 13px;
    transition: all .2s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: #409cff;
}

@media (max-width: 992px) {
    .footer-columns {
        flex-wrap: wrap;
        gap: 30px;
        padding: 30px;
    }
    
    .footer-column {
        flex: 0 0 calc(50% - 15px);
    }
    
    .footer-column:first-child {
        flex: 0 0 100%;
        order: -1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .footer-column {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .footer-bottom-content {
        padding: 0 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}