
.dublu-footer {
    background: #111;
    color: #fff;
    padding: 60px 8% 30px 8%;

}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffcc00;
}

.footer-brand p {
    color: #aaa;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links,
.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #ffcc00;
}

.discord-btn {
    display: inline-block;
    background: #5865F2;
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s ease;
}

.discord-btn:hover {
    background: #4752c4;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #777;
}

@media (max-width: 900px) {

    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand,
    .footer-links,
    .footer-social {
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

}