.dranima-footer {
    padding: 60px 20px;
    color: #000;
}

.footer-disclaimer {
    padding: 30px 20px;
    color: #fff;
}

.footer-disclaimer p {
    text-align: center;
    font-size: 11px;
    opacity: 0.8;
    margin: 0;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin: 100px 0;
    filter: drop-shadow(var(--shadow));
}

.footer-logo img {
    max-height: clamp(140px, 20vw, 200px);
    width: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(20px, 4vw, 40px);
    margin-bottom: 40px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.info-group {
    display: flex;
    border-bottom: 1px solid #0002;
    padding: 8px 0;
    gap: 12px;
}

.info-group dt {
    width: min(160px, 35vw);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 11px;
}

.info-group dd {
    margin: 0;
    flex: 1;
}

.footer-brand-zone {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: clamp(44px, 12vw, 64px);
    height: clamp(44px, 12vw, 64px);
    display: grid;
    place-items: center;
    border-radius: var(--radius-small);
    box-shadow: var(--shadow), var(--inset-shadow);
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    text-decoration: none;
}

.social-link:hover {
    filter: brightness(0.9);
}

.social--twitter {
    background: #000000;
}

.social--instagram {
    background: #E1306C;
}

.social--youtube {
    background: #FF0000;
}

.social--discord {
    background: #5865F2;
}

.social--bluesky {
    background: #006AFF;
}

.social-link i {
    color: #fff;
}

/* Legal & Copyright */
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-legal a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

.footer-legal a:hover {
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    font-size: 11px;
    opacity: 0.8;
}