/* ═══════════════════════════════════════════════════════════════ */
/* SOCIAL CONTAINER — Match Roadmap Button Sizing                    */
/* ═══════════════════════════════════════════════════════════════ */

.hud-corner--bottom-right {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 100;
    width: auto;
    height: auto;
}

.social-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    height: 40px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.social-btn:hover {
    background: rgba(26, 26, 46, 0.95);
    border-color: rgba(0, 255, 163, 0.2);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.social-btn--twitter {
    color: #1DA1F2;
}

.social-btn--discord {
    color: #5865F2;
}

.social-btn--telegram {
    color: #0088cc;
}
